In [ ]:
# [Author]: Jun Yao
# [Date]: 2021-12-03

# [Description] 
# this file prepares the golden labels for topic recognition for TEDLIUM3 dataset,
# it has the following functionalities
# (1) query all links of the 2351 videos from ted.com. The year of some videos 
# are not matched with the year posted, links of these videos have to be fixed manually
# (2) using the links of the videos, send http request to ted.com and get extra metadata,
# such as author, upload date, duration, title, topic labels.
# (3) the final verified golden labels file tedlium3_topic_labels.csv is published
# via Github under MIT license at https://github.com/junyaogz/topic.labels

# input of this script:
# ./stm/*

# output of this script:
# tedlium3_topic_labels.csv

# [Instructions] 
# WARNING! this file runs for more than 36 hours! 
# it needs human intervention to fix some errors since there are some errors in the year 
# of the videos and the search engine of ted.com cannot provide correct links for all videos.
# frequent requests are prohibited by ted.com, so timeout will occur, the last part of this
# code has to be executed repeatedly until all videos are processed succesfully.
In [2]:
import re
import requests
from bs4 import BeautifulSoup
import random
from pathlib import Path
import time

root_path = "/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/"
ted_talk_root = "http://www.ted.com/talks"
ted_web_root = "http://www.ted.com"

def query_video_info(file_name):
    q_sentence = ""

    # find a sentence that has at least 6 words
    # split the sentence, remove date time, <NA> and <UNK>
    with open(root_path+file_name) as file:
        videos = []
        for line in file:
            sleep_time = random.randint(1,4)
            print(f"sleep {sleep_time} seconds to avoid blocking")
            time.sleep(sleep_time)
            tmp = line.split("<NA>")[1].replace("<unk>","").replace("'","").strip()
            #print(tmp)
            q_sentence = tmp
            if len(q_sentence.split(" ")) < 6:
                continue
            
            #remove non-ascii characters
            q_sentence = q_sentence.encode("ascii", "ignore").decode()

            # join words with "+"
            url_q_sentence = "+".join(q_sentence.split(" "))
            #print("Query sentence for {0} is: {1} ".format(file_name, url_q_sentence))

            # add prefix https://www.ted.com/talks?sort=relevance&q=
            request_url = ted_talk_root+"?sort=relevance&q=" + url_q_sentence
            print(request_url)

            # send page request, get the response page
            res1 = ""
            try:
                res1 = requests.get(request_url, timeout=5)
                #print(res1.status_code)
            except:
                print("error: request timeout")
                continue

            res_1_text = ""
            res_1_text = res1.text
            #with open(rootpath + "res1.txt") as file:
            #    res_1_text = file.readlines()

            soup = BeautifulSoup(str(res_1_text))
            #print(soup.prettify())

            candidate_videos = []
            divs = soup.find_all('div', {"class","media__message"})
            for div in divs:
                #print(div.text)   
                link = div.find('a', {"class","ga-link"})
                link_url = link["href"].strip()
                year = div.find('span', {"class","meta__val"})
                tmp = re.findall('[0-9]+', year.text)
                #print(tmp[0])  
                if link_url.startswith("/talks/"):
                    candidate_videos.append([link_url,tmp[0]])

            #print(candidate_videos)

            years_to_match = re.findall('[0-9]+', file_name)
            year_to_match = 0
            if(len(years_to_match)>1):
                year_to_match = years_to_match[1]
            else:
                year_to_match = years_to_match[0]
            #print(year_to_match)
            
            videos = []
            # from the list of search results, match the author and year(maybe +10), select that item
            for v in candidate_videos:
                if abs(int(year_to_match)-int(v[1])) < 3:
                    videos.append(v)

            print(f"found {len(videos)} videos: {videos}")
            #assert len(videos)>=1, "expected matched video num is no less than 1"
            if len(videos)==1:
                break
                
    if len(videos)==0:
        return 0
    
    return videos[0]


# for each stm file, do the following steps
# read stm file

video_uris = []
count = 0
for p in Path(root_path).glob('*.stm'):
    count = count + 1
    fname = p.name
    print(f"------<{count}>----->filepath:{root_path}{fname}")
    videos = query_video_info(fname)
    if videos == 0:
        print("error: no video is found.")
        video_uris.append([fname,"not found"])
    else:
        print(f"selected: {videos[0]}")
        video_uris.append([fname,videos[0]])
    
    sleep_time = random.randint(1,5)
    print(f"sleep {sleep_time} seconds to avoid blocking")
    time.sleep(sleep_time)
------<1>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/911Mothers_2010W.stm
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+fact+that+we+have+what+most+people+consider+an+unusual+friendship++and+it+is+and+yet+it+feels+natural+to+us
found 1 videos: [['/talks/aicha_el_wafi_phyllis_rodriguez_the_mothers_who_found_forgiveness_friendship', '2011']]
selected: /talks/aicha_el_wafi_phyllis_rodriguez_the_mothers_who_found_forgiveness_friendship
sleep 5 seconds to avoid blocking
------<2>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AalaElKhani_2016X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=over+one+point+five+billion+people+experience+armed+conflict
found 3 videos: [['/talks/aala_el_khani_what_it_s_like_to_be_a_parent_in_a_war_zone', '2017'], ['/talks/laura_boushnak_the_deadly_legacy_of_cluster_bombs', '2016'], ['/talks/laurel_braitman_depressed_dogs_cats_with_ocd_what_animal_madness_means_for_us_humans', '2014']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+response+people+are+forced+to+flee+their+country+leaving+over+fifteen+million+refugees
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=children+without+a+doubt+are+the+most+innocent+and+vulnerable+victims
found 2 videos: [['/talks/aala_el_khani_what_it_s_like_to_be_a_parent_in_a_war_zone', '2017'], ['/talks/manwar_ali_inside_the_mind_of_a_former_radical_jihadist', '2016']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+not+just+from+the+obvious+physical+dangers++but+from+the+often+unspoken+effects+that+wars+have+on+their+families
found 1 videos: [['/talks/aala_el_khani_what_it_s_like_to_be_a_parent_in_a_war_zone', '2017']]
selected: /talks/aala_el_khani_what_it_s_like_to_be_a_parent_in_a_war_zone
sleep 1 seconds to avoid blocking
------<3>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AaronHuey_2010X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=m+here+today+to+show+my+photographs+of+the+lakota+many+of+you+may+have+heard+of+the+lakota+or+at+least+the+larger+group+of+tribes+called+the+sioux
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+lakota+are+one+of+many+tribes+that+were+moved+off+their
found 1 videos: [['/talks/aaron_huey_america_s_native_prisoners_of_war', '2010']]
selected: /talks/aaron_huey_america_s_native_prisoners_of_war
sleep 4 seconds to avoid blocking
------<4>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AaronKoblin_2011.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=data+can+actually+make+us+more+human
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+re+collecting+and+creating+all+kinds+of+data+about+how+we+re+living+our+lives+and+it+s+enabling+us+to+tell+some+amazing+stories++recently+a+wise+media+theorist+tweeted+the+19th+century
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=culture+was+defined+by+the+novel+the+20th+century+culture+was+defined+by+the+cinema++and+the+culture+of+the+21st+century+will+be+defined+by+the+interface
found 1 videos: [['/talks/aaron_koblin_visualizing_ourselves_with_crowd_sourced_data', '2011']]
selected: /talks/aaron_koblin_visualizing_ourselves_with_crowd_sourced_data
sleep 3 seconds to avoid blocking
------<5>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AaronOConnell_2011.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+a+representation+of+your+brain++and+your+brain+can+be+broken+into+two+parts
found 1 videos: [['/talks/aaron_o_connell_making_sense_of_a_visible_quantum_object', '2011']]
selected: /talks/aaron_o_connell_making_sense_of_a_visible_quantum_object
sleep 3 seconds to avoid blocking
------<6>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AbeDavis_2015.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=most+of+us+think+of+motion+as+a+very+visual+thing+if
found 5 videos: [['/talks/abe_davis_new_video_technology_that_reveals_an_object_s_hidden_properties', '2015'], ['/talks/ole_scheeren_why_great_architecture_should_tell_a_story', '2016'], ['/talks/nancy_kanwisher_a_neural_portrait_of_the_human_mind', '2014'], ['/talks/kitra_cahana_my_father_locked_in_his_body_but_soaring_free', '2014'], ['/talks/rodney_brooks_why_we_will_rely_on_robots', '2013']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+walk+across+this+stage+or+gesture+with+my+hands+while+i+speak+that+motion+is+something+that+you+can+see
found 1 videos: [['/talks/abe_davis_new_video_technology_that_reveals_an_object_s_hidden_properties', '2015']]
selected: /talks/abe_davis_new_video_technology_that_reveals_an_object_s_hidden_properties
sleep 5 seconds to avoid blocking
------<7>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AbhaDawesar_2013G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+in+new+york+during+hurricane+sandy++and+this+little+white+dog+called+maui+was+staying+with+me
found 1 videos: [['/talks/abha_dawesar_life_in_the_digital_now', '2013']]
selected: /talks/abha_dawesar_life_in_the_digital_now
sleep 3 seconds to avoid blocking
------<8>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AbigailMarsh_2016T.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+the+actor+idris+elba+or+at
found 2 videos: [['/talks/abigail_marsh_why_some_people_are_more_altruistic_than_others', '2016'], ['/talks/michael_rain_what_it_s_like_to_be_the_child_of_immigrants', '2018']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=least+he+did+twenty+years+ago++i+don+t+know+anything+else+about+him++except+that+he+once+saved+my+life+by+putting+his+own+life+in+danger
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+man+ran+across+four+lanes+of+freeway
found 2 videos: [['/talks/abigail_marsh_why_some_people_are_more_altruistic_than_others', '2016'], ['/talks/drew_philp_my_500_house_in_detroit_and_the_neighbors_who_helped_me_rebuild_it', '2018']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=traffic+in+the+middle+of+the+night+to+bring+me+back+to+safety
found 1 videos: [['/talks/abigail_marsh_why_some_people_are_more_altruistic_than_others', '2016']]
selected: /talks/abigail_marsh_why_some_people_are_more_altruistic_than_others
sleep 5 seconds to avoid blocking
------<9>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AbigailWashburn_2012U.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+had+caught+me+straight+out+of+college+in+the+halls+of+the+vermont+state+house+where+i+was+a+lobbyist+in+training
found 1 videos: [['/talks/abigail_washburn_building_us_china_relations_by_banjo', '2012']]
selected: /talks/abigail_washburn_building_us_china_relations_by_banjo
sleep 4 seconds to avoid blocking
------<10>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AbrahamVerghese_2011G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+few+months+ago+a+forty+year+old+woman+came+to+an+emergency+room+in+a+hospital+close+to+where+i+live
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+she+was+brought+in+confused+her+blood+pressure+was+an+alarming+two+hundred+and+thirty+over+one
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=within+a+few+minutes+she+went+into+cardiac+collapse+she+was+resuscitated++stabilized++whisked+over+to+a+cat+scan+suite+right+next+to+the+emergency+room
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+they+were+concerned+about+blood+clots+in+the+lung
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+cat+scan+revealed+no+blood+clots+in+the+lung++but+it+showed
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=bilateral++visible+palpable+breast+masses+breast+tumors
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+had+metastasized+widely+all+over+the+body
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+real+tragedy+was+if+you+look+through+her+records+she+had+been+seen+in+four+or+five+other+health+care+institutions+in+the+preceding+two+years++four+or+five+opportunities
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+see+the+breast+masses+touch+the+breast+mass++intervene+at+a+much+earlier+stage+than+when+we+saw+her
found 1 videos: [['/talks/abraham_verghese_a_doctor_s_touch', '2011']]
selected: /talks/abraham_verghese_a_doctor_s_touch
sleep 4 seconds to avoid blocking
------<11>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AchenyoIdachaba_2015W.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=vivid+representation+of+several+riverine+communities+across+nigeria++communities+whose+waterways+have+been+infested+by+an+invasive
found 1 videos: [['/talks/achenyo_idachaba_how_i_turned_a_deadly_plant_into_a_thriving_business', '2016']]
selected: /talks/achenyo_idachaba_how_i_turned_a_deadly_plant_into_a_thriving_business
sleep 3 seconds to avoid blocking
------<12>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AdamDavidson_2012S.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=friend+of+mine+who+s+a+political+scientist+he+told+me+several+months+ago+exactly+what+this+month+would+be+like+he+said+you+know+there+s+this+fiscal+cliff+coming+it+s+going+to
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+two+thousand+and+thirteen+both+parties+absolutely+need+to+resolve+it+but+neither+party+wants+to+be+seen+as+the+first+to+resolve+it++neither+party+has+any+incentive+to+solve+it+a+second+before+it+s+due+so+he+said+december+you+re+just+going+to+see+lots+of
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=angry+negotiations+negotiations+breaking+apart+reports+of+phone+calls+that+aren+t+going+well+people+saying+nothing+s+happening+at+all+and+then+sometime+around+christmas+or+new+year+s+we+re+going+to+hear
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+told+me+that+a+few+months+ago+he+said+he+s+ninety+eight+percent+positive+they+re+going+to+resolve+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+got+an+email+from+him+today+saying+all+right+we+re+basically+on+track++but+now+i+m+eighty+percent+positive+that+they+re+going+to+resolve+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+made+me+think+i+love+studying+these+moments+in+american+history+when+there+was+this+frenzy+of+of+partisan+anger+that+the+economy+was+on+the+verge+of
found 1 videos: [['/talks/adam_davidson_what_we_learned_from_teetering_on_the_fiscal_cliff', '2012']]
selected: /talks/adam_davidson_what_we_learned_from_teetering_on_the_fiscal_cliff
sleep 2 seconds to avoid blocking
------<13>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AdamdelaZerda_2016X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+re+declaring+war+against+cancer++and+we+will+win+this+war+by+two+thousand+and+fifteen
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+what+the+us+congress+and+the+national+cancer+institute+declared+just+just+a+few+years+ago+in+two+thousand+and+three
found 1 videos: [['/talks/adam_de_la_zerda_we_can_start_winning_the_war_against_cancer', '2016']]
selected: /talks/adam_de_la_zerda_we_can_start_winning_the_war_against_cancer
sleep 5 seconds to avoid blocking
------<14>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AdamDriver_2015P.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+joined+a+few+months+after+september+eleven+feeling+like+i+think+most+people+in+the+country+did+at+the+time+filled+with+a+sense+of+patriotism+and+retribution
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+desire+to+do+something+that+coupled+with+that+fact+that+i+wasn+t+doing+anything
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+seventeen+just+graduated+from+high+school+that+past+summer+living+in+the+back+room+of+my+parents++house+paying+rent
found 1 videos: [['/talks/adam_driver_my_journey_from_marine_to_actor', '2016']]
selected: /talks/adam_driver_my_journey_from_marine_to_actor
sleep 2 seconds to avoid blocking
------<15>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AdamFoss_2016.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+following+are+my+opinions+and+do+not+reflect+the+opinions+or+policies+of+any+particular+prosecutor+s+office
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+am+a+prosecutor++i+believe+in+law+and+order+i+am+the+adopted+son+of+a+police+officer+a+marine+and+a+hairdresser++i+believe
found 1 videos: [['/talks/adam_foss_a_prosecutor_s_vision_for_a_better_justice_system', '2016']]
selected: /talks/adam_foss_a_prosecutor_s_vision_for_a_better_justice_system
sleep 3 seconds to avoid blocking
------<16>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AdamGalinsky_2016X.stm
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+hard+to+do++i+understood+the+true+meaning+of+this+phrase+exactly+one+month+ago+when+my+wife+and+i+became
found 1 videos: [['/talks/adam_galinsky_how_to_speak_up_for_yourself', '2016']]
selected: /talks/adam_galinsky_how_to_speak_up_for_yourself
sleep 1 seconds to avoid blocking
------<17>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AdamGarone_2011X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+the+beautiful+malin+[+akerman+]+put+it+perfectly+every+man+deserves+the+opportunity+to+grow+a+little+bit+of+luxury
found 1 videos: [['/talks/adam_garone_healthier_men_one_moustache_at_a_time', '2012']]
selected: /talks/adam_garone_healthier_men_one_moustache_at_a_time
sleep 1 seconds to avoid blocking
------<18>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AdamGrant_2016.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=seven+years+ago+a+student+came+to+me+and+asked+me+to+invest+in+his+company+he+said
found 3 videos: [['/talks/the_ted_interview_sir_ken_robinson_still_wants_an_education_revolution', '2018'], ['/talks/adam_grant_the_surprising_habits_of_original_thinkers', '2016'], ['/talks/jim_yong_kim_doesn_t_everyone_deserve_a_chance_at_a_good_life', '2017']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+working+with+three+friends+and+we+re+going+to+try+to+disrupt+an+industry+by+selling+stuff+online
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+said+ok+you+guys+spent+the+whole
found 15 videos: [['/talks/scott_dinsmore_how_to_find_work_you_love', '2015'], ['/talks/christiane_amanpour_how_to_seek_truth_in_the_era_of_fake_news', '2017'], ['/talks/vivek_maru_how_to_put_the_power_of_law_in_people_s_hands', '2018'], ['/talks/alan_eustace_i_leapt_from_the_stratosphere_here_s_how_i_did_it', '2015'], ['/talks/lidia_yuknavitch_the_beauty_of_being_a_misfit', '2016'], ['/talks/luma_mufleh_don_t_feel_sorry_for_refugees_believe_in_them', '2017'], ['/talks/caitlin_quattromani_and_lauran_arledge_how_our_friendship_survives_our_opposing_politics', '2017'], ['/talks/adam_grant_the_surprising_habits_of_original_thinkers', '2016'], ['/talks/worklife_with_adam_grant_the_daily_show_s_secret_to_creativity', '2018'], ['/talks/travis_kalanick_uber_s_plan_to_get_more_people_into_fewer_cars', '2016'], ['/talks/ben_cort_what_commercialization_is_doing_to_cannabis', '2018'], ['/talks/gretchen_carlson_david_brooks_political_common_ground_in_a_polarized_united_states', '2017'], ['/talks/elon_musk_the_future_we_re_building_and_boring', '2017'], ['/talks/jose_andres_how_a_team_of_chefs_fed_puerto_rico_after_hurricane_maria', '2018'], ['/talks/mona_chalabi_3_ways_to_spot_a_bad_statistic', '2017']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+all+took+internships+just+in+case+it+doesn+t+work+out+all+right+but+you+re+going+to+go+in+full+time+once+you+graduate
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+exactly+we+ve+all+lined+up+backup+jobs
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=six+months+go+by++it+s+the+day+before+the+company+launches++and+there+is+still+not+a+functioning+website
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+guys+realize+the+entire+company+is+a+website+that+s+literally+all+it+is
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+obviously+declined+to+invest+and+they+ended+up+naming+the+company
found 1 videos: [['/talks/adam_grant_the_surprising_habits_of_original_thinkers', '2016']]
selected: /talks/adam_grant_the_surprising_habits_of_original_thinkers
sleep 5 seconds to avoid blocking
------<19>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AdamGrant_2016S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+you+to+look+around+the+room+for+a+minute
found 12 videos: [['/talks/worklife_with_adam_grant_the_daily_show_s_secret_to_creativity', '2018'], ['/talks/david_epstein_are_athletes_really_getting_faster_better_stronger', '2014'], ['/talks/tim_urban_inside_the_mind_of_a_master_procrastinator', '2016'], ['/talks/mel_robbins_how_to_stop_screwing_yourself_over', '2018'], ['/talks/mike_kinney_a_pro_wrestler_s_guide_to_confidence', '2017'], ['/talks/leyla_acaroglu_paper_beats_plastic_how_to_rethink_environmental_folklore', '2014'], ['/talks/james_orsulak_why_we_need_to_move_manufacturing_off_planet', '2018'], ['/talks/scott_dinsmore_how_to_find_work_you_love', '2015'], ['/talks/shonda_rhimes_and_cyndi_stivers_the_future_of_storytelling', '2017'], ['/talks/daniel_levitin_how_to_stay_calm_when_you_know_you_ll_be_stressed', '2015'], ['/talks/eduardo_briceno_how_to_get_better_at_the_things_you_care_about', '2017'], ['/talks/sheryl_sandberg_so_we_leaned_in_now_what', '2014']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+try+to+find+the+most+paranoid+person+here+and+then+i+want+you+to+point+at+that+person+for+me+ok+don
found 2 videos: [['/talks/adam_grant_are_you_a_giver_or_a_taker', '2017'], ['/talks/reed_hastings_how_netflix_changed_entertainment_and_where_it_s_headed', '2018']]
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+an+organizational+psychologist+i+spend+a+lot+of+time+in+workplaces++and+i+find+paranoia+everywhere
found 1 videos: [['/talks/adam_grant_are_you_a_giver_or_a_taker', '2017']]
selected: /talks/adam_grant_are_you_a_giver_or_a_taker
sleep 2 seconds to avoid blocking
------<20>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AdamGrosser_2007.stm
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+work+in+process++based+on+some+comments+that+were+made+at+ted+two+years+ago+about+the+need+for+the+storage
found 1 videos: [['/talks/adam_grosser_a_mobile_fridge_for_vaccines', '2008']]
selected: /talks/adam_grosser_a_mobile_fridge_for_vaccines
sleep 3 seconds to avoid blocking
------<21>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AdamOckelford_2013X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+promise+there+won+t+be+too+much+of+me+talking+and+a+lot+of+derek+playing+but+i+thought+it+would+just+be+nice+to+recap+on+how+derek+got+to+where+he+is+today
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+amazing+now+because+he+s+so+much+bigger+than
found 2 videos: [['/talks/charles_hazlewood_trusting_the_ensemble', '2011'], ['/talks/danny_hillis_back_to_the_future_of_1994', '2012']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+when+derek+was+born+he+could+have+fitted+on+the+palm+of+your+hand+he+was+born+three+and+a+half+months+premature++and
found 1 videos: [['/talks/derek_paravicini_and_adam_ockelford_in_the_key_of_genius', '2013']]
selected: /talks/derek_paravicini_and_adam_ockelford_in_the_key_of_genius
sleep 4 seconds to avoid blocking
------<22>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AdamOstrow_2011G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+the+end+of+this+year+there+ll+be+nearly+a+billion+people+on+this+planet+that+actively+use+social+networking+sites+the+one+thing+that+all+of+them+have+in+common
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+that+they+re+going+to+die
found 12 videos: [['/talks/tim_ferriss_smash_fear_learn_anything', '2009'], ['/talks/stewart_brand_the_dawn_of_de_extinction_are_you_ready', '2013'], ['/talks/chip_kidd_designing_books_is_no_laughing_matter_ok_it_is', '2012'], ['/talks/andrew_stanton_the_clues_to_a_great_story', '2012'], ['/talks/ed_ulbrich_how_benjamin_button_got_his_face', '2009'], ['/talks/emily_levine_a_theory_of_everything', '2009'], ['/talks/ellen_dunham_jones_retrofitting_suburbia', '2010'], ['/talks/natalie_jeremijenko_the_art_of_the_eco_mindshift', '2010'], ['/talks/catherine_mohr_surgery_s_past_present_and_robotic_future', '2009'], ['/talks/juan_enriquez_the_next_species_of_human', '2009'], ['/talks/jeff_smith_lessons_in_business_from_prison', '2012'], ['/talks/joy_lin_if_superpowers_were_real_super_speed', '2013']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=while+that+might+be+a+somewhat+morbid+thought+i+think+it+has+some+really+profound+implications+that+are+worth+exploring
found 1 videos: [['/talks/adam_ostrow_after_your_final_status_update', '2011']]
selected: /talks/adam_ostrow_after_your_final_status_update
sleep 1 seconds to avoid blocking
------<23>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AdamSadowsky_2010X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hi+there+i+m+going+to+be+talking+a+little+bit+about
found 2 videos: [['/talks/jason_fried_why_work_doesn_t_happen_at_work', '2010'], ['/talks/james_randi_homeopathy_quackery_and_fraud', '2010']]
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+more+specifically+what+we+learned+from+the+creation+of+a+very+large+and+complicated+machine+for+a+music+video
found 1 videos: [['/talks/adam_sadowsky_how_to_engineer_a_viral_music_video', '2010']]
selected: /talks/adam_sadowsky_how_to_engineer_a_viral_music_video
sleep 1 seconds to avoid blocking
------<24>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AdamSavage_2008P.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+four+years+ago+the+new+yorker+published+an+article+about+a+cache+of+dodo+bones+that+was+found+in+a+pit+on+the+island+of+mauritius
found 1 videos: [['/talks/adam_savage_my_obsession_with_objects_and_the_stories_they_tell', '2009']]
selected: /talks/adam_savage_my_obsession_with_objects_and_the_stories_they_tell
sleep 2 seconds to avoid blocking
------<25>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AdamSavage_2016.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+this+fact+that+i+love+that+i+read+somewhere+once+that
found 3 videos: [['/talks/adam_driver_my_journey_from_marine_to_actor', '2016'], ['/talks/elon_musk_the_future_we_re_building_and_boring', '2017'], ['/talks/gretchen_carlson_david_brooks_political_common_ground_in_a_polarized_united_states', '2017']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+the+things+that+s+contributed+to+homo+sapiens+++success+as+a+species+is+our+lack+of+body+hair+that+our+hairlessness
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=our+nakedness+combined+with+our+invention+of+clothing++gives+us+the+ability+to+modulate+our+body+temperature
found 1 videos: [['/talks/adam_savage_my_love_letter_to_cosplay', '2016']]
selected: /talks/adam_savage_my_love_letter_to_cosplay
sleep 1 seconds to avoid blocking
------<26>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AdamSpencer_2013.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=pure+mathematics+and+world+debating+championships++or+as+i+like+to+say+hello+ladies
found 1 videos: [['/talks/adam_spencer_why_i_fell_in_love_with_monster_prime_numbers', '2013']]
selected: /talks/adam_spencer_why_i_fell_in_love_with_monster_prime_numbers
sleep 4 seconds to avoid blocking
------<27>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AditiGupta_2015X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+natural+biological+process+that+every+girl+and+woman+goes+through+every+month
found 1 videos: [['/talks/aditi_gupta_a_taboo_free_way_to_talk_about_periods', '2016']]
selected: /talks/aditi_gupta_a_taboo_free_way_to_talk_about_periods
sleep 4 seconds to avoid blocking
------<28>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AditiShankardass_2009I.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+was+ten+years+old+a+cousin+of+mine+took+me+on+a+tour+of+his+medical+school+and+as+a+special+treat+he+took+me+to+the+pathology+lab
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+took+a+real+human+brain+out+of+the+jar+and+placed+it+in+my+hands++and+there+it+was
found 5 videos: [['/talks/aditi_shankardass_a_second_opinion_on_developmental_disorders', '2010'], ['/talks/simon_lewis_don_t_take_consciousness_for_granted', '2011'], ['/talks/rajesh_rao_a_rosetta_stone_for_a_lost_language', '2011'], ['/talks/paul_sereno_digging_up_dinosaurs', '2009'], ['/talks/dan_gilbert_why_we_make_bad_decisions', '2008']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=seat+of+human+consciousness+the+powerhouse+of+the+human+body++sitting+in+my+hands
found 1 videos: [['/talks/aditi_shankardass_a_second_opinion_on_developmental_disorders', '2010']]
selected: /talks/aditi_shankardass_a_second_opinion_on_developmental_disorders
sleep 5 seconds to avoid blocking
------<29>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AdoraSvitak_2010.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+start+with+a+question+when+was+the+last+time+you+were+called+childish+for+kids+like+me+being+called+childish+can+be+a+frequent+occurrence++every+time+we
found 1 videos: [['/talks/adora_svitak_what_adults_can_learn_from_kids', '2010']]
selected: /talks/adora_svitak_what_adults_can_learn_from_kids
sleep 5 seconds to avoid blocking
------<30>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AfraRaymond_2012X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+morning+i+m+speaking+on+the+question+of+corruption++and+corruption+is+defined
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=position+of+trust+for+the+benefit+of+yourself+or+in+the+case+of+our+context+your+friends
found 2 videos: [['/talks/afra_raymond_three_myths_about_corruption', '2013'], ['/talks/richard_ledgett_the_nsa_responds_to_edward_snowden_s_ted_talk', '2014']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=your+family+or+your+financiers++okay++friends+family+and+financiers
found 1 videos: [['/talks/afra_raymond_three_myths_about_corruption', '2013']]
selected: /talks/afra_raymond_three_myths_about_corruption
sleep 3 seconds to avoid blocking
------<31>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AimeeMullins_1998.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+thought+we+d+just+talk+a+little+bit++and+i+wanted+her+to+tell+all+of+you+what+makes+her+a
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+those+of+you+who+have+seen+the+picture+in+the
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=little+bio+it+might+have+given+it+away+i+m+a+double+amputee+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+born+without+fibulas+in+both+legs+i+was+amputated+at+age+one++and+i+ve+been
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=running+like+hell+ever+since+all+over+the+place+ss+well+why+don+t+you+tell+them+how+you+got+to+georgetown
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+won+a+full+academic+scholarship+out+of+high+school+they+pick+three+students+out+of+the+nation+every+year+to
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=get+involved+in+international+affairs+and+so+i+i+won+a+full+ride+to+georgetown+and+i+ve+been+there+for
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=four+years+love+it+ss+when+aimee+got+there+she+decided+that+she+s+kind+of+curious
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+always+been+involved+in+sports+i+played+softball+for+five+years+growing+up
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+skied+competitively+throughout+high+school++and+i+got+a+little+restless+in+college+because+i+wasn+t+doing+anything+for+about+a+year
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+d+never+competed+on+on+a+disabled+level+you+know++i+d+always+competed+against+other
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+d+never+even+met+another+amputee+until+i+was+seventeen++and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+heard+that+they+do+these
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+track+meets+with+all+disabled+runners+and+i+figured+oh+i+don+t+know+about+this++but+before+i+judge+it+let+me+go+see+what+it+s+all+about+so+i
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=booked+myself+a+flight+to+boston+in++ninety+five+nineteen+years+old+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=definitely+the+dark+horse+candidate+at+this+race+i+d+never+done+it+before+i+went+out
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+gravel+track+a+couple+of+weeks+before+this+meet+to+see+how+far+i+could+run+and+about+fifty+meters+was
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=enough+for+me+panting+and+heaving++and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+had+these+legs+that+were+made+of+a+wood+and+plastic+compound+attached+with+velcro+straps+big+thick+five+ply+wool+socks+on
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know++not+the+most+comfortable+things+but+all+i+d+ever
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=up+there+in+boston+against+people+wearing+legs+made+of+all+things+carbon+graphite+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know++shock+absorbers+in+them+and+all+sorts+of+things+and+they+re+all+looking+at+me+like+ok+we+know+who
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+not+going+to+win+this+race+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+mean+i+went+up+there+expecting+i+don+t+know+what+i+was+expecting+but+you+know+when+i+saw
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+man+who+was+missing+an+entire+leg+go+up+to+the+high+jump+hop+on+one+leg+to+the+high+jump+and+clear+it+at+six+feet+two+inches
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=dan+o+brien+jumped+five++eleven+in++ninety+six+in+atlanta++i+mean+if+it+just+gives+you+a+comparison+of+these+are
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=truly+accomplished+athletes+without+qualifying+that+word+athlete+and+so+i+decided+to+give+this+a+shot
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=heart+pounding+i+ran+my+first+race+and+i
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+ve+got+speed+you+ve+got+natural+speed+but+you
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=don+t+have+any+skill+or+finesse+going+down+that+track+you+were+all+over+the+place
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+all+saw+how+hard+you+were+working+and+so+i+decided+to+call+the+track+coach+at+georgetown+and+i+thank+god+i+didn+t+know+just+how
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=huge+this+man+is+in+the+track+and+field+world+he+s+coached+five
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=olympians+and+the+man+s+office+is+lined+from+floor+to+ceiling+with+all+america
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=certificates+of+all+these+these+athletes+he+s+coached+he+s
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=just+a+rather+intimidating+figure+and+i+called+him+up+and+said++listen+i
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ran+one+race+and+i+won
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+some+of+your+practices+see+what+drills+you+do+and+whatever+that+s+all+i+wanted+just+two+practices+can+i+just+sit+in+and+see+what+you
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=coached+a+disabled+athlete+so+therefore+he+had+no+preconceived+notions+of+what+i+was+or+wasn+t+capable+of+and+i+d+never+been+coached+before+so+this+was+like
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+we+go+let+s+start+on+this+trip+so
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+started+giving+me+four+days+a+week+of+his+lunch+lunch+break+his+free+time+and+i+would
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=come+up+to+the+track+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=good+enough+you+can+run+on+our+women+s+track+team+here
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=speed+i+joined+the+women+s+track+team+and+no+disabled+person+had+ever+done+that+run+at+a+collegiate
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=level+so+i+don+t+know+it+started+to+become+an+interesting+mix
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=training+in+georgetown+and+knowing+that+i+was+going+to+have+to+get+used+to+seeing+the+backs+of+all+these+women+s+shirts+you+know+i+m+running+against+the+next+flo+jo+and+they+re+all+looking+at+me+like
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hmm+what+s+you+know+what+s+going+on+here+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=putting+on+my+georgetown+uniform+and+and+going+out+there+and+knowing
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+order+to+become+better+and+i+m+already+the+best+in+the+country+you+know+you+have+to+train+with+people+who+are+inherently+better+than+you+and+i+went
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=out+there+and+made+it+to+the+big+east+which+was+sort+of+the+championship+race
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=really+really+hot+and+it+s+the+first+i+had+just+gotten+these+new+sprinting+legs+that+you+see+in+that+bio++and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+didn+t+realize+at+that+time+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=amount+of+sweating+i+would+be+doing+in+the+sock+it+actually+acted+like+a+lubricant+and+i+d+be+kind+of+pistoning+in+the+socket+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+about+eighty+five+meters+of+my+one+hundred+meters+sprint+in+all+my+glory++i
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=came+out+of+my+leg+like+i+almost+came+out+of+it++in+front+of+like+five+thousand+people+and+i+i+mean+was+just+mortified
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=two+hundred+meters+and+he+just+sat+there+like+this+my+pleas+fell+on+deaf+ears+thank+god+because+you+know
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+what+if+your+leg+falls+off+you+pick+it+up+you+put+the+damn+thing+back+on
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=she+s+all+excited+her+family+s+coming+down+it+s+a+big+deal+it+s+now+two+years+that+you+ve+been+running+am+no+a+year+ss+a+year
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+why+don+t+you+tell+them+what+happened+right+before+you
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=go+run+your+race+am+okay+well++atlanta++the+paralympics++just+for+a+little+bit+of+clarification+are+the+olympics+for+people+with+physical+disabilities+amputees
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=persons+with+cerebral+palsy+and+wheelchair+athletes+as+opposed+to+the+special+olympics+which
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=deals+with+people+with+mental+disabilities+so
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+we+are+a+week+after+the+olympics+and+down+at+atlanta+and+i+m+just+blown+away+by+the+fact+that+just+a+year+ago+i+got+out+on+a+gravel+track+and+couldn+t+run+fifty+meters
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+here+i+am+never+lost+i+set+new+records+at+the+at+the+u+s+nationals+the+olympic+trials+that+may+and+was
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sure++that+i+was+coming+home+with+the+gold+i+was+also+the
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+only+what+they+call+bilateral+bk+below+the+knee+i+was+the+only+woman+who+would+be+doing+the+long+jump
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+had+just+done+the+long+jump+and+a+guy+who+was+missing+two+legs+came+up+to+me+and+says+how+do+you+do+that+you+know+we+re+supposed+to+have+a+planar+foot+so+we+can+t+get+off+on+the+springboard+i+said+well
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+just+did+it+no+one+told+me+that+so+it+s+funny+i+m+three+inches+within+the+world+record
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+kept+on+from+that+point+you+know+so+i+m+signed+up+in+the+long+jump+signed+up+no+i+made+it+for+the+long+jump+and
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+m+sure+of+it+you+know+i+made+the+front+page+of+my+hometown+paper+that+i+delivered+for+six+years+you+know+it+was+like+this+is+my+time+for+shine
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+is+a+few+blocks+away+from+the+olympic+stadium+these+legs+that+i+was+on+which+i+ll+take+out+right+now
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+the+first+person+in+the+world+on+these+legs+i+was+the+guinea+pig+i+m+telling+you
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+was+like+talk+about+a+tourist+attraction+everyone+was+taking+pictures++what+is+this+girl+running+on
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+m+always+looking+around+like
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=where+is+my+competition+it+s+my+first+international
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+to+get+back+to+you+on+that+one+i+wanted+to+find+out+times+don+t+worry+you+re+doing+great
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+twenty+minutes+before+my+race+in+the+olympic+stadium++and+they+post+the+heat+sheets++and+i+go+over+and+look+and+my+fastest+time+which+was+the+world+record+was+fifteen+point+seven+seven+then+i
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=lane+two+is+twelve+point+eight+lane+three+is+twelve+point+five+lane+four+is+twelve+point+two+i+said
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+s+going+on+and+they+shove+us+all+into+the+shuttle+bus
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+all+the+women+there+are+missing+a+hand+so+i+m+just
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+they+re+all+looking+at
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+scholarship+or+you+know+i+d+won
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=five+golds+when+i+skied+in+everything+i+came+in+first+and+georgetown+that+was+great++i+was
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+the+best+training+because+this+was+atlanta+here+we+are+like+crme+de+la+crme+and+there+is+no+doubt+about+it+that+i+m+going+to+lose+big+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know+i+m+just+thinking+oh+my+god+my+whole+family+got
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+a+van+and+drove+down+here+from+pennsylvania+and+you+know+i+was+the+only+female+u+s+sprinter
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+blocks+in+and+just+feeling+horrified+because+there+was+just+this+murmur+coming+over+the+crowd+like+the+ones+who+are+close+enough+to+to+the+starting+line+to+see+and+i+m+like
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sensation+of+me+versus+germany+and+everyone+else+estonia+and+poland+was+in+this
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+heat+and+the+gun+went+off+and+all+i+remember+was
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fighting+back+tears+of+frustration+and+and+incredible+incredible+this+this+feeling+of+just+being+overwhelmed++and+i+had
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+if+i+had+won+everything+but+it+was+like++what+was+the+point+all+this+training+i+had+transformed+my+life
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+became+a+collegiate+athlete+you+know+i+became+an+olympic+athlete+and+it+made+me+really+think+about+how
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+achievement+was+getting+there+i+mean+the+fact+that+i+set+my+sights+just+a+year+and+three+months+before+on+becoming+an+olympic+athlete
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+saying+here+s+my+life+going+in+this+direction+and+i+want+to+take+it+here+for+a+while
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+just+seeing+how+far+i+could+push+it+and+the+fact+that+i+asked+for+help+how+many+people+jumped+on+board+how+many+people+gave+of+their+time+and+their+expertise
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+their+patience+to+deal+with+me+and+that+was+this+collective
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fifty+people+behind+me+that+had+joined+in+this+incredible+experience+of+going+to+atlanta+so+i
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=apply+this+sort+of+philosophy+now+to+everything+i+do
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sitting+back+and+realizing+the+progression+how+far+you+ve+come+at+this+day+to+to+this+goal+you+know
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+important+to+focus+on+a+goal+i+think+but
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=also+recognize+the+progression+on+the+way+there+and+how+how+you+ve+grown+as+a+person+that+s+the
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hair+follicles+on+them+and+i+can+paint+my+toenails+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=seriously+like+i+can+wear+heels++like+you+guys+don+t+understand+what+that+s+like+to+be+able+to+just+go+into+a+shoe+store+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=buy+whatever+you+want+ss+you+got+to+pick+your+height+am+i+got+to+pick+my+height+exactly+laughter
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=patrick+ewing+who+played+for+georgetown+in+the++80s+comes+back+every+summer+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+had+incessant+fun+making+fun+of+him+in+the+training+room+because+he+d+come+in+with+foot+injuries
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+are+my+sprinting+legs+made+of+carbon+graphite+like+i+said
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=silicon+sheath+i+roll+over+to+keep+it+on+which+when+i+sweat+you+know++i+m+pistoning+out+of+it
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=little+bit+of+an+art+in+them+but+without+having+the+silicon+sock+i+m+just+going+to+try+slip+in+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+i+run+on+these++and+have+shocked+half+the+world
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+actual+form+of+a+sprinter+when+they+run+if+you+ever+watch+a+sprinter+the
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ball+of+their+foot+is+the+only+thing+that+ever+hits+the+track+so+when+i+stand+in+these+legs++my+hamstring+and+my+glutes+are+contracted+as+they+would+be
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=had+i+had+feet+and+were+standing+on+the+ball+of+my
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+a+company+in+san+diego+called+flex+foot+and+i+was+a+guinea+pig+as+i+hope+to+continue+to+be+in
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=every+new+form+of+prosthetic+limbs+that+come+out+but+actually+these+like+i+said+are+still+the+actual+prototype++i+need+to+get+some+new+ones+because
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+i+got+in+a+place+called+bournemouth+england+about+two+hours+south+of+london++and+i+m+the+only+person+in+the+united
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=serious+athlete+on+the+track+i+want+to+be+feminine+off+the+track+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+it+s+so+important+not+to+be+limited+in+any+capacity+whether+it+s+you+know++your+mobility+or
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=even+fashion+i+mean+i+love+the+fact+that+i+can+go+in+anywhere+and+pick+out+what+i+want+the+shoes+i+want+the+skirts+i+want+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+hoping+to+try+to+bring
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+bring+these+over+here+and+make+them+accessible+to+a+lot+of+people
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+re+also+silicon+this+is+a+really+basic+basic+prosthetic+limb+under+here++it+s+like+a+barbie+foot
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+it+s+just+stuck+in+this+position
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=good+you+can+see+it+but+like+it+really+is+there+re+veins
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+the+feet+and+then+my+heel+is+pink+and+my+achilles++tendon+that+moves+a+little+bit++and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+really+an+amazing+store+i+got+them+a+year+and+two+weeks+ago+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+just+a+silicon+piece+of+skin+i+mean++what+happened+was+two+years+ago+this+man+in+belgium+was+saying
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+i+can+go+to+madame+tussauds++wax+museum+and+see
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=jerry+hall+replicated+down+to+the+color+of+her+eyes+looking+so+real+as+if
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=she+breathed++why+can+t+they+build+a+limb+for+someone+that+looks+like+a+leg
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+an+arm+or+a+hand+i+mean+they+make+ears+for+burn+victims+they+do+amazing+stuff+with+silicon+ss
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=two+weeks+ago++aimee+was+up+for+the+arthur+ashe+award+at+the+espys++and+she+came+into+town
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+she+rushed+around+and+she+said+i+have+to+buy+some+new+shoes+we+re+an+hour+before+the+espys++and+she+she+thought+she+d+gotten+a++two+inch+heel+but+she+d+actually+bought+a
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+need+a+little+bit+off
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=actually+going+back+in+a+couple+of+weeks+to
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=get+some+improvements+i+want+to+get+legs+like+these+made+for+flat+feet+so+i+can+wear+sneakers+because+i+can+t+with+these+ones+so
found 0 videos: []
error: no video is found.
sleep 1 seconds to avoid blocking
------<32>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AimeeMullins_2009U.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+speaking+to+a+group+of+about+three+hundred+kids
found 13 videos: [['/talks/conrad_wolfram_teaching_kids_real_math_with_computers', '2010'], ['/talks/dave_eggers_my_wish_once_upon_a_school', '2008'], ['/talks/richard_branson_life_at_30_000_feet', '2007'], ['/talks/sheryl_wudunn_our_century_s_greatest_injustice', '2010'], ['/talks/chris_anderson_how_web_video_powers_global_innovation', '2010'], ['/talks/cameron_herold_let_s_raise_kids_to_be_entrepreneurs', '2010'], ['/talks/gabe_zichermann_how_games_make_kids_smarter', '2011'], ['/talks/hector_ruiz_the_thinking_behind_50x15', '2008'], ['/talks/jeff_skoll_my_journey_into_movies_that_matter', '2007'], ['/talks/eric_giler_a_demo_of_wireless_electricity', '2009'], ['/talks/brenda_laurel_why_not_make_video_games_for_girls', '2009'], ['/talks/bruce_aylward_how_we_ll_stop_polio_for_good', '2011'], ['/talks/edward_tenner_unintended_consequences', '2011']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ages+six+to+eight+at+a+children+s+museum++and+i+brought+with+me+a+bag+full+of+legs+similar+to+the+kinds+of+things+you+see+up+here+and+had+them+laid+out+on+a+table
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+what+they+don+t+know+or+don+t+understand+or+is+foreign+to+them
found 2 videos: [['/talks/craig_venter_on_the_verge_of_creating_synthetic_life', '2008'], ['/talks/laurie_garrett_lessons_from_the_1918_flu', '2009']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+only+learn+to+be+frightened+of+those+differences+when+an+adult+influences+them+to+behave+that+way++and+maybe+censors+that+natural+curiosity+or+you+know+reins+in
found 1 videos: [['/talks/aimee_mullins_my_12_pairs_of_legs', '2009']]
selected: /talks/aimee_mullins_my_12_pairs_of_legs
sleep 2 seconds to avoid blocking
------<33>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AjitNarayanan_2013.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+make+technologies+to+help+them+communicate
found 12 videos: [['/talks/ajit_narayanan_a_word_game_to_communicate_in_any_language', '2014'], ['/talks/rana_el_kaliouby_this_app_knows_how_you_feel_from_the_look_on_your_face', '2015'], ['/talks/ernesto_sirolli_want_to_help_someone_shut_up_and_listen', '2012'], ['/talks/marco_annunziata_welcome_to_the_age_of_the_industrial_internet', '2013'], ['/talks/diana_reiss_peter_gabriel_neil_gershenfeld_and_vint_cerf_the_interspecies_internet_an_idea_in_progress', '2013'], ['/talks/maajid_nawaz_a_global_culture_to_fight_extremism', '2011'], ['/talks/leslie_dodson_don_t_misrepresent_africa', '2011'], ['/talks/fei_fei_li_how_we_re_teaching_computers_to_understand_pictures', '2015'], ['/talks/rodrigo_bijou_governments_don_t_understand_cyber_warfare_we_need_hackers', '2015'], ['/talks/cynthia_breazeal_the_rise_of_personal_robots', '2011'], ['/talks/atul_gawande_how_do_we_heal_medicine', '2012'], ['/talks/wendy_chung_autism_what_we_know_and_what_we_don_t_know_yet', '2014']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+many+of+the+problems+that+children+with+autism+face++they+have+a+common+source+and
found 1 videos: [['/talks/ajit_narayanan_a_word_game_to_communicate_in_any_language', '2014']]
selected: /talks/ajit_narayanan_a_word_game_to_communicate_in_any_language
sleep 3 seconds to avoid blocking
------<34>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AJJacobs_2007P.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+thought+i+d+tell+you+a+little+about
found 5 videos: [['/talks/geoff_mulgan_post_crash_investing_in_a_better_world', '2009'], ['/talks/samantha_power_a_complicated_hero_in_the_war_on_dictatorship', '2008'], ['/talks/steven_levitt_the_freakonomics_of_crack_dealing', '2006'], ['/talks/caleb_chung_playtime_with_pleo_your_robotic_dinosaur_friend', '2008'], ['/talks/mike_rowe_learning_from_dirty_jobs', '2009']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+i+like+to+write++and
found 1 videos: [['/talks/william_mcdonough_cradle_to_cradle_design', '2007']]
selected: /talks/william_mcdonough_cradle_to_cradle_design
sleep 1 seconds to avoid blocking
------<35>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AJJacobs_2011P.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=last+decade+subjecting+myself+to+pain+and+humiliation++hopefully+for+a+good+cause+which+is
found 1 videos: [['/talks/a_j_jacobs_how_healthy_living_nearly_killed_me', '2012']]
selected: /talks/a_j_jacobs_how_healthy_living_nearly_killed_me
sleep 5 seconds to avoid blocking
------<36>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AJJacobs_2014A.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=six+months+ago++i+got+an+email+from+a+man+in+israel+who+had+read+one+of+my+books
found 2 videos: [['/talks/a_j_jacobs_the_world_s_largest_family_reunion_we_re_all_invited', '2014'], ['/talks/keith_nolan_deaf_in_the_military', '2012']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+email+said+you+don+t+know+me++but+i+m+your+12th+cousin
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+said+i+have+a+family+tree+with+eighty+thousand+people+on+it+including+you
found 6 videos: [['/talks/a_j_jacobs_the_world_s_largest_family_reunion_we_re_all_invited', '2014'], ['/talks/matthieu_ricard_how_to_let_altruism_be_your_guide', '2015'], ['/talks/lisa_kristine_photos_that_bear_witness_to_modern_slavery', '2012'], ['/talks/tania_simoncelli_should_you_be_able_to_patent_a_human_gene', '2016'], ['/talks/karima_bennoune_when_people_of_muslim_heritage_challenge_fundamentalism', '2014'], ['/talks/daphne_koller_what_we_re_learning_from_online_education', '2012']]
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+i+did+not+know+what+to+make+of+this+part+of+me+was+like+okay+when+s+he+going+to+ask+me+to+wire+ten+thousand+dollars+to+his+nigerian+bank+right
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+also+thought+eighty+thousand+relatives+do+i+want+that+i+have+enough+trouble+with
found 1 videos: [['/talks/a_j_jacobs_the_world_s_largest_family_reunion_we_re_all_invited', '2014']]
selected: /talks/a_j_jacobs_the_world_s_largest_family_reunion_we_re_all_invited
sleep 4 seconds to avoid blocking
------<37>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AlaaMurabit_2015W.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+my+way+here++the+passenger+next+to+me+and+i+had+a+very+interesting+conversation
found 1 videos: [['/talks/alaa_murabit_what_my_religion_really_says_about_women', '2015']]
selected: /talks/alaa_murabit_what_my_religion_really_says_about_women
sleep 3 seconds to avoid blocking
------<38>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AlaindeBotton_2009G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sunday+evening+just+as+the+sun+is+starting+to+set+and+the+gap+between+my+hopes+for+myself+and+the+reality+of+my+life+starts+to+diverge+so+painfully+that+i+normally+end+up
found 1 videos: [['/talks/alain_de_botton_a_kinder_gentler_philosophy_of_success', '2009']]
selected: /talks/alain_de_botton_a_kinder_gentler_philosophy_of_success
sleep 2 seconds to avoid blocking
------<39>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AlaindeBotton_2011G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=common+ways+of+dividing+the+world+is+into+those+who+believe+and+those+who+don
found 1 videos: [['/talks/alain_de_botton_atheism_2_0', '2012']]
selected: /talks/alain_de_botton_atheism_2_0
sleep 4 seconds to avoid blocking
------<40>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AlanEustace_2015.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+grew+up+in+orlando+florida++i+was+the+son+of+an+aerospace+engineer
found 1 videos: [['/talks/alan_eustace_i_leapt_from_the_stratosphere_here_s_how_i_did_it', '2015']]
selected: /talks/alan_eustace_i_leapt_from_the_stratosphere_here_s_how_i_did_it
sleep 2 seconds to avoid blocking
------<41>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AlanKay_2007.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=way+to+start+i+think+with+my+view+of+simplicity+is+to
found 5 videos: [['/talks/david_pogue_simplicity_sells', '2006'], ['/talks/alan_kay_a_powerful_idea_about_ideas', '2008'], ['/talks/richard_dawkins_militant_atheism', '2007'], ['/talks/arthur_ganson_moving_sculpture', '2008'], ['/talks/reed_kroloff_a_tour_of_modern_architecture', '2008']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=take+a+look+at+ted+here+you+are+understanding+why+we+re+here+what+s+going+on
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+no+difficulty+at+all+the+best+a+i+in+the+planet+would+find+it
found 11 videos: [['/talks/alan_kay_a_powerful_idea_about_ideas', '2008'], ['/talks/peter_diamandis_our_next_giant_leap', '2008'], ['/talks/garik_israelian_how_spectroscopy_could_reveal_alien_life', '2009'], ['/talks/sasa_vucinic_why_we_should_invest_in_a_free_press', '2006'], ['/talks/bernie_dunlap_the_life_long_learner', '2008'], ['/talks/robert_ballard_the_astonishing_hidden_world_of_the_deep_ocean', '2008'], ['/talks/ben_saunders_why_did_i_ski_to_the_north_pole', '2006'], ['/talks/stephen_hawking_questioning_the_universe', '2008'], ['/talks/dan_barber_a_foie_gras_parable', '2008'], ['/talks/paul_maccready_a_flight_on_solar_wings', '2007'], ['/talks/freeman_dyson_let_s_look_for_life_in_the_outer_solar_system', '2008']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=complex+and+confusing++and+my+little+dog+watson
found 1 videos: [['/talks/alan_kay_a_powerful_idea_about_ideas', '2008']]
selected: /talks/alan_kay_a_powerful_idea_about_ideas
sleep 3 seconds to avoid blocking
------<42>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AlannaShaikh_2012G.stm
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+dad+has+alzheimer+s+disease
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+started+showing+the+symptoms+about+twelve+years+ago++and+he+was+officially+diagnosed+in+two+thousand+and+five
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+he+s+really+pretty+sick+he+needs+help+eating+he+needs+help+getting+dressed
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=dressed+he+doesn+t+really+know+where+he+is+or+when+it+is
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+s+been+really+really+hard
found 14 videos: [['/talks/jason_pontin_can_technology_solve_our_big_problems', '2013'], ['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013'], ['/talks/roger_stein_a_bold_new_way_to_fund_drug_research', '2014'], ['/talks/gregoire_courtine_the_paralyzed_rat_that_walked', '2013'], ['/talks/elon_musk_the_mind_behind_tesla_spacex_solarcity', '2013'], ['/talks/matthew_carter_my_life_in_typefaces', '2014'], ['/talks/noel_bairey_merz_the_single_biggest_health_threat_women_face', '2012'], ['/talks/freeman_hrabowski_4_pillars_of_college_success_in_science', '2013'], ['/talks/sandra_fisher_martins_the_right_to_understand', '2011'], ['/talks/morgan_spurlock_the_greatest_ted_talk_ever_sold', '2011'], ['/talks/seth_shostak_et_is_probably_out_there_get_ready', '2012'], ['/talks/david_agus_a_new_strategy_in_the_war_on_cancer', '2010'], ['/talks/simon_lewis_don_t_take_consciousness_for_granted', '2011'], ['/talks/regina_dugan_from_mach_20_glider_to_hummingbird_drone', '2012']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+dad+was+my+hero+and+my+mentor+for+most+of+my+life++and+i+ve+spent+the+last+decade+watching+him+disappear
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+dad+s+not+alone+there+s+about
found 16 videos: [['/talks/bruce_feiler_the_council_of_dads', '2011'], ['/talks/christian_rudder_inside_okcupid_the_math_of_online_dating', '2013'], ['/talks/lauren_zalaznick_the_conscience_of_television', '2011'], ['/talks/james_hansen_why_i_must_speak_out_about_climate_change', '2012'], ['/talks/larry_smith_why_you_will_fail_to_have_a_great_career', '2012'], ['/talks/jason_pontin_can_technology_solve_our_big_problems', '2013'], ['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013'], ['/talks/charles_hazlewood_trusting_the_ensemble', '2011'], ['/talks/peter_diamandis_abundance_is_our_future', '2012'], ['/talks/regina_dugan_from_mach_20_glider_to_hummingbird_drone', '2012'], ['/talks/danny_hillis_back_to_the_future_of_1994', '2012'], ['/talks/majora_carter_3_stories_of_local_eco_entrepreneurship', '2010'], ['/talks/rodney_brooks_why_we_will_rely_on_robots', '2013'], ['/talks/seth_shostak_et_is_probably_out_there_get_ready', '2012'], ['/talks/harsha_bhogle_the_rise_of_cricket_the_rise_of_india', '2010'], ['/talks/david_birch_a_new_way_to_stop_identity_theft', '2012']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thirty+five+million+people+globally+living+with+some+kind+of+dementia++and+by+two+thousand+and+thirty+they+re+expecting+that+to+double
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+seventy+million+that+s+a+lot+of+people
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=dementia+scares+us+the+confused+faces+and+shaky+hands+of+people+who+have+dementia++the+big+numbers+of+people+who+get+it
found 1 videos: [['/talks/alanna_shaikh_how_i_m_preparing_to_get_alzheimer_s', '2012']]
selected: /talks/alanna_shaikh_how_i_m_preparing_to_get_alzheimer_s
sleep 4 seconds to avoid blocking
------<43>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AlanRussell_2006.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+talk+to+you+today+about+hopefully+converting+fear+into+hope
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+we+go+to+the+physician+today+when+we+go+to+the+doctor+s+office+and+we+walk+in+there+are+words+that+we+just+don+t+want+to+hear
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+are+words+that+we+re+truly+afraid+of
found 1 videos: [['/talks/alan_russell_the_potential_of_regenerative_medicine', '2007']]
selected: /talks/alan_russell_the_potential_of_regenerative_medicine
sleep 3 seconds to avoid blocking
------<44>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AlanSiegel_2010.stm
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=public+officials+who+are+out+of+control++they+are+writing+bills+that+are+unintelligible++and+out+of+these+bills+are+going+to+come+maybe+forty+thousand+pages+of
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+has+a+dramatically+negative+impact+on+our+life+if+you+re+a+veteran+coming+back+from+iraq+or+vietnam
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+face+a+blizzard+of+paperwork+to+get+your+benefits+if+you+re+trying+to+get+a+small+business+loan+you+face+a+blizzard+of+paperwork+what+are+we+going+to+do+about+it
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+define+simplicity+as+a+means+to+achieving+clarity++transparency+and+empathy
found 1 videos: [['/talks/alan_siegel_let_s_simplify_legal_jargon', '2010']]
selected: /talks/alan_siegel_let_s_simplify_legal_jargon
sleep 1 seconds to avoid blocking
------<45>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AlanSmith_2016X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=two+thousand+and+three+the+uk+government+carried+out+a+survey
found 1 videos: [['/talks/mona_chalabi_3_ways_to_spot_a_bad_statistic', '2017']]
selected: /talks/mona_chalabi_3_ways_to_spot_a_bad_statistic
sleep 4 seconds to avoid blocking
------<46>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AlastairParvin_2013.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+we+usually+mean+is+a+professional
found 7 videos: [['/talks/rishi_manchanda_what_makes_us_get_sick_look_upstream', '2014'], ['/talks/alastair_parvin_architecture_for_the_people_by_the_people', '2013'], ['/talks/salvatore_iaconesi_what_happened_when_i_open_sourced_my_brain_cancer', '2015'], ['/talks/sarah_jones_what_does_the_future_hold_11_characters_offer_quirky_answers', '2014'], ['/talks/kathryn_schulz_on_being_wrong', '2011'], ['/talks/young_ha_kim_be_an_artist_right_now', '2013'], ['/talks/jeff_hancock_the_future_of_lying', '2012']]
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+tend+to+assume+that+it+s+those+professionals+who+are+going+to+be+the+ones+to+help+us+solve+the+really+big+systemic+design+challenges+that+we+face+like+climate+change
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+our+kind+of+working+presumption++and+i+think+it+s+wrong++actually
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+two+thousand+and+eight+i+was+just+about+to+graduate+from+architecture+school+after+several+years++and+go+out+and+get+a+job++and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+happened+the+economy+ran+out+of+jobs++and+a+couple+of+things+struck+me+about+this+one+don+t+listen+to+career+advisers
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+two+actually+this+is+a+fascinating+paradox+for+architecture
found 1 videos: [['/talks/alastair_parvin_architecture_for_the_people_by_the_people', '2013']]
selected: /talks/alastair_parvin_architecture_for_the_people_by_the_people
sleep 3 seconds to avoid blocking
------<47>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AlbertoCairo_2011X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+work+for+the+red+cross+and
found 17 videos: [['/talks/david_agus_a_new_strategy_in_the_war_on_cancer', '2010'], ['/talks/natalie_jeremijenko_the_art_of_the_eco_mindshift', '2010'], ['/talks/meg_jay_why_30_is_not_the_new_20', '2013'], ['/talks/sebastian_seung_i_am_my_connectome', '2010'], ['/talks/jonathan_haidt_how_common_threats_can_make_common_political_ground', '2013'], ['/talks/alberto_cairo_there_are_no_scraps_of_men', '2011'], ['/talks/kate_orff_reviving_new_york_s_rivers_with_oysters', '2011'], ['/talks/amanda_palmer_the_art_of_asking', '2013'], ['/talks/daniel_kraft_medicine_s_future_there_s_an_app_for_that', '2011'], ['/talks/paul_pholeros_how_to_reduce_poverty_fix_homes', '2013'], ['/talks/aaron_koblin_visualizing_ourselves_with_crowd_sourced_data', '2011'], ['/talks/yang_lan_the_generation_that_s_remaking_china', '2011'], ['/talks/thomas_insel_toward_a_new_understanding_of_mental_illness', '2013'], ['/talks/esther_perel_the_secret_to_desire_in_a_long_term_relationship', '2013'], ['/talks/ethan_zuckerman_listening_to_global_voices', '2010'], ['/talks/robert_gupta_between_music_and_medicine', '2012'], ['/talks/paul_conneally_how_mobile_phones_power_disaster_relief', '2012']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+a+physical+therapist+my+job+is+to+make
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=arms+and+legs+well+it+s+not+completely+true++we+do+more+than+that+we+provide+the
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=patients+the+afghan+disabled+first+with+the+physical+rehabilitation
found 1 videos: [['/talks/alberto_cairo_there_are_no_scraps_of_men', '2011']]
selected: /talks/alberto_cairo_there_are_no_scraps_of_men
sleep 4 seconds to avoid blocking
------<48>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AlecSoth_2015.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+about+ten+years+ago+i+got+a+call+from+a+woman+in+texas+stacey+baker++and+she+d+seen+some+of+my+photographs+in+an+art+exhibition
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+was+wondering+if+she+could+commission+me+to+take+a+portrait+of+her+parents++now+at+the+time+i+hadn+t+met+stacey+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thought+this+was+some+sort+of+wealthy+oil+tycoon+and+i+d+struck+it+rich
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+it+was+only+later+that+i+found+out+she+d+actually+taken+out+a+loan+to+make+this+happen
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+took+the+picture+of+her+parents+but+i+was+actually+more+excited+about+photographing+stacey+the+picture+i+made+that+day+ended+up+becoming+one+of+my
found 1 videos: [['/talks/alec_soth_and_stacey_baker_this_is_what_enduring_love_looks_like', '2015']]
selected: /talks/alec_soth_and_stacey_baker_this_is_what_enduring_love_looks_like
sleep 1 seconds to avoid blocking
------<49>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AlejandroAlvarado_2016X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+the+past+few+years+i+ve+been+spending+my+summers
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+marine+biological+laboratory+in+woods+hole+massachusetts++and+there+what+i+ve+been+doing+is
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=essentially+renting+a+boat+what+i+would+like+to+do+is+ask+you+to+come+on+a+boat+ride+with+me+tonight
found 1 videos: [['/talks/alejandro_sanchez_alvarado_to_solve_old_problems_study_new_species', '2017']]
selected: /talks/alejandro_sanchez_alvarado_to_solve_old_problems_study_new_species
sleep 4 seconds to avoid blocking
------<50>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AlejandroAravena_2014G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=any+power+in+design+that+s+the+power+of+synthesis++the+more+complex+the+problem++the+more+the+need+for+simplicity
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+allow+me+to+share+three+cases+where+we+tried+to+apply+design+s+power+of+synthesis
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=start+with+the+global+challenge+of+urbanization
found 5 videos: [['/talks/parag_khanna_how_megacities_are_changing_the_map_of_the_world', '2016'], ['/talks/alejandro_aravena_my_architectural_philosophy_bring_the_community_into_the_process', '2014'], ['/talks/ian_bremmer_how_the_us_should_use_its_superpower_status', '2016'], ['/talks/alessandra_orofino_it_s_our_city_let_s_fix_it', '2014'], ['/talks/hilary_cottam_social_services_are_broken_how_we_can_fix_them', '2015']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+a+fact+that+people+are+moving+towards++cities+and+even+if+counterintuitive++it+s+good+news
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=evidence+shows+that+people+are+better+off+in+cities
found 4 videos: [['/talks/alejandro_aravena_my_architectural_philosophy_bring_the_community_into_the_process', '2014'], ['/talks/hannah_fry_the_mathematics_of_love', '2015'], ['/talks/julian_treasure_why_architects_need_to_use_their_ears', '2012'], ['/talks/yassmin_abdel_magied_what_does_my_headscarf_mean_to_you', '2015']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+there+s+a+problem+that+i+would+call+the+3s+menace
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+scale++speed+and+scarcity+of+means+with+which+we+will+have+to+respond+to+this+phenomenon
found 1 videos: [['/talks/alejandro_aravena_my_architectural_philosophy_bring_the_community_into_the_process', '2014']]
selected: /talks/alejandro_aravena_my_architectural_philosophy_bring_the_community_into_the_process
sleep 5 seconds to avoid blocking
------<51>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AlessandraOrofino_2014G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+the+world+s+population+lives+in+our+cities++in+developing+countries+one+third+of+that+population+is+living+in
found 1 videos: [['/talks/enrique_penalosa_why_buses_represent_democracy_in_action', '2013']]
selected: /talks/enrique_penalosa_why_buses_represent_democracy_in_action
sleep 3 seconds to avoid blocking
------<52>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AlessandroAcquisti_2013G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+to+tell+you+a+story+connecting+the+notorious+privacy+incident+involving+adam+and+eve+and
found 1 videos: [['/talks/alessandro_acquisti_what_will_a_future_without_secrets_look_like', '2013']]
selected: /talks/alessandro_acquisti_what_will_a_future_without_secrets_look_like
sleep 3 seconds to avoid blocking
------<53>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AlexaMeade_2013G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=take+a+closer+look+there+s+more+to+this+painting+than+meets+the+eye
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+yes+it+s+an+acrylic+painting+of+a+man++but+i+didn+t+paint+it+on+canvas++i+painted+it+directly+on+top+of+the+man
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=altogether++and+if+i+want+to+paint+your+portrait++i+m+painting+it+on+you++physically+on+you+that+also+means+you+re+probably+going+to+end+up+with+an+earful+of+paint
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+i+need+to+paint+your+ear+on+your+ear
found 9 videos: [['/talks/alexa_meade_your_body_is_my_canvas', '2013'], ['/talks/paul_bloom_the_origins_of_pleasure', '2011'], ['/talks/fabian_oefner_psychedelic_science', '2013'], ['/talks/carl_safina_what_are_animals_thinking_and_feeling', '2015'], ['/talks/mia_birdsong_the_story_we_tell_about_poverty_isn_t_true', '2015'], ['/talks/noah_wilson_rich_every_city_needs_healthy_honey_bees', '2012'], ['/talks/ben_goldacre_battling_bad_science', '2011'], ['/talks/rachel_botsman_the_currency_of_the_new_economy_is_trust', '2012'], ['/talks/andrew_solomon_depression_the_secret_we_share', '2013']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=everything+in+this+scene+the+person+the+clothes++chairs++wall++gets+covered+in+a+mask+of+paint
found 1 videos: [['/talks/alexa_meade_your_body_is_my_canvas', '2013']]
selected: /talks/alexa_meade_your_body_is_my_canvas
sleep 4 seconds to avoid blocking
------<54>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AlexanderBetts_2016.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+are+times+when+i+feel+really+quite+ashamed+to+be+a+european
found 1 videos: [['/talks/alexander_betts_our_refugee_system_is_failing_here_s_how_we_can_fix_it', '2016']]
selected: /talks/alexander_betts_our_refugee_system_is_failing_here_s_how_we_can_fix_it
sleep 1 seconds to avoid blocking
------<55>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AlexanderBetts_2016T.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=never+before+has+the+phrase+i+am+british+elicited+so+much+pity
found 1 videos: [['/talks/alexander_betts_why_brexit_happened_and_what_to_do_next', '2016']]
selected: /talks/alexander_betts_why_brexit_happened_and_what_to_do_next
sleep 5 seconds to avoid blocking
------<56>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AlexanderTsiaras_2010P.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+offered+a+position+as+associate+professor+of+medicine+and+chief+of+scientific+visualization+at+yale+university+in+the+department+of+medicine
found 1 videos: [['/talks/alexander_tsiaras_conception_to_birth_visualized', '2011']]
selected: /talks/alexander_tsiaras_conception_to_birth_visualized
sleep 3 seconds to avoid blocking
------<57>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AlexisOhanian_2009I.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+are+a+lot+of+web+two+point+zero+consultants+who+make+a+lot+of+money+in+fact+they+make+their+living
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+this+stuff+i+m+going+to+try+to+save+you+all+the+time+and+money+and+go+through+it+in+the+next+three+minutes+so+bear+with+me+started+a+website+in+two+thousand+and+five+with+a+few+friends
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+what+you+d+call+a+social+news+website+basically+the+democratic+front+page+of+the+best+stuff+on+the+web+you+find+some+interesting+content+say+a+ted+talk+submit+it+to+reddit+and+a+community+of+your
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=peers+votes+up+if+they+like+it+down+if+they+don+t+that+creates+the+front+page+it+s+always+rising+falling++a+half+million+people+visit+every+day++but+this+isn+t+about+reddit+it+s+about+discovering+new+things
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+pop+up+on+the+web++in+the+last+four+years+we+ve+seen+all+kinds+of+memes+all+kinds+of+trends+get+born+right+on+our+front+page
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+actually+about+humpback+whales
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+technically+it+s+about+greenpeace+an+environmental+organization+that+wanted+to+stop+the+japanese+government+s+whaling+campaign+the+whales+were+getting+killed+they+wanted+to+put+an+end+to+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+the+ways+they+wanted+to+do+it+was+to+put+a+tracking+chip+inside+one+of+the+whales+but+to+personify+the+movement+they+wanted+to+name+it+so+in+true+web+fashion+they+put+together+a+poll+where+they+had+a+bunch+of+very+erudite+very+thoughtful+cultured+names+i
found 1 videos: [['/talks/alexis_ohanian_how_to_make_a_splash_in_social_media', '2009']]
selected: /talks/alexis_ohanian_how_to_make_a_splash_in_social_media
sleep 3 seconds to avoid blocking
------<58>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AlexKipman_2016.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thousands+of+years+from+now+we+ll+look+back+at+the+first+century+of+computing+as+a+fascinating+but+very+peculiar+time
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+only+time+in+history+where+humans+were+reduced+to+live+in+2d+space+interacting+with+technology
found 1 videos: [['/talks/alex_kipman_a_futuristic_vision_of_the_age_of_holograms', '2016']]
selected: /talks/alex_kipman_a_futuristic_vision_of_the_age_of_holograms
sleep 3 seconds to avoid blocking
------<59>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AlexLaskey_2013.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+many+of+you+have+checked+your+email+today+come+on+raise+your+hands+how+many+of+you+are+checking+it+right+now
found 1 videos: [['/talks/alex_laskey_how_behavioral_science_can_lower_your_energy_bill', '2013']]
selected: /talks/alex_laskey_how_behavioral_science_can_lower_your_energy_bill
sleep 3 seconds to avoid blocking
------<60>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AlexSteffen_2005G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+m+starting+talks+like+this+i+usually+do+a+whole+spiel+about+sustainability+because+a+lot+of+people+out+there+don+t+know+what+that+is+this+is+a+crowd+that+does+know+what+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=small+planet+right+picture+a+little+earth+circling+around+the+sun+you+know+about+a+million+years+ago+a+bunch+of+monkeys+fell+out+of+trees+got+a+little+clever+harnessed+fire+invented+the+printing+press+made+you+know+luggage+with+wheels+on+it+and++you+know+built+the+society+that+we+now+live+in
found 1 videos: [['/talks/alex_steffen_the_route_to_a_sustainable_future', '2007']]
selected: /talks/alex_steffen_the_route_to_a_sustainable_future
sleep 5 seconds to avoid blocking
------<61>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AlexSteffen_2011G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=climate+change+is+already+a+heavy+topic+and+it+s+getting+heavier+because+we+re+understanding+that+we+need+to+do+more+than+we+are+we+re+understanding+in+fact++that+those+of+us+who+live+in+the+developed+world+need+to+be+really+pushing
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+put+it+mildly+not+what+s+on+the+table+now
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+tends+to+feel+a+little+overwhelming+when+we+look+at+what+is+there+in+reality+today+and+the+magnitude+of+the+problem+that+we+face++and+when+we+have+overwhelming+problems
found 1 videos: [['/talks/alex_steffen_the_shareable_future_of_cities', '2011']]
selected: /talks/alex_steffen_the_shareable_future_of_cities
sleep 3 seconds to avoid blocking
------<62>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AlexTabarrok_2009.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+first+half+of+the+20th+century+was+an+absolute+disaster
found 1 videos: [['/talks/alex_tabarrok_how_ideas_trump_crises', '2009']]
selected: /talks/alex_tabarrok_how_ideas_trump_crises
sleep 3 seconds to avoid blocking
------<63>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AlexWissnerGross_2013X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+we+take+a+look+back+at+the+history+of+how+intelligence+has+been+viewed+one+seminal+example+has+been
found 1 videos: [['/talks/alex_wissner_gross_a_new_equation_for_intelligence', '2014']]
selected: /talks/alex_wissner_gross_a_new_equation_for_intelligence
sleep 3 seconds to avoid blocking
------<64>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AlGore_2006.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+truly+a+great+honor+to+have+the+opportunity+to+come+to+this+stage+twice+i+m+extremely+grateful+i+have+been+blown+away
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+want+to+thank+all+of+you+for+the+the+many
found 2 videos: [['/talks/clifford_stoll_the_call_to_learn', '2008'], ['/talks/ngozi_okonjo_iweala_want_to_help_africa_do_business_here', '2007']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=nice+comments+about+what+i+had+to+say+the+the+other+night++and+i+say+that+sincerely
found 1 videos: [['/talks/al_gore_averting_the_climate_crisis', '2006']]
selected: /talks/al_gore_averting_the_climate_crisis
sleep 3 seconds to avoid blocking
------<65>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AlGore_2008.stm
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+slide+show+that+that+i+gave+here+two+years+ago+about+two+thousand+times
found 18 videos: [['/talks/george_dyson_the_story_of_project_orion', '2008'], ['/talks/al_gore_new_thinking_on_the_climate_crisis', '2008'], ['/talks/paul_maccready_a_flight_on_solar_wings', '2007'], ['/talks/ngozi_okonjo_iweala_aid_versus_trade', '2007'], ['/talks/david_cameron_the_next_age_of_government', '2010'], ['/talks/christopher_moot_poole_the_case_for_anonymity_online', '2010'], ['/talks/kiran_bedi_a_police_chief_with_a_difference', '2010'], ['/talks/zach_kaplan_keith_schacht_toys_and_materials_from_the_future', '2008'], ['/talks/david_holt_the_joyful_tradition_of_mountain_music', '2008'], ['/talks/david_agus_a_new_strategy_in_the_war_on_cancer', '2010'], ['/talks/paul_sereno_digging_up_dinosaurs', '2009'], ['/talks/ed_ulbrich_how_benjamin_button_got_his_face', '2009'], ['/talks/edith_widder_glowing_life_in_an_underwater_world', '2010'], ['/talks/ellen_dunham_jones_retrofitting_suburbia', '2010'], ['/talks/bill_clinton_my_wish_rebuilding_rwanda', '2007'], ['/talks/hanna_rosin_new_data_on_the_rise_of_women', '2010'], ['/talks/jane_goodall_what_separates_us_from_chimpanzees', '2007'], ['/talks/richard_branson_life_at_30_000_feet', '2007']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+giving+a+short+slide+show+this+morning+that+i+m+giving+for
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+don+t+want+or+need+to+raise+the+bar+i+m+actually+trying+to+lower+the+bar++because+i+ve+cobbled+this+together+to+try+to
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+meet+the+the+challenge+of+this+session+and+i+was+reminded+by+karen+armstrong+s+fantastic+presentation
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=really+properly+understood+is+not+about+belief+but+about+behavior++perhaps+we+should+say+the+same+thing+about+optimism
found 1 videos: [['/talks/al_gore_new_thinking_on_the_climate_crisis', '2008']]
selected: /talks/al_gore_new_thinking_on_the_climate_crisis
sleep 5 seconds to avoid blocking
------<66>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AlGore_2016.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+excited+to+be+a+part+of+the+dream+theme++and+then+i+found+out+i+m+leading+off+the+nightmare+section+of+it
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=laughter+and+certainly+there+are+things+about+the+climate+crisis+that+qualify+and+i+have+some
found 2 videos: [['/talks/al_gore_the_case_for_optimism_on_climate_change', '2016'], ['/talks/katharine_hayhoe_the_most_important_thing_you_can_do_to_fight_climate_change_talk_about_it', '2018']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=bad+news+but+i+have+a+lot+more+good+news+i+m+going+to+propose+three+questions
found 1 videos: [['/talks/scott_galloway_how_amazon_apple_facebook_and_google_manipulate_our_emotions', '2017']]
selected: /talks/scott_galloway_how_amazon_apple_facebook_and_google_manipulate_our_emotions
sleep 3 seconds to avoid blocking
------<67>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AliCarrChellman_2010X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+tell+you+that+we+have+a+problem+with+boys++and+it+s+a+serious+problem+with+boys
found 1 videos: [['/talks/emily_levine_a_theory_of_everything', '2009']]
selected: /talks/emily_levine_a_theory_of_everything
sleep 4 seconds to avoid blocking
------<68>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AliceBowsLarkin_2015G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=over+our+lifetimes+we+ve+all+contributed+to+climate+change++actions++choices+and+behaviors
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=will+have+led+to+an+increase+in+greenhouse+gas+emissions
found 7 videos: [['/talks/alice_bows_larkin_climate_change_is_happening_here_s_how_we_adapt', '2015'], ['/talks/ted_halstead_a_climate_solution_where_all_sides_can_win', '2017'], ['/talks/lord_nicholas_stern_the_state_of_the_climate_and_what_we_might_do_about_it', '2014'], ['/talks/tshering_tobgay_this_country_isn_t_just_carbon_neutral_it_s_carbon_negative', '2016'], ['/talks/kate_stafford_how_human_noise_affects_ocean_habitats', '2017'], ['/talks/peter_calthorpe_7_principles_for_building_better_cities', '2017'], ['/talks/al_gore_the_case_for_optimism_on_climate_change', '2016']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+think+that+that+s+quite+a+powerful+thought+but+it+does+have+the+potential+to+make+us+feel+guilty
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+we+think+about+decisions+we+might+have+made+around+where+to+travel+to+how+often+and+how
found 7 videos: [['/talks/alice_bows_larkin_climate_change_is_happening_here_s_how_we_adapt', '2015'], ['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013'], ['/talks/margaret_gould_stewart_how_giant_websites_design_for_you_and_a_billion_others_too', '2014'], ['/talks/deborah_gordon_what_ants_teach_us_about_the_brain_cancer_and_the_internet', '2014'], ['/talks/nick_bostrom_what_happens_when_our_computers_get_smarter_than_we_are', '2015'], ['/talks/bill_and_melinda_gates_why_giving_away_our_wealth_has_been_the_most_satisfying_thing_we_ve_done', '2014'], ['/talks/anab_jain_why_we_need_to_imagine_different_futures', '2017']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+the+energy+that+we+choose+to+use+in+our+homes+or+in+our+workplaces
found 3 videos: [['/talks/alice_bows_larkin_climate_change_is_happening_here_s_how_we_adapt', '2015'], ['/talks/mick_cornett_how_an_obese_town_lost_a_million_pounds', '2014'], ['/talks/adam_grant_are_you_a_giver_or_a_taker', '2017']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+quite+simply+the+lifestyles+that+we+lead+and+enjoy
found 3 videos: [['/talks/alice_bows_larkin_climate_change_is_happening_here_s_how_we_adapt', '2015'], ['/talks/scott_dinsmore_how_to_find_work_you_love', '2015'], ['/talks/marwa_al_sabouni_how_syria_s_architecture_laid_the_foundation_for_brutal_war', '2016']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+we+can+also+turn+that+thought+on+its+head
found 13 videos: [['/talks/miguel_nicolelis_a_monkey_that_controls_a_robot_with_its_thoughts_no_really', '2013'], ['/talks/eleanor_longden_the_voices_in_my_head', '2013'], ['/talks/heather_lanier_good_and_bad_are_incomplete_stories_we_tell_ourselves', '2017'], ['/talks/paul_bloom_can_prejudice_ever_be_a_good_thing', '2014'], ['/talks/malcolm_gladwell_the_unheard_story_of_david_and_goliath', '2013'], ['/talks/david_eagleman_can_we_create_new_senses_for_humans', '2015'], ['/talks/monica_lewinsky_the_price_of_shame', '2015'], ['/talks/casey_gerald_the_gospel_of_doubt', '2016'], ['/talks/kevin_rudd_are_china_and_the_us_doomed_to_conflict', '2015'], ['/talks/sophie_scott_why_we_laugh', '2015'], ['/talks/chris_urmson_how_a_driverless_car_sees_the_road', '2015'], ['/talks/mike_kinney_a_pro_wrestler_s_guide_to_confidence', '2017'], ['/talks/dame_ellen_macarthur_the_surprising_thing_i_learned_sailing_solo_around_the_world', '2015']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+think+that+if+we+ve+had+such+a+profound
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+a+negative+impact+on+our+climate+already
found 4 videos: [['/talks/alice_bows_larkin_climate_change_is_happening_here_s_how_we_adapt', '2015'], ['/talks/greg_asner_ecology_from_the_air', '2013'], ['/talks/leyla_acaroglu_paper_beats_plastic_how_to_rethink_environmental_folklore', '2014'], ['/talks/zaria_forman_drawings_that_show_the_beauty_and_fragility_of_earth', '2016']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=then+we+have+an+opportunity+to+influence+the+amount+of+future+climate+change+that+we+will+need+to+adapt+to
found 1 videos: [['/talks/alice_bows_larkin_climate_change_is_happening_here_s_how_we_adapt', '2015']]
selected: /talks/alice_bows_larkin_climate_change_is_happening_here_s_how_we_adapt
sleep 5 seconds to avoid blocking
------<69>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AliceDreger_2011X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+you+to+imagine+two+couples+in+the+middle+of
found 17 videos: [['/talks/alice_dreger_is_anatomy_destiny', '2011'], ['/talks/dan_ariely_are_we_in_control_of_our_own_decisions', '2009'], ['/talks/maz_jobrani_did_you_hear_the_one_about_the_iranian_american', '2010'], ['/talks/jack_horner_where_are_the_baby_dinosaurs', '2012'], ['/talks/rajesh_rao_a_rosetta_stone_for_a_lost_language', '2011'], ['/talks/carlo_ratti_architecture_that_senses_and_responds', '2011'], ['/talks/hannah_fry_is_life_really_that_complex', '2012'], ['/talks/tim_berners_lee_the_next_web', '2009'], ['/talks/kakenya_ntaiya_a_girl_who_demanded_school', '2013'], ['/talks/patrick_chappatte_the_power_of_cartoons', '2010'], ['/talks/colin_camerer_when_you_re_making_a_deal_what_s_going_on_in_your_brain', '2013'], ['/talks/rory_sutherland_perspective_is_everything', '2012'], ['/talks/andrew_mcafee_what_will_future_jobs_look_like', '2013'], ['/talks/geraldine_hamilton_body_parts_on_a_chip', '2013'], ['/talks/jake_barton_the_museum_of_you', '2013'], ['/talks/peter_tyack_the_intriguing_sound_of_marine_mammals', '2010'], ['/talks/tim_jackson_an_economic_reality_check', '2010']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+the+exact+same+day+at+the+exact+same+moment+each+conceiving+a+baby
found 1 videos: [['/talks/alice_dreger_is_anatomy_destiny', '2011']]
selected: /talks/alice_dreger_is_anatomy_destiny
sleep 2 seconds to avoid blocking
------<70>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AliceGoffman_2015.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+the+path+that+american+children+travel+to+adulthood+two+institutions+oversee+the+journey
found 1 videos: [['/talks/alice_goffman_how_we_re_priming_some_kids_for_college_and_others_for_prison', '2015']]
selected: /talks/alice_goffman_how_we_re_priming_some_kids_for_college_and_others_for_prison
sleep 5 seconds to avoid blocking
------<71>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AliceRawsthorn_2016.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=design+is+a+slippery+and+elusive+phenomenon+which+has+meant+different+things+at+different+times++but+all+truly+inspiring+design+projects+have+one+thing+in+common
found 1 videos: [['/talks/alice_rawsthorn_pirates_nurses_and_other_rebel_designers', '2016']]
selected: /talks/alice_rawsthorn_pirates_nurses_and_other_rebel_designers
sleep 4 seconds to avoid blocking
------<72>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AliciaGarzaandPatrisseCullorsandOpalTometi_2016W.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=black+lives+matter+important+for+the+us+right+now
found 11 videos: [['/talks/alicia_garza_patrisse_cullors_and_opal_tometi_an_interview_with_the_founders_of_black_lives_matter', '2016'], ['/talks/ai_jen_poo_the_work_that_makes_all_other_work_possible', '2018'], ['/talks/ariana_curtis_museums_should_honor_the_everyday_not_just_the_extraordinary', '2018'], ['/talks/sheryl_sandberg_so_we_leaned_in_now_what', '2014'], ['/talks/sandi_toksvig_a_political_party_for_women_s_equality', '2016'], ['/talks/joan_c_williams_we_won_t_fix_us_politics_until_we_talk_about_class', '2018'], ['/talks/sydney_chaffee_how_teachers_can_help_kids_find_their_political_voices', '2018'], ['/talks/sisonke_msimang_if_a_story_moves_you_act_on_it', '2017'], ['/talks/dolly_chugh_how_to_let_go_of_being_a_good_person_and_become_a_better_person', '2018'], ['/talks/jakob_magolan_a_crash_course_in_organic_chemistry', '2018'], ['/talks/jennifer_granick_how_the_us_government_spies_on_people_who_protest_including_you', '2017']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+in+the+world+patrisse+cullors+black+lives+matter+is+our+call+to+action++it+is+a+tool+to+reimagine
found 1 videos: [['/talks/alicia_garza_patrisse_cullors_and_opal_tometi_an_interview_with_the_founders_of_black_lives_matter', '2016']]
selected: /talks/alicia_garza_patrisse_cullors_and_opal_tometi_an_interview_with_the_founders_of_black_lives_matter
sleep 1 seconds to avoid blocking
------<73>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AlisaMiller_2008.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+does+the+news+shape+the+way+we+see+the+world
found 12 videos: [['/talks/alisa_miller_how_the_news_distorts_our_worldview', '2008'], ['/talks/james_surowiecki_the_power_and_the_danger_of_online_crowds', '2008'], ['/talks/pawan_sinha_how_brains_learn_to_see', '2010'], ['/talks/bruce_bueno_de_mesquita_a_prediction_for_the_future_of_iran', '2009'], ['/talks/rory_sutherland_life_lessons_from_an_ad_man', '2009'], ['/talks/chris_abani_telling_stories_from_africa', '2007'], ['/talks/sylvia_earle_my_wish_protect_our_oceans', '2009'], ['/talks/seth_berkley_hiv_and_flu_the_vaccine_strategy', '2010'], ['/talks/p_w_singer_military_robots_and_the_future_of_war', '2009'], ['/talks/jonathan_drori_what_we_think_we_know', '2008'], ['/talks/steven_johnson_the_web_as_a_city', '2008'], ['/talks/jane_goodall_what_separates_us_from_chimpanzees', '2007']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+s+the+world+based+on+the+way+it+looks+based+on+landmass
found 1 videos: [['/talks/euvin_naidoo_why_invest_in_africa', '2007']]
selected: /talks/euvin_naidoo_why_invest_in_africa
sleep 1 seconds to avoid blocking
------<74>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AlisonGopnik_2011G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=going+on+in+this+baby+s+mind
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+d+asked+people+this+thirty+years+ago++most+people+including+psychologists+would+have+said+that+this+baby+was+irrational++illogical+egocentric+that+he+couldn+t+take+the+perspective+of+another+person+or+understand+cause+and+effect
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+last+twenty+years+developmental+science+has+completely+overturned+that+picture
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+in+some+ways+we+think+that+this+baby+s+thinking+is+like+the+thinking+of+the+most+brilliant+scientists++let+me+give+you+just+one+example+of+this
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+thing+that+this+baby+could+be+thinking+about+that+could+be+going+on+in+his+mind+is+trying+to+figure+out+what+s+going+on+in+the+mind+of+that+other+baby
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=after+all+one+of+the+things
found 8 videos: [['/talks/charles_fleischer_all_things_are_moleeds', '2010'], ['/talks/paul_snelgrove_a_census_of_the_ocean', '2012'], ['/talks/neil_pasricha_the_3_a_s_of_awesome', '2011'], ['/talks/elizabeth_gilbert_your_elusive_creative_genius', '2009'], ['/talks/simon_lewis_don_t_take_consciousness_for_granted', '2011'], ['/talks/dave_debronkart_meet_e_patient_dave', '2011'], ['/talks/clay_shirky_how_the_internet_will_one_day_transform_government', '2012'], ['/talks/david_steindl_rast_want_to_be_happy_be_grateful', '2013']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+hardest+for+all+of+us+to+do+is+to+figure+out+what+other+people+are+thinking+and+feeling
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+maybe+the+hardest+thing+of+all+is+to+figure+out+that+what+other+people+think+and+feel+isn+t+actually+exactly+like+what+we+think+and+feel+anyone+who+s+followed+politics+can+testify+to+how+hard+that+is+for+some+people+to+get
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+wanted+to+know+if+babies+and+young+children+could+understand+this+really+profound+thing+about+other+people+now+the+question
found 2 videos: [['/talks/alison_gopnik_what_do_babies_think', '2011'], ['/talks/rufus_griscom_alisa_volkman_let_s_talk_parenting_taboos', '2010']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+how+could+we+ask+them
found 7 videos: [['/talks/rory_sutherland_perspective_is_everything', '2012'], ['/talks/rodney_brooks_why_we_will_rely_on_robots', '2013'], ['/talks/megan_kamerick_women_should_represent_women_in_media', '2012'], ['/talks/anil_gupta_india_s_hidden_hotbeds_of_invention', '2010'], ['/talks/peter_diamandis_abundance_is_our_future', '2012'], ['/talks/juan_enriquez_will_our_kids_be_a_different_species', '2012'], ['/talks/michael_hansmeyer_building_unimaginable_shapes', '2012']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=babies+after+all+can+t+talk++and+if+you+ask+a+three+year+old+to+tell+you+what+he+thinks+what+you+ll+get+is+a+beautiful+stream+of+consciousness+monologue+about+ponies+and+birthdays+and+things+like+that
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+how+do+we+actually+ask+them+the+question+well+it+turns+out+that+the+secret+was+broccoli
found 1 videos: [['/talks/alison_gopnik_what_do_babies_think', '2011']]
selected: /talks/alison_gopnik_what_do_babies_think
sleep 4 seconds to avoid blocking
------<75>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AlisonJackson_2005G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+a+contemporary+artist+and+i+show+in+art+galleries+and+museums
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+show+a+number+of+photographs+and+films+but+i+also+make+television+programs+books+and+some+advertising
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+with+the+same+concept++and+it+s+about+our+fixation+with+celebrity+and+celebrity+culture++and+the+importance+of+the+image+celebrity+is+born+of+photography
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+start+with
found 2 videos: [['/talks/john_maeda_designing_for_simplicity', '2007'], ['/talks/maira_kalman_the_illustrated_woman', '2007']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+i+started+with+this+concept+seven+years+ago++when+princess+diana+died
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+was+a+sort+of+a+standstill+in+britain+the+moment+of+her+death+and+people
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=her+death+in+a+sort+of+mass+way
found 2 videos: [['/talks/bill_clinton_my_wish_rebuilding_rwanda', '2007'], ['/talks/dean_kamen_to_invent_is_to_give', '2007']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fascinated+by+this+phenomenon++so+i+wondered+could+one+erase+the+image+of+diana+actually+quite+crudely+and+physically++so+i+got+a+gun+and+started+to+shoot+at+the+image+of+diana
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+couldn+t+erase+this+from+my+memory+and+certainly+it+was+not+being+erased+from
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=public+psyche+momentum+was+being+built+the+press+wrote+about+her+death+in+rather+i+felt+pornographic
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ways+like+which+bit+of+artery+left+which+bit+of+body+and+how+did+she+die+in+the+back+of+the+car+and+i+was+intrigued+by+this+sort+of
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=mass+voyeurism++so+i+made+these+rather+gory+images++i
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=wondering+whether+i+could+actually+replace+her+image
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+got+a+look+alike+of+diana+and+posed+her+in+the+right+positions+and+angles
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=created+something+that+was+in+or+existed+in+the+public+imagination+so+people+were+wondering+was+she+going+to+marry+dodi+was+she+in+love+with+him+was+she+pregnant+did+she+want+his+baby+was+she+pregnant+when+she+died
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+created+this+image+of
found 2 videos: [['/talks/carolyn_porco_this_is_saturn', '2007'], ['/talks/ngozi_okonjo_iweala_aid_versus_trade', '2007']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=diana+dodi+and+their+imaginary+mixed+race+child+and+this+image
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=came+out+which+caused+a+huge+public+outcry+at+the+time++i+then+went+on+to+make
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=more+comments+on+the+media+and+press+imagery++so+i+started+making+reference+to+media+imagery
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=through+doorways+and+so+on+and+so+forth+to+titillate+the+public+or+the+viewer+further+in+terms+of+trying+to+make+the+viewer+more+aware+of+their+own+voyeurism
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+this+is+an+image+of+diana+looking+at+camilla+kissing+her+husband++and+this+was+a+sequence
error: request timeout
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+gets+shown+in+art+galleries+like+this+as+a+sequence
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+similarly+with+the+di+dodian+baby+imagery+this+is+another+art+gallery+installation+i+m+particularly+interested+in
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+you+can+t+rely+on+your+own+perception+this+is+jane+smith
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+jo+bloggs+for+instance+but+you+think+it+s+camilla+and+the+queen
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+m+fascinated+how+what+you+think+is+real+isn+t+necessarily+real++and+the+camera+can+lie++and+it+makes+it+very
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+mass+bombardment+of+imagery+to
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=tell+untruths++so+i+continued+to+work+on+this+project+of+how
error: request timeout
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+is+more+interesting+to+look+at+than+the+actual+real+subject+matter++and+at+the+same+time+it+removes+us+from+the+real
found 1 videos: [['/talks/vs_ramachandran_3_clues_to_understanding_your_brain', '2007']]
selected: /talks/vs_ramachandran_3_clues_to_understanding_your_brain
sleep 1 seconds to avoid blocking
------<76>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AlisonKilling_2014U.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+d+like+to+tell+you+a+story+about+death+and+architecture
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+hundred+years+ago+we+tended+to+die+of+infectious+diseases+like+pneumonia+that+if+they+took+hold+would+take+us+away+quite+quickly
found 1 videos: [['/talks/alison_killing_there_s_a_better_way_to_die_and_architecture_can_help', '2015']]
selected: /talks/alison_killing_there_s_a_better_way_to_die_and_architecture_can_help
sleep 1 seconds to avoid blocking
------<77>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AlisonKilling_2014X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+have+an+overlooked+but+potentially+lucrative+investment+opportunity+for+you
found 1 videos: [['/talks/alison_killing_what_happens_when_a_city_runs_out_of_room_for_its_dead', '2015']]
selected: /talks/alison_killing_what_happens_when_a_city_runs_out_of_room_for_its_dead
sleep 1 seconds to avoid blocking
------<78>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AlixGenerous_2015W.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+talk+to+you+about+dreams++i+have+been+a+lucid+dreamer+my+whole+life++and+it+s+cooler+than+in+the+movies
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=laughter+beyond+flying+breathing+fire+and+making+hot+men+spontaneously+appear
found 1 videos: [['/talks/alix_generous_how_i_learned_to_communicate_my_inner_life_with_asperger_s', '2015']]
selected: /talks/alix_generous_how_i_learned_to_communicate_my_inner_life_with_asperger_s
sleep 1 seconds to avoid blocking
------<79>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AllanAdams_2014.stm
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+see+stars+and+if+you+look+further+you+see+more+stars++and+further+galaxies+and+further+more+galaxies+but+if+you+keep+looking
found 2 videos: [['/talks/wendy_freedman_this_telescope_might_show_us_the_beginning_of_the_universe', '2015'], ['/talks/allan_adams_the_discovery_that_could_rewrite_physics', '2014']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=further+and+further++eventually+you+see+nothing
found 15 videos: [['/talks/david_chalmers_how_do_you_explain_consciousness', '2014'], ['/talks/jimmy_nelson_gorgeous_portraits_of_the_world_s_vanishing_people', '2015'], ['/talks/monica_byrne_a_sci_fi_vision_of_love_from_a_318_year_old_hologram', '2016'], ['/talks/michael_green_what_the_social_progress_index_can_reveal_about_your_country', '2014'], ['/talks/mac_stone_stunning_photos_of_the_endangered_everglades', '2015'], ['/talks/scott_rickard_the_beautiful_math_behind_the_world_s_ugliest_music', '2012'], ['/talks/mohamed_hijri_a_simple_solution_to_the_coming_phosphorus_crisis', '2013'], ['/talks/steven_schwaitzberg_a_universal_translator_for_surgeons', '2013'], ['/talks/melissa_walker_art_can_heal_ptsd_s_invisible_wounds', '2016'], ['/talks/david_gruber_glow_in_the_dark_sharks_and_other_stunning_sea_creatures', '2016'], ['/talks/noah_wilson_rich_every_city_needs_healthy_honey_bees', '2012'], ['/talks/juan_enriquez_what_will_humans_look_like_in_100_years', '2016'], ['/talks/suzanne_barakat_islamophobia_killed_my_brother_let_s_end_the_hate', '2016'], ['/talks/bettina_warburg_how_the_blockchain_will_radically_transform_the_economy', '2016'], ['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013']]
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+finally+you+see+a+faint+fading+afterglow++and+it+s+the+afterglow+of+the+big+bang
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+the+big+bang+was+an+era+in+the+early+universe+when+everything+we+see+in+the+night+sky+was+condensed+into+an+incredibly+small+incredibly+hot+incredibly+roiling+mass
found 1 videos: [['/talks/allan_adams_the_discovery_that_could_rewrite_physics', '2014']]
selected: /talks/allan_adams_the_discovery_that_could_rewrite_physics
sleep 1 seconds to avoid blocking
------<80>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AllanAdams_2016.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+point+three+billion+years+ago+in+a+distant++distant+galaxy+two+black+holes+locked+into+a+spiral
error: request timeout
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=three+suns++worth+of+stuff+into+pure+energy+in+a+tenth+of+a+second
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+that+brief+moment+in+time
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+glow+was+brighter+than+all+the+stars+in+all+the+galaxies+in+all+of+the+known+universe
error: request timeout
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+they+didn+t+release+their+energy+in+light+i+mean+you+know+they+re+black+holes++all+that+energy+was+pumped
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=into+the+fabric+of+space+and+time+itself++making+the+universe+explode+in+gravitational+waves+let+me+give+you+a+sense+of+the+timescale
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+work+here+one+point+three+billion+years+ago++earth+had+just+managed+to+evolve+multicellular+life
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+and+even+god+save+us+the+internet+and
error: request timeout
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+particularly+audacious+set+of+people+rai+weiss+at+mit++kip+thorne+and+ronald+drever+at+caltech
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=decided+that+it+would+be+really+neat+to+build+a+giant+laser+detector+with+which+to+search+for+the+gravitational+waves+from+things+like+colliding+black+holes
found 1 videos: [['/talks/allan_adams_what_the_discovery_of_gravitational_waves_means', '2016']]
selected: /talks/allan_adams_what_the_discovery_of_gravitational_waves_means
sleep 5 seconds to avoid blocking
------<81>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AllanJones_2011G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=humans+have+long+held+a+fascination+for+the+human+brain
found 2 videos: [['/talks/allan_jones_a_map_of_the_brain', '2011'], ['/talks/larry_smith_why_you_will_fail_to_have_a_great_career', '2012']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+chart+it++we+ve+described+it++we+ve+drawn+it++we+ve+mapped+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+just+like+the+physical+maps+of+our+world+that+have+been+highly+influenced+by
found 3 videos: [['/talks/allan_jones_a_map_of_the_brain', '2011'], ['/talks/lisa_harouni_a_primer_on_3d_printing', '2012'], ['/talks/tom_shannon_john_hockenberry_the_painter_and_the_pendulum', '2010']]
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=google+maps+think+gps+the+same+thing+is+happening+for+brain+mapping+through+transformation+so+let+s+take+a+look+at+the+brain
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=most+people+when+they+first+look+at+a+fresh+human+brain+they+say+it+doesn+t+look+what+you+re+typically+looking+at+when+someone+shows+you+a+brain+typically+what+you+re+looking+at+is+a+fixed+brain++it+s+gray++and+this+outer+layer+this+is+the+vasculature+which+is+incredible
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=around+a+human+brain++this+is+the+blood+vessels+twenty+percent+of+the+oxygen+coming+from+your+lungs++twenty+percent+of+the+blood+pumped+from+your+heart+is+servicing
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+one+organ+that+s+basically+if+you+hold+two+fists+together+it+s+just+slightly+larger+than+the+two+fists
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=going+on+in+the+human+brain
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+for+example+they+can+see+in+the+back+part+of+the+brain+which+is+just+turning+around+there+there+s+the+cerebellum+that+s+keeping+you+upright+right+now+it+s+keeping+me+standing+it+s+involved+in+coordinated+movement
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+the+side+here+this+is+temporal+cortex+this+is+the+area+where+primary+auditory+processing+so+you+re+hearing+my+words+you+re+sending+it+up+into+higher+language+processing+centers+towards+the+front+of+the+brain+is+the+place+in+which+all
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+the+more+complex+thought+decision+making+it+s+the+last+to+mature+in+late+adulthood+this+is+where+all+your+decision+making+processes+are+going+on+it+s+the+place+where+you+re+deciding+right+now+you+probably+aren+t+going+to+order+the+steak+for+dinner
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+if+you+take+a+deeper+look+at+the+brain+one+of+the+things+if+you+look+at+it+in+cross+section+what+you+can+see+is+that
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=can+t+really+see+a+whole+lot+of+structure+there++but+there+s+actually+a+lot+of+structure+there+it+s+cells+and+it+s+wires+all+wired+together++so+about+a+hundred+years+ago+some+scientists+invented+a+stain+that+would+stain+cells
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+s+shown+here+in+the+the+very+light+blue+you+can+see+areas+where+neuronal+cell+bodies+are+being+stained+and+what+you+can+see+is+it+s+very+non+uniform+you+see+a+lot+more+structure+there
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+the+outer+part+of+that+brain+is+the+neocortex+it+s+one+continuous+processing+unit+if+you+will++but+you+can+also+see+things+underneath+there+as+well
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+of+these+blank+areas+are+the+areas+in+which+the+wires+are+running+through+they+re+probably+less+cell+dense+so+there+s+about++eighty+six+billion+neurons+in+our+brain+and+as+you+can+see+they
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=re+very+non+uniformly+distributed+and+how+they+re+distributed+really+contributes+to+their+underlying+function+and+of+course+as+i+mentioned+before++since+we+can+now+start+to+map+brain+function+we+can+start+to+tie+these+into+the+individual+cells+so+let+s
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=take+a+deeper+look+let+s+look+at+neurons++so+as+i+mentioned+there+are+eighty+six+billion+neurons+there+are+also+these+smaller+cells+as+you+ll+see+these+are+support+cells+astrocytes+glia
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+nerves+themselves+are+the+ones+who+are+receiving+input+they+re+storing+it+they+re+processing+it++each+neuron+is+connected+via+synapses+to+up+to+ten+thousand+other+neurons+in+your+brain
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=itself+is+largely+unique+the+unique+character+of+both+individual+neurons+and+neurons+within+a+collection+of+the+brain+are+driven+by+fundamental+properties+of+their+underlying
found 1 videos: [['/talks/allan_jones_a_map_of_the_brain', '2011']]
selected: /talks/allan_jones_a_map_of_the_brain
sleep 1 seconds to avoid blocking
------<82>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AllanSavory_2013.stm
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=perfect+storm+is+bearing+down+upon+us
found 1 videos: [['/talks/allan_savory_how_to_fight_desertification_and_reverse_climate_change', '2013']]
selected: /talks/allan_savory_how_to_fight_desertification_and_reverse_climate_change
sleep 3 seconds to avoid blocking
------<83>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AllisonHunt_2007.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=harsh+up+here+i+mean+i+m+nervous+enough
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+am+not+as+nervous+as+i+was+five+weeks+ago+five+weeks+ago+i+had+total+hip+replacement+surgery
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=do+you+know+that+surgery+electric+saw++power+drill+totally+disgusting
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=unless+you+re+david+bolinsky+in+which+case+it+s+all+truth+and+beauty++sure+david+if+it+s+not+your+hip+it+s+truth+and+beauty
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=anyway+i+did+have+a+really+big+epiphany+around+the+situation+so+chris+invited+me+to+tell+you
found 1 videos: [['/talks/allison_hunt_how_to_get_a_new_hip', '2007']]
selected: /talks/allison_hunt_how_to_get_a_new_hip
sleep 1 seconds to avoid blocking
------<84>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AlSeckel_2004.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+re+going+to+talk+my+a+new+lecture+just+for+ted+and+i+m+going+show+you+some+illusions+that+we+ve+created+for+ted
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+m+going+to+try+to+relate+this+to+happiness+what+i+was+thinking+about+with+happiness+is+what+gives+happiness
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=happiness+which+i+equate+with+joy+in+my+particular+area
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+something+very+fundamental++and+i+was+thinking+about+this++and+it+s+in+terms+of+both+illusions
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+movies+that+we+go+see+and+jokes+and+magic+shows+is+that
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+something+about+these+things+where+our+expectations+are+violated+in+some+sort+of+pleasing+way++you+go+see+a+movie
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=has+an+unexpected+twist+something+that+you+didn+t+expect+and+you+find+a+joyful+experience+you+look+at+those+sort+of+illusions+in+my+book
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+s+not+as+what+you+d+expect+and+there+s+something+joyful+about+it+and+it+s+the+same+thing+with+jokes+and+and+all+these+sorts+of+things+so+what+i+m+going+to+try+and+do+in+my+lecture+is+go+a+little+bit
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=further+and+see+if+i+can+violate+your+expectations+in+a
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=pleasing+way+i+mean+sometimes+expectations+that+are+violated+are+not+pleasant+but+i+m+going+to+try+to+do+it+in+a+pleasant+way+in+a+very+primal+way++so+i+can+make+the+audience+here+happy
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+m+going+to+show+you+some+ways+that+we+can+violate+your+expectations
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=first+of+all+i+want+to+show+you+the+particular+illusion+here+i+want+you+first+of+all+when+it+pops+up+on+the+screen+to+notice+that+the+two+holes+are+perpendicular+to+each+other
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+are+real+objects+that+i+m+going+to+show+you
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+i+m+going+to+show+you+how+it+is+done+i+ve+looped+the+film+here+so+you+can+get+a+very+interesting+experience++i+want+you+to+see
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+this+illusion+is+constructed+and+it+s+going+to+rotate+so+you+see+that+it+s+inside+out+now+watch+as+it+rotates+back+how+quickly+your+perception
error: request timeout
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ok+now+watch+it+as+it+rotates+back+again++and+this+is+a+very+bright+audience+all+right+see+if+you+can+stop+it+from+happening++even+though+you+know+one+hundred+percent+it+s+true+that
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=bam++you+can+t+undo+it
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+does+that+tell+you+about+yourselves
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+re+going+to+do+it+again++no+doubt+about+it+see+if+you+can+stop+it+from+happening++no++it+s+difficult
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+can+violate+your+expectations+in+a+whole+variety+of+ways+about+representation+about+shape+about+color+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+forth+and+it+s+very+primal+and+it+s+an+interesting+question+to+ponder++why+these+things
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+lionel+did+a+while+ago+i+like+these+sort+of+little+things+like+this+again
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+not+an+optical+trick+this+is+what+you+would+see
found 1 videos: [['/talks/ray_kurzweil_the_accelerating_power_of_technology', '2006']]
selected: /talks/ray_kurzweil_the_accelerating_power_of_technology
sleep 3 seconds to avoid blocking
------<85>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AlVernacchio_2012.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=talk+to+you+today+about+a+whole+new+way+to+think+about+sexual+activity+and+sexuality+education+by+comparison
found 1 videos: [['/talks/al_vernacchio_sex_needs_a_new_metaphor_here_s_one', '2013']]
selected: /talks/al_vernacchio_sex_needs_a_new_metaphor_here_s_one
sleep 3 seconds to avoid blocking
------<86>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AlwarBalasubramaniam_2009I.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+many+memories+come+back+to+me
found 4 videos: [['/talks/gero_miesenboeck_re_engineering_the_brain', '2010'], ['/talks/antonio_damasio_the_quest_to_understand_consciousness', '2011'], ['/talks/elif_shafak_the_politics_of_fiction', '2010'], ['/talks/philip_zimbardo_the_psychology_of_time', '2009']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+like+after+every+exam+when+i+walk+out+the+teacher+would+say+hey+come+how+did+you+do
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+would+say+with+a+great+smile+i+will+definitely+pass+and+i+didn+t+understand+why+in+one+hand+they+say+speak+the+truth+in+the+other+hand+when+you+say+the+truth+they+hated+you
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+it+went+on+like+that+and+i+didn+t+know+where+else+to+find+myself++so+i+remember+those+nights+i+used+to+go+to+sleep+with
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=asking+help+from+[+the+]+unknown
found 5 videos: [['/talks/maira_kalman_the_illustrated_woman', '2007'], ['/talks/fields_wicker_miurin_learning_from_leadership_s_missing_manual', '2009'], ['/talks/alwar_balasubramaniam_art_of_substance_and_absence', '2010'], ['/talks/amy_tan_where_does_creativity_hide', '2008'], ['/talks/rory_bremner_a_one_man_world_summit', '2009']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+for+some+reason+i+couldn+t+believe+what+my+father+and+mother+hanged+in+the+puja+room+as+a+god+because+my+friend+s+family
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=had+something+else+as+a+god++so++i+thought+i+guess+i+ll+pray+to+[+the+]+unknown+and+ask+help+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=started+getting+help+from+everywhere+each+and+every+corner+of+my+life+at+that+time+my+brothers+started+giving+me+a+few+tips+about+drawing+and+painting
found 1 videos: [['/talks/alwar_balasubramaniam_art_of_substance_and_absence', '2010']]
selected: /talks/alwar_balasubramaniam_art_of_substance_and_absence
sleep 3 seconds to avoid blocking
------<87>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AlysonMcGregor_2014X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+all+go+to+doctors++and+we+do+so+with
found 13 videos: [['/talks/timothy_ihrig_what_we_can_do_to_die_well', '2016'], ['/talks/atul_gawande_how_do_we_heal_medicine', '2012'], ['/talks/brian_goldman_doctors_make_mistakes_can_we_talk_about_that', '2012'], ['/talks/pam_warhurst_how_we_can_eat_our_landscapes', '2012'], ['/talks/ramanan_laxminarayan_the_coming_crisis_in_antibiotics', '2014'], ['/talks/david_autor_will_automation_take_away_all_our_jobs', '2016'], ['/talks/navi_radjou_creative_problem_solving_in_the_face_of_extreme_limits', '2015'], ['/talks/alyson_mcgregor_why_medicine_often_has_dangerous_side_effects_for_women', '2015'], ['/talks/gail_reed_where_to_train_the_world_s_doctors_cuba', '2014'], ['/talks/maryn_mckenna_what_do_we_do_when_antibiotics_don_t_work_any_more', '2015'], ['/talks/amanda_bennett_we_need_a_heroic_narrative_for_death', '2013'], ['/talks/leana_wen_what_your_doctor_won_t_disclose', '2014'], ['/talks/ben_goldacre_what_doctors_don_t_know_about_the_drugs_they_prescribe', '2012']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=trust+and+blind+faith+that+the+test+they+are+ordering+and+the+medications+they+re+prescribing+are+based+upon+evidence
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+help+us+however+the+reality+is+that+that+hasn+t+always+been+the+case+for+everyone
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+if+i+told+you+that+the+medical+science+discovered+over+the+past+century+has+been+based+on+only+half+the+population
found 1 videos: [['/talks/alyson_mcgregor_why_medicine_often_has_dangerous_side_effects_for_women', '2015']]
selected: /talks/alyson_mcgregor_why_medicine_often_has_dangerous_side_effects_for_women
sleep 3 seconds to avoid blocking
------<88>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AlyssaMonks_2015X.stm
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+this+but+i+m+here+tonight+to+tell+you+about+something+personal+that+changed+my+work+and+my+perspective
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+something+we+all+go+through+and+my+hope+is
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+my+experience+may+be+helpful+to+somebody
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+give+you+some+background+on+me+i+grew+up+the+youngest+of+eight
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=yes+eight+kids+in+my+family+i+have+six+older+brothers+and+a+sister+to+give+you+a+sense+of+what+that+s+like
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+my+family+went+on+vacation+we+had+a+bus
found 11 videos: [['/talks/alyssa_monks_how_loss_helped_one_artist_find_beauty_in_imperfection', '2016'], ['/talks/bill_and_melinda_gates_why_giving_away_our_wealth_has_been_the_most_satisfying_thing_we_ve_done', '2014'], ['/talks/nancy_frates_meet_the_mom_who_started_the_ice_bucket_challenge', '2014'], ['/talks/maysoon_zayid_i_got_99_problems_palsy_is_just_one', '2014'], ['/talks/jessica_shortall_the_us_needs_paid_family_leave_for_the_sake_of_its_future', '2015'], ['/talks/alaa_murabit_what_my_religion_really_says_about_women', '2015'], ['/talks/dong_woo_jang_the_art_of_bow_making', '2013'], ['/talks/simon_sinek_why_good_leaders_make_you_feel_safe', '2014'], ['/talks/tim_ferriss_why_you_should_define_your_fears_instead_of_your_goals', '2017'], ['/talks/molly_winter_the_taboo_secret_to_better_health', '2016'], ['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+supermom+would+drive+us+all+over+town+to+our+various+after+school+activities+not+in+the+bus
found 1 videos: [['/talks/alyssa_monks_how_loss_helped_one_artist_find_beauty_in_imperfection', '2016']]
selected: /talks/alyssa_monks_how_loss_helped_one_artist_find_beauty_in_imperfection
sleep 3 seconds to avoid blocking
------<89>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AmandaBennett_2013P.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+you+to+come+back+with+me
found 5 videos: [['/talks/geena_rocero_why_i_must_come_out', '2014'], ['/talks/rita_pierson_every_kid_needs_a_champion', '2013'], ['/talks/edward_snowden_here_s_how_we_take_back_the_internet', '2014'], ['/talks/cristina_domenech_poetry_that_frees_the_soul', '2015'], ['/talks/hendrik_poinar_bring_back_the_woolly_mammoth', '2013']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=just+for+a+few+minutes+to+a+dark+night+in+china+the+night+i+met+my+husband+it+was+a+city+so+long+ago+that+it+was
found 1 videos: [['/talks/amanda_bennett_we_need_a_heroic_narrative_for_death', '2013']]
selected: /talks/amanda_bennett_we_need_a_heroic_narrative_for_death
sleep 5 seconds to avoid blocking
------<90>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AmandaBurden_2014.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+people+think+about+cities+they+tend+to+think+of+certain+things+they+think+of+buildings+and+streets+and+skyscrapers+noisy+cabs
found 1 videos: [['/talks/amanda_burden_how_public_spaces_make_cities_work', '2014']]
selected: /talks/amanda_burden_how_public_spaces_make_cities_work
sleep 3 seconds to avoid blocking
------<91>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AmandaPalmer_2013.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+didn+t+always+make+my+living+from+music+for+about+the+five+years+after+graduating+from+an+upstanding+liberal+arts+university+this
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+a+++self+employed+living+statue+called+the+eight+foot+bride++and+i+love+telling+people+i+did+this
found 1 videos: [['/talks/amanda_palmer_the_art_of_asking', '2013']]
selected: /talks/amanda_palmer_the_art_of_asking
sleep 5 seconds to avoid blocking
------<92>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AmberCase_2010W.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+to+tell+you+all+that+you+are+all+actually+cyborgs
found 3 videos: [['/talks/amber_case_we_are_all_cyborgs_now', '2011'], ['/talks/neil_harbisson_i_listen_to_color', '2012'], ['/talks/james_cameron_before_avatar_a_curious_boy', '2010']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+not+the+cyborgs+that+you+think+you+re+not+robocop+and+you+re+not+terminator++but+you+re+cyborgs+every+time+you+look+at+a+computer+screen+or+use+one+of+your+cell+phone+devices++so+what+s+a+good+definition+for+cyborg
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=traditional+definition+is+an+organism+to+which+exogenous+components+have+been+added+for+the+purpose+of+adapting+to+new+environments
found 1 videos: [['/talks/amber_case_we_are_all_cyborgs_now', '2011']]
selected: /talks/amber_case_we_are_all_cyborgs_now
sleep 2 seconds to avoid blocking
------<93>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AmeenahGuribFakim_2014G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know+it+s+a+big+privilege+for+me+to+be+working+in+one+of+the+biodiversity+hotspots+in+the+world+the+mascarene+islands+in+the+indian+ocean+these+islands+mauritius
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=unique+plants+found+nowhere+else+in+the+world++and+today+i+will+tell+you+about+five+of+them+and+their+particular+features
found 1 videos: [['/talks/ameenah_gurib_fakim_humble_plants_that_hide_surprising_secrets', '2014']]
selected: /talks/ameenah_gurib_fakim_humble_plants_that_hide_surprising_secrets
sleep 5 seconds to avoid blocking
------<94>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AmeeraHarouda_2016.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+my+first+trip+first+time+in+life+i+m+outside+of+the+walls+of+gaza++i+m+so+happy+to+be+here
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+feel+free+to+fly+the+sky++to+touch+the+sky
found 1 videos: [['/talks/ameera_harouda_why_i_put_myself_in_danger_to_tell_the_stories_of_gaza', '2016']]
selected: /talks/ameera_harouda_why_i_put_myself_in_danger_to_tell_the_stories_of_gaza
sleep 2 seconds to avoid blocking
------<95>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AmiKlin_2011X.stm
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+walking+laboratory+of+social+engagement+to+resonate+other+people+s+feelings++thoughts+intentions+motivations+in+the+act+of+being+with+them
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+a+scientist+i+always+wanted+to+measure+that+resonance
found 1 videos: [['/talks/ami_klin_a_new_way_to_diagnose_autism', '2012']]
selected: /talks/ami_klin_a_new_way_to_diagnose_autism
sleep 4 seconds to avoid blocking
------<96>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AmitSood_2011.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+name+is+amit++and+eighteen+months+ago++i+had+another+job+at+google++and+i+pitched+this+idea+of+doing+something+with+museums+and+art
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+my+boss+who+s+actually+here++and+she+allowed+me+to+do+it++and+it+took+eighteen+months+a+lot+of+fun+negotiations+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=stories+i+can+tell+you+with+seventeen+very+interesting+museums+from+nine+countries+but+i+m+going+to+focus+on+the+demo+there+are
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+lot+of+stories+about+why+we+did+this+i+think+my+personal+story+is+explained+very+simply+on+the+slide+and+it+s+access++and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+grew+up+in+india+i
found 12 videos: [['/talks/hans_rosling_asia_s_rise_how_and_when', '2009'], ['/talks/shashi_tharoor_why_nations_should_pursue_soft_power', '2009'], ['/talks/charles_anderson_dragonflies_that_fly_across_oceans', '2009'], ['/talks/aditi_shankardass_a_second_opinion_on_developmental_disorders', '2010'], ['/talks/ethan_zuckerman_listening_to_global_voices', '2010'], ['/talks/kiran_bedi_a_police_chief_with_a_difference', '2010'], ['/talks/shaffi_mather_a_new_way_to_fight_corruption', '2009'], ['/talks/naif_al_mutawa_superheroes_inspired_by_islam', '2010'], ['/talks/anil_gupta_india_s_hidden_hotbeds_of_invention', '2010'], ['/talks/rose_george_let_s_talk_crap_seriously', '2013'], ['/talks/mallika_sarabhai_dance_to_change_the_world', '2009'], ['/talks/andrew_mcafee_are_droids_taking_our_jobs', '2012']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=had+a+great+education+i+m+not+complaining+but+i+didn+t+have+access+to+a+lot+of+these+museums+and+these+artworks++and+so+when+i+started+traveling+and+going+to+these
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=museums+i+started+learning+a+lot+and+while+working+at+google++i+tried+to+put+this+desire+to+make+it+more+accessible+with+technology+together
found 1 videos: [['/talks/amit_sood_building_a_museum_of_museums_on_the_web', '2011']]
selected: /talks/amit_sood_building_a_museum_of_museums_on_the_web
sleep 4 seconds to avoid blocking
------<97>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AmitSood_2016.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+world+is+filled+with+incredible+objects+and+rich+cultural+heritage
found 1 videos: [['/talks/amit_sood_every_piece_of_art_you_ve_ever_wanted_to_see_up_close_and_searchable', '2016']]
selected: /talks/amit_sood_every_piece_of_art_you_ve_ever_wanted_to_see_up_close_and_searchable
sleep 3 seconds to avoid blocking
------<98>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AmoryLovins_2005.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+old+story+about+climate+protection+is+that+it+s+costly+or+it+would+have+been+done+already
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+government+needs+to+make+us+do+something+painful+to+fix+it++the+new+story+about+climate+protection+is+that
found 1 videos: [['/talks/amory_lovins_winning_the_oil_endgame', '2007']]
selected: /talks/amory_lovins_winning_the_oil_endgame
sleep 2 seconds to avoid blocking
------<99>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AmoryLovins_2012S.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=america+s+public+energy+conversation+boils+down+to+this+question
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=would+you+rather+die+of+a+oil+wars
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+b++climate+change++or+c+nuclear+holocaust+or+d+all+of+the+above+oh
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+missed+one+or+e++none+of+the+above
found 1 videos: [['/talks/amory_lovins_a_40_year_plan_for_energy', '2012']]
selected: /talks/amory_lovins_a_40_year_plan_for_energy
sleep 1 seconds to avoid blocking
------<100>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AmosWinter_2012X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=physical+disability+isn+t+easy+anywhere+in+the+world+but+if+you+live+in+a+country+like+the+united+states+there+s+certain
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=available+to+you+that+do+make+life+easier+so+if+you+re+in+a+building+you+can+take+an+elevator
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+re+crossing+the+street+you+have+sidewalk+cutouts+and+if+you+have+to+travel+some+distance+farther+than+you+can+do+under+your+own+power+there+s+accessible+vehicles+and+if+you+can+t+afford+one+of+those+there+s+accessible+public+transportation
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+in+the+developing+world+things+are+quite+different
found 18 videos: [['/talks/juliana_rotich_meet_brck_internet_access_built_for_africa', '2013'], ['/talks/vikram_patel_mental_health_for_all_by_involving_all', '2012'], ['/talks/ellen_t_hoen_pool_medical_patents_save_lives', '2012'], ['/talks/simon_anholt_which_country_does_the_most_good_for_the_world', '2014'], ['/talks/vinay_venkatraman_technology_crafts_for_the_digitally_underserved', '2012'], ['/talks/dan_pacholke_how_prisons_can_help_inmates_live_meaningful_lives', '2014'], ['/talks/melinda_gates_let_s_put_birth_control_back_on_the_agenda', '2012'], ['/talks/sarah_jayne_blakemore_the_mysterious_workings_of_the_adolescent_brain', '2012'], ['/talks/dambisa_moyo_is_china_the_new_idol_for_emerging_economies', '2013'], ['/talks/ami_klin_a_new_way_to_diagnose_autism', '2012'], ['/talks/charles_leadbeater_education_innovation_in_the_slums', '2010'], ['/talks/paddy_ashdown_the_global_power_shift', '2012'], ['/talks/steven_johnson_where_good_ideas_come_from', '2010'], ['/talks/christopher_mcdougall_are_we_born_to_run', '2011'], ['/talks/temple_grandin_the_world_needs_all_kinds_of_minds', '2010'], ['/talks/rory_sutherland_sweat_the_small_stuff', '2010'], ['/talks/nathan_myhrvold_could_this_laser_zap_malaria', '2010'], ['/talks/jamie_drummond_let_s_crowdsource_the_world_s_goals', '2012']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+forty+million+people+who+need+a+wheelchair+but+don+t+have+one
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+majority+of+these+people+live+in+rural+areas+where+the+only+connections+to+community+to+employment+to+education
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+by+traveling+long+distances+on+rough+terrain+often+under+their+own+power+and+the+devices+usually+available+to+these+people+are+not+made+for+that+context+break+down+quickly+and+are+hard+to+repair
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+started+looking+at+wheelchairs+in+developing+countries+in+two+thousand+and+five+when+i+spent+the+summer+assessing+the+state+of+technology+in+tanzania+and+i+talked+to+wheelchair+users+wheelchair+manufacturers+disability+groups
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+what+stood+out+to+me+is+that+there+wasn+t+a+device+available+that+was+designed+for+rural+areas+that+could+go+fast+and+efficiently+on+many+types+of+terrain+so+being+a+mechanical
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=engineer+being+at+mit+and+having+lots+of+resources+available+to+me+i+thought+i+d+try+to+do+something+about+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+can+shift+to+a+low+gear+if+you+have+to+climb+a+hill+or+go+through+mud+or+sand+and+you+get+a+lot+of+torque+but+a+low+speed+and+if+you+want+to+go+faster+say+on+pavement+you+can+shift+to+a+high+gear
found 1 videos: [['/talks/amos_winter_the_cheap_all_terrain_wheelchair', '2012']]
selected: /talks/amos_winter_the_cheap_all_terrain_wheelchair
sleep 2 seconds to avoid blocking
------<101>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AmyAdeleHasinoff_2016X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+have+been+using+media+to+talk+about+sex+for+a+long+time
found 9 videos: [['/talks/amy_adele_hasinoff_how_to_practice_safe_sexting', '2017'], ['/talks/sarah_jones_one_woman_five_characters_and_a_sex_lesson_from_the_future', '2015'], ['/talks/mark_ronson_how_sampling_transformed_music', '2014'], ['/talks/kashmir_hill_and_surya_mattu_what_your_smart_devices_know_and_share_about_you', '2018'], ['/talks/martine_rothblatt_my_daughter_my_wife_our_robot_and_the_quest_for_immortality', '2015'], ['/talks/cal_newport_why_you_should_quit_social_media', '2018'], ['/talks/sean_follmer_shape_shifting_tech_will_change_work_as_we_know_it', '2016'], ['/talks/jennifer_golbeck_your_social_media_likes_expose_more_than_you_think', '2014'], ['/talks/kio_stark_why_you_should_talk_to_strangers', '2016']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=love+letters++phone+sex+racy+polaroids++there+s+even+a+story+of+a+girl+who+eloped+with+a
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+am+a+sexting+expert+not+an+expert+sexter
found 1 videos: [['/talks/amy_adele_hasinoff_how_to_practice_safe_sexting', '2017']]
selected: /talks/amy_adele_hasinoff_how_to_practice_safe_sexting
sleep 5 seconds to avoid blocking
------<102>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AmyCuddy_2012G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+ask+you+to
found 2 videos: [['/talks/leana_wen_what_your_doctor_won_t_disclose', '2014'], ['/talks/peter_singer_the_why_and_how_of_effective_altruism', '2013']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=body+and+what+you+re+doing+with+your+body+so+how+many+of+you+are+sort+of+making+yourselves+smaller+maybe+you+re+hunching
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=crossing+your+legs+maybe+wrapping+your+ankles+sometimes+we+hold+onto+our+arms+like+this
error: request timeout
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=spread+out+i+see+you+so+i+want+you+to+pay+attention+to+what+you+re+doing+right
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+re+going+to+come+back+to+that+in+a+few+minutes++and+i+m+hoping+that+if+you+learn+to+tweak+this+a+little+bit+it+could+significantly+change+the+way+your+life+unfolds
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+we+re+really+fascinated+with+body+language++and+we+re+particularly+interested+in+other+people+s+body+language+you+know+we
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=re+interested+in+like+you+know
found 11 videos: [['/talks/markham_nolan_how_to_separate_fact_and_fiction_online', '2012'], ['/talks/nicholas_negroponte_a_30_year_history_of_the_future', '2014'], ['/talks/stewart_brand_the_dawn_of_de_extinction_are_you_ready', '2013'], ['/talks/natalie_jeremijenko_the_art_of_the_eco_mindshift', '2010'], ['/talks/emily_pilloton_teaching_design_for_change', '2010'], ['/talks/john_hardy_my_green_school_dream', '2010'], ['/talks/julian_assange_why_the_world_needs_wikileaks', '2010'], ['/talks/mustafa_akyol_faith_versus_tradition_in_islam', '2011'], ['/talks/kavita_ramdas_radical_women_embracing_tradition', '2010'], ['/talks/thelma_golden_how_art_gives_shape_to_cultural_change', '2010'], ['/talks/william_li_can_we_eat_to_starve_cancer', '2010']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=laughter+an+awkward+interaction+or+a+smile+or+a+contemptuous+glance+or+maybe+a+very+awkward
found 1 videos: [['/talks/amy_cuddy_your_body_language_may_shape_who_you_are', '2012']]
selected: /talks/amy_cuddy_your_body_language_may_shape_who_you_are
sleep 5 seconds to avoid blocking
------<103>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AmyGreen_2017S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=two+months+ago+my+kids+and+i+huddled+around+a+cell+phone+watching+the+live+stream+of+the+game+awards++one+of+the+video+game+industry+s+biggest+nights
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+announced+the+nominees+for+the+game+for+impact+an+award+that+s+given+to+a+thought+provoking+video+game+with+a+profound
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=prosocial+message+or+meaning+they+opened+the+envelope
found 1 videos: [['/talks/amy_green_a_video_game_to_cope_with_grief', '2017']]
selected: /talks/amy_green_a_video_game_to_cope_with_grief
sleep 5 seconds to avoid blocking
------<104>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AmyLockwood_2011G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+am+a+reformed+marketer++and+i+now+work+in+international+development
found 1 videos: [['/talks/amy_lockwood_selling_condoms_in_the_congo', '2011']]
selected: /talks/amy_lockwood_selling_condoms_in_the_congo
sleep 2 seconds to avoid blocking
------<105>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AmyPurdy_2011X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+your+life+were+a+book
found 6 videos: [['/talks/lisa_bu_how_books_can_open_your_mind', '2013'], ['/talks/natalie_merchant_singing_old_poems_to_life', '2010'], ['/talks/christoph_adami_finding_life_we_can_t_imagine', '2011'], ['/talks/derek_sivers_keep_your_goals_to_yourself', '2010'], ['/talks/elizabeth_gilbert_your_elusive_creative_genius', '2009'], ['/talks/eve_ensler_embrace_your_inner_girl', '2010']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+were+the+author+how+would+you+want+your+story+to+go+that+s+the+question+that+changed+my
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=growing+up+in+the+hot+last+vegas+desert+all+i+wanted+was+to+be+free++i+would+daydream
found 1 videos: [['/talks/amy_purdy_living_beyond_limits', '2011']]
selected: /talks/amy_purdy_living_beyond_limits
sleep 1 seconds to avoid blocking
------<106>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AmySmith_2006.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+to+tell+you+the+tale+of+one+of+my+favorite+projects+i+think+it+s+one+of+the+most+exciting+that+i+m+working+on+but+i+think+it+s+also+the+simplest++it+s+a
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=project+that+has+the+potential+to+make+a+huge+impact+around+the+world+it+addresses+one+of+the+biggest+health+issues+on+the+planet
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+number+one+cause+of+death+in+children+under+five++which+is
found 6 videos: [['/talks/amy_smith_simple_designs_to_save_a_life', '2006'], ['/talks/steven_pinker_the_surprising_decline_in_violence', '2007'], ['/talks/sherwin_nuland_how_electroshock_therapy_changed_me', '2007'], ['/talks/bono_my_wish_three_actions_for_africa', '2006'], ['/talks/isabel_allende_tales_of_passion', '2008'], ['/talks/ann_cooper_what_s_wrong_with_school_lunches', '2008']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=water+borne+diseases++diarrhea++malnutrition+no+it
found 1 videos: [['/talks/amy_smith_simple_designs_to_save_a_life', '2006']]
selected: /talks/amy_smith_simple_designs_to_save_a_life
sleep 4 seconds to avoid blocking
------<107>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AmyTan_2008.stm
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+was+an+essay+i+wrote+when+i+was+eleven+years+old+and+i+got+a+b+++what
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+talk+about+nothing+out+of+something++and+how+we+create++and+i+m+gonna+try+and+do+that+within+the
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=time+span+that+we+were+told+to+stay+within+and+to+follow+the+ted+commandments+that+is+actually
found 1 videos: [['/talks/amy_tan_where_does_creativity_hide', '2008']]
selected: /talks/amy_tan_where_does_creativity_hide
sleep 1 seconds to avoid blocking
------<108>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AmyWebb_2013S.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=name+is+amy+webb+and+a+few+years+ago+i+found+myself+at+the+end+of+yet+another+fantastic+relationship+that+came+burning+down+in+a+spectacular+fashion
found 1 videos: [['/talks/amy_webb_how_i_hacked_online_dating', '2013']]
selected: /talks/amy_webb_how_i_hacked_online_dating
sleep 1 seconds to avoid blocking
------<109>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AnandAgarawala_2007.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=era+of+computer+interfaces+like+they+re+very+kind+of+they+don+t+go+as+deep+or+as+emotionally+engaging+as+they+possibly+could+be+and+i+d+like+to+change+all+that++hit+me
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+mean+this+is+the+kind+of+status+quo+interface+right+it+s+very+flat+kind+of+rigid+and+ok+so+you+could+sex+it+up+and+like+go+to+a+much+more+lickable+mac++you+know
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+really+it+s+the+kind+of+same+old+crap+we+ve+had+for+the+last++you+know+thirty+years
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+i+think+we+really+put+up+with+a+lot+of+crap+with+our+computers+i+mean+it+s+point+and+click+it+s+like+the+menus+icons
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+all+the+kind+of+same+thing+and+so+one+kind+of+information+space+that+i+take+inspiration+from+is+my+real+desk++it+s+so+much+more+subtle+so+much+more
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=visceral++and+i+d+like+to+bring+that+experience+to+the+desktop+so+i+kind+of+have+a
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+this+is+bumptop+it+s+kind+of+like+a+new+approach+to
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=desktop+computing+so+you+can+bump+things+they+re+all+physically++you+know+manipulable+and+stuff
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=point+and+click+it+s+like+a+push+and+pull+things+collide+as+you+d+expect+them+just+like+on+my+real+desk++i+can+let+me+just+grab+these+guys+i+can+turn+things+into+piles
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=instead+of+just+the+folders+that+we+have
found 2 videos: [['/talks/anand_agarawala_rethink_the_desktop_with_bumptop', '2007'], ['/talks/zach_kaplan_keith_schacht_toys_and_materials_from_the_future', '2008']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+once+things+are+in+a+pile+i+can+browse+them+by+throwing+them+into+a+grid+or+you+know+flip+through+them+like+a+book
found 1 videos: [['/talks/anand_agarawala_rethink_the_desktop_with_bumptop', '2007']]
selected: /talks/anand_agarawala_rethink_the_desktop_with_bumptop
sleep 2 seconds to avoid blocking
------<110>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AnandaShankar_2009I.stm
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+an+ode+to+the+mother+goddess+that+most+of+us+in+india+learn+when+we+are+children++i+learned+it
found 1 videos: [['/talks/ananda_shankar_jayant_fighting_cancer_with_dance', '2010']]
selected: /talks/ananda_shankar_jayant_fighting_cancer_with_dance
sleep 2 seconds to avoid blocking
------<111>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AnandGiridharadas_2015.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=where+are+you+from+said+the+pale+tattooed+man+where+are+you+from
found 1 videos: [['/talks/anand_giridharadas_a_tale_of_two_americas_and_the_mini_mart_where_they_collided', '2015']]
selected: /talks/anand_giridharadas_a_tale_of_two_americas_and_the_mini_mart_where_they_collided
sleep 2 seconds to avoid blocking
------<112>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AnandGiridharadas_2016T.stm
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+write+to+you+today+to+you+who+have+lost+in+this+era
found 20 videos: [['/talks/anand_giridharadas_a_letter_to_all_who_have_lost_in_this_era', '2016'], ['/talks/ray_dalio_how_to_build_a_company_where_the_best_ideas_win', '2017'], ['/talks/steven_pinker_and_rebecca_newberger_goldstein_the_long_reach_of_reason', '2014'], ['/talks/david_lee_why_jobs_of_the_future_won_t_feel_like_work', '2017'], ['/talks/ann_curry_how_to_restore_trust_in_journalism', '2018'], ['/talks/yuval_noah_harari_nationalism_vs_globalism_the_new_political_divide', '2017'], ['/talks/wael_ghonim_let_s_design_social_media_that_drives_real_change', '2016'], ['/talks/karina_galperin_should_we_simplify_spelling', '2017'], ['/talks/john_mcwhorter_4_reasons_to_learn_a_new_language', '2016'], ['/talks/mac_barnett_why_a_good_book_is_a_secret_door', '2014'], ['/talks/j_marshall_shepherd_3_kinds_of_bias_that_shape_your_worldview', '2018'], ['/talks/don_tapscott_how_the_blockchain_is_changing_money_and_business', '2016'], ['/talks/alex_gendler_history_vs_christopher_columbus', '2014'], ['/talks/steve_mccarroll_how_data_is_helping_us_unravel_the_mysteries_of_the_brain', '2018'], ['/talks/rachel_botsman_we_ve_stopped_trusting_institutions_and_started_trusting_strangers', '2016'], ['/talks/naomi_klein_how_shocking_events_can_spark_positive_change', '2018'], ['/talks/john_doerr_why_the_secret_to_success_is_setting_the_right_goals', '2018'], ['/talks/kenneth_cukier_big_data_is_better_data', '2014'], ['/talks/neha_narula_the_future_of_money', '2016'], ['/talks/david_rothkopf_how_fear_drives_american_politics', '2015']]
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+our+common+life+when+the+world+is+full+of+breaking+and+spite+and+fear
found 1 videos: [['/talks/anand_giridharadas_a_letter_to_all_who_have_lost_in_this_era', '2016']]
selected: /talks/anand_giridharadas_a_letter_to_all_who_have_lost_in_this_era
sleep 4 seconds to avoid blocking
------<113>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AnandVarma_2015.stm
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=until+last+year+i+d+never+kept+bees+before++but+national+geographic+asked+me+to+photograph+a+story+about+them+and+i
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=decided+to+be+able+to+take+compelling+images+i+should+start+keeping+bees+myself
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+as+you+may+know+bees+pollinate+one+third+of+our+food+crops++and+lately+they+ve+been+having+a+really+hard+time
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+as+a+photographer+i+wanted+to+explore+what+this+problem+really+looks+like++so+i+m+going
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+show+you+what+i+found+over+the+last+year++this+furry+little+creature
found 1 videos: [['/talks/anand_varma_the_first_21_days_of_a_bee_s_life', '2015']]
selected: /talks/anand_varma_the_first_21_days_of_a_bee_s_life
sleep 2 seconds to avoid blocking
------<114>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AnantAgarwal_2013G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+d+like+to+reimagine+education
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+last+year+has+seen+the+invention+of+a+new+four+letter+word+it+starts+with+an+m+mooc
found 1 videos: [['/talks/anant_agarwal_why_massive_open_online_courses_still_matter', '2014']]
selected: /talks/anant_agarwal_why_massive_open_online_courses_still_matter
sleep 4 seconds to avoid blocking
------<115>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AnasAremeyawAnas_2013.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=am+sorry+i+cannot+show+you+my+face+because+if+i+do+the+bad+guys+will+come+for+me
found 6 videos: [['/talks/sarah_kay_if_i_should_have_a_daughter', '2011'], ['/talks/anas_aremeyaw_anas_how_i_named_shamed_and_jailed', '2013'], ['/talks/paola_antonelli_why_i_brought_pac_man_to_moma', '2013'], ['/talks/brene_brown_listening_to_shame', '2012'], ['/talks/jennifer_senior_for_parents_happiness_is_a_very_high_bar', '2014'], ['/talks/edward_snowden_here_s_how_we_take_back_the_internet', '2014']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+journey+started+fourteen+years+ago
found 2 videos: [['/talks/shaka_senghor_why_your_worst_deeds_don_t_define_you', '2014'], ['/talks/alice_goffman_how_we_re_priming_some_kids_for_college_and_others_for_prison', '2015']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+a+young+reporter+i+had+just+come+out+of+college+then+i+got+a+scoop+the+scoop+was
found 1 videos: [['/talks/anas_aremeyaw_anas_how_i_named_shamed_and_jailed', '2013']]
selected: /talks/anas_aremeyaw_anas_how_i_named_shamed_and_jailed
sleep 5 seconds to avoid blocking
------<116>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AnastasiaTaylorLind_2014U.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+arrived+in+kiev+on+february+one+this+year++independence+square+was+under+siege++surrounded+by+police+loyal+to+the+government
found 1 videos: [['/talks/anastasia_taylor_lind_fighters_and_mourners_of_the_ukrainian_revolution', '2014']]
selected: /talks/anastasia_taylor_lind_fighters_and_mourners_of_the_ukrainian_revolution
sleep 3 seconds to avoid blocking
------<117>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AndersFjellberg_2015G.stm
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+the+tiny+village+of+elle+close+to+lista+it+s+right+at+the+southernmost+tip+of+norway
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+on+january+two+this+year+an+elderly+guy+who+lives+in+the+village++he+went+out+to+see+what
found 1 videos: [['/talks/anders_fjellberg_two_nameless_bodies_washed_up_on_the_beach_here_are_their_stories', '2015']]
selected: /talks/anders_fjellberg_two_nameless_bodies_washed_up_on_the_beach_here_are_their_stories
sleep 2 seconds to avoid blocking
------<118>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AndersYnnerman_2010X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=start+by+posing+a+little+bit+of+a+challenge+the+challenge+of+dealing+with+data++data+that+we+have+to+deal+with+in+medical
found 1 videos: [['/talks/anders_ynnerman_visualizing_the_medical_data_explosion', '2011']]
selected: /talks/anders_ynnerman_visualizing_the_medical_data_explosion
sleep 5 seconds to avoid blocking
------<119>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AndrasForgacs_2013G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+my+father+and+i+started+a+company+to+3d+print+human+tissues+and+organs+some+people+initially+thought+we+were+a+little+crazy
found 1 videos: [['/talks/andras_forgacs_leather_and_meat_without_killing_animals', '2013']]
selected: /talks/andras_forgacs_leather_and_meat_without_killing_animals
sleep 4 seconds to avoid blocking
------<120>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AndreaGhez_2009G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+do+you+observe+something+you+can+t+see+this+is+the+basic+question+of+somebody+who+s+interested+in+finding+and+studying+black+holes
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+black+holes+are+objects+whose+pull+of+gravity+is+so+intense+that+nothing+can+escape+it+not+even+light+so+you
found 1 videos: [['/talks/andrea_ghez_the_hunt_for_a_supermassive_black_hole', '2009']]
selected: /talks/andrea_ghez_the_hunt_for_a_supermassive_black_hole
sleep 4 seconds to avoid blocking
------<121>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AndreasEkstrom_2015X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+whenever+i+visit+a+school+and+talk+to+students+i+always+ask+them+the+same+thing
found 1 videos: [['/talks/andreas_ekstrom_the_moral_bias_behind_your_search_results', '2015']]
selected: /talks/andreas_ekstrom_the_moral_bias_behind_your_search_results
sleep 3 seconds to avoid blocking
------<122>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AndreasRaptopoulos_2013G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=billion+people+in+the+world+today+do+not+have+access+to+all+season+roads+one+billion+people+one+seventh+of+the+earth+s+population
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+totally+cut+off+for+some+part+of+the+year++we+cannot+get+medicine+to+them+reliably++they+cannot+get+critical+supplies
found 1 videos: [['/talks/andreas_raptopoulos_no_roads_there_s_a_drone_for_that', '2013']]
selected: /talks/andreas_raptopoulos_no_roads_there_s_a_drone_for_that
sleep 5 seconds to avoid blocking
------<123>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AndreasSchleicher_2012G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=radical+openness+is+still+a+distant+future+in+the+field+of+school+education
found 1 videos: [['/talks/andreas_schleicher_use_data_to_build_better_schools', '2013']]
selected: /talks/andreas_schleicher_use_data_to_build_better_schools
sleep 3 seconds to avoid blocking
------<124>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AndresLozano_2013X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+the+things+i+want+to+establish+right+from+the+start+is+that
found 12 videos: [['/talks/nancy_duarte_the_secret_structure_of_great_talks', '2012'], ['/talks/kwame_anthony_appiah_is_religion_good_or_bad_this_is_a_trick_question', '2014'], ['/talks/andres_lozano_parkinson_s_depression_and_the_switch_that_might_turn_them_off', '2013'], ['/talks/markham_nolan_how_to_separate_fact_and_fiction_online', '2012'], ['/talks/kevin_rudd_are_china_and_the_us_doomed_to_conflict', '2015'], ['/talks/oren_yakobovich_hidden_cameras_that_film_injustice_in_the_world_s_most_dangerous_places', '2014'], ['/talks/dambisa_moyo_is_china_the_new_idol_for_emerging_economies', '2013'], ['/talks/nancy_kanwisher_a_neural_portrait_of_the_human_mind', '2014'], ['/talks/maajid_nawaz_a_global_culture_to_fight_extremism', '2011'], ['/talks/alberto_cairo_there_are_no_scraps_of_men', '2011'], ['/talks/tyler_cowen_be_suspicious_of_simple_stories', '2012'], ['/talks/anders_ynnerman_visualizing_the_medical_data_explosion', '2011']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+all+neurosurgeons+wear+cowboy+boots+i+just+wanted+you+to+know+that+so+i+am+indeed+a+neurosurgeon++and
found 1 videos: [['/talks/andres_lozano_parkinson_s_depression_and_the_switch_that_might_turn_them_off', '2013']]
selected: /talks/andres_lozano_parkinson_s_depression_and_the_switch_that_might_turn_them_off
sleep 2 seconds to avoid blocking
------<125>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AndresRuzo_2014G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+a+boy+in+lima+my+grandfather+told+me+a+legend+of+the+spanish+conquest+of+peru
found 1 videos: [['/talks/andres_ruzo_the_boiling_river_of_the_amazon', '2016']]
selected: /talks/andres_ruzo_the_boiling_river_of_the_amazon
sleep 2 seconds to avoid blocking
------<126>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AndrewBastawrous_2014U.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=million+people+in+the+world+who+are+blind+eighty+percent+of+them
found 8 videos: [['/talks/andrew_bastawrous_get_your_next_eye_exam_on_a_smartphone', '2014'], ['/talks/pamela_ronald_the_case_for_engineering_our_food', '2015'], ['/talks/sebastian_wernicke_1_000_ted_talks_in_six_words', '2012'], ['/talks/roger_stein_a_bold_new_way_to_fund_drug_research', '2014'], ['/talks/leslie_morgan_steiner_why_domestic_violence_victims_don_t_leave', '2013'], ['/talks/chris_urmson_how_a_driverless_car_sees_the_road', '2015'], ['/talks/margaret_heffernan_dare_to_disagree', '2012'], ['/talks/pico_iyer_where_is_home', '2013']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+living+in++low+income+countries+such+as+kenya++and+the+absolute+majority
found 1 videos: [['/talks/andrew_bastawrous_get_your_next_eye_exam_on_a_smartphone', '2014']]
selected: /talks/andrew_bastawrous_get_your_next_eye_exam_on_a_smartphone
sleep 3 seconds to avoid blocking
------<127>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AndrewBird_2010.stm
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+do+something+special+today+i+want+to+debut+a+new+song+that+i+ve+been+working+on+in+the+last
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=five+or+six+months++and+there+s+few+things+more+thrilling+than+playing+a+song
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+the+first+time+in+front+of+an+audience+especially+when+it+s
found 1 videos: [['/talks/morgan_spurlock_the_greatest_ted_talk_ever_sold', '2011']]
selected: /talks/morgan_spurlock_the_greatest_ted_talk_ever_sold
sleep 1 seconds to avoid blocking
------<128>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AndrewBlum_2012G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+always+written+primarily+about+architecture+about+buildings++and+writing+about+architecture+is+based+on+certain+assumptions
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=an+architect+designs+a+building+and+it+becomes+a+place+or+many+architects+design+many+buildings+and+it+becomes+a
found 10 videos: [['/talks/andrew_blum_discover_the_physical_side_of_the_internet', '2012'], ['/talks/mark_raymond_victims_of_the_city', '2012'], ['/talks/iwan_baan_ingenious_homes_in_unexpected_places', '2013'], ['/talks/joshua_prince_ramus_building_a_theater_that_remakes_itself', '2010'], ['/talks/emily_pilloton_teaching_design_for_change', '2010'], ['/talks/liz_diller_a_new_museum_wing_in_a_giant_bubble', '2012'], ['/talks/jer_thorp_make_data_more_human', '2012'], ['/talks/kent_larson_brilliant_designs_to_fit_more_people_in_every_city', '2012'], ['/talks/john_underkoffler_pointing_to_the_future_of_ui', '2010'], ['/talks/amanda_burden_how_public_spaces_make_cities_work', '2014']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+regardless+of+this+complicated+mix+of+forces+of+politics+and+culture+and+economics+that+shapes+these+places
found 1 videos: [['/talks/andrew_blum_discover_the_physical_side_of_the_internet', '2012']]
selected: /talks/andrew_blum_discover_the_physical_side_of_the_internet
sleep 3 seconds to avoid blocking
------<129>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AndrewConnolly_2014.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=an+english+composer++technologist+and+astronomer+called+william+herschel+noticed+an+object+on+the+sky+that+didn+t+quite+move+the+way+the+rest+of+the+stars+did
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=recognition+that+something+was+different+that+something+wasn+t+quite+right+was+the+discovery+of+a+planet+the+planet+uranus
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+name+that+has+entertained+countless+generations+of+children
found 1 videos: [['/talks/andrew_connolly_what_s_the_next_window_into_our_universe', '2014']]
selected: /talks/andrew_connolly_what_s_the_next_window_into_our_universe
sleep 2 seconds to avoid blocking
------<130>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AndrewFitzgerald_2013S.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+my+free+time+outside+of+twitter+i+experiment+a+little+bit+with+telling+stories+online+experimenting+with+what+we+can+do+with+new+digital+tools+and+in+my+job+at+twitter+i+actually
found 1 videos: [['/talks/andrew_fitzgerald_adventures_in_twitter_fiction', '2013']]
selected: /talks/andrew_fitzgerald_adventures_in_twitter_fiction
sleep 5 seconds to avoid blocking
------<131>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AndrewMcAfee_2012X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+it+turns+out+when+tens+of+millions+of+people+are+unemployed+or+underemployed++there+s+a+fair+amount+of+interest+in+what+technology+might+be+doing+to+the+labor+force++and+as+i+look+at+the+conversation+it+strikes+me+that+it+s+focused+on+exactly+the+right+topic
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+at+the+same+time+it+s+missing+the+point+entirely
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+topic+that+it+s+focused+on+the+question+is+whether+or+not+all+these+digital+technologies+are+affecting+people+s+ability+to+earn+a+living+or+to+say+it+a+little+bit+different+way
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+the+droids+taking+our+jobs+and+there+s+some+evidence+that+they+are+the+great+recession+ended+when+american+gdp+resumed+its+kind+of+slow+steady+march+upward+and+some+other+economic+indicators+also+started+to+rebound
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=got+kind+of+healthy+kind+of+quickly+corporate+profits+are+quite+high+in+fact+if+you+include+bank+profits+they+re+higher+than+they+ve+ever+been
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+business+investment+in+gear+in+equipment+and+hardware+and+software+is+at+an+all+time+high+so+the+businesses+are+getting+out+their+checkbooks+what+they+re+not+really+doing+is+hiring
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+in+america+who+have+work++and+we+see+that+it+cratered+during+the+great+recession++and+it+hasn+t+started+to+bounce+back+at+all+but+the+story+is
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+just+a+recession+story++the+decade+that+we+ve+just+been+through+had+relatively+anemic+job+growth+all+throughout+especially+when+we
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+only+time+we+have+on+record+where+there+were+fewer+people+working+at+the+end+of+the+decade
found 3 videos: [['/talks/andrew_mcafee_are_droids_taking_our_jobs', '2012'], ['/talks/andrew_mcafee_what_will_future_jobs_look_like', '2013'], ['/talks/rishi_manchanda_what_makes_us_get_sick_look_upstream', '2014']]
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+not+what+you+want+to+see
found 13 videos: [['/talks/jenna_mccarthy_what_you_don_t_know_about_marriage', '2012'], ['/talks/leana_wen_what_your_doctor_won_t_disclose', '2014'], ['/talks/gary_kovacs_tracking_our_online_trackers', '2012'], ['/talks/julian_treasure_how_to_speak_so_that_people_want_to_listen', '2014'], ['/talks/jeremy_heimans_what_new_power_looks_like', '2014'], ['/talks/eric_mead_the_magic_of_the_placebo', '2010'], ['/talks/glenn_greenwald_why_privacy_matters', '2014'], ['/talks/roger_mcnamee_6_ways_to_save_the_internet', '2011'], ['/talks/mark_plotkin_what_the_people_of_the_amazon_know_that_you_don_t', '2014'], ['/talks/chad_orzel_what_is_the_heisenberg_uncertainty_principle', '2014'], ['/talks/andrew_solomon_love_no_matter_what', '2013'], ['/talks/susan_etlinger_what_do_we_do_with_all_this_big_data', '2014'], ['/talks/meg_jay_why_30_is_not_the_new_20', '2013']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+you+graph+the+number+of+potential+employees+versus+the+number+of+jobs+in+the+country+you+see+the+gap+gets+bigger+and+bigger+over+time
found 1 videos: [['/talks/andrew_mcafee_are_droids_taking_our_jobs', '2012']]
selected: /talks/andrew_mcafee_are_droids_taking_our_jobs
sleep 1 seconds to avoid blocking
------<132>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AndrewMcAfee_2013.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+writer+george+eliot+cautioned+us+that+among+all+forms+of+mistake+prophesy+is+the+most+gratuitous++the+person+that+we+would+all+acknowledge+as
found 1 videos: [['/talks/andrew_mcafee_what_will_future_jobs_look_like', '2013']]
selected: /talks/andrew_mcafee_what_will_future_jobs_look_like
sleep 4 seconds to avoid blocking
------<133>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AndrewMwenda_2007G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+am+very+very+happy+to+be+amidst+some+of+the+most+the+lights+are+really+disturbing+my+eyes+and+they+re
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=reflecting+on+my+glasses+i+am+very+happy+and+honored+to+be+amidst
found 1 videos: [['/talks/andrew_mwenda_aid_for_africa_no_thanks', '2007']]
selected: /talks/andrew_mwenda_aid_for_africa_no_thanks
sleep 1 seconds to avoid blocking
------<134>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AndrewPelling_2016U.stm
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+love+looking+through+people+s+garbage
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+it+s+not+some+creepy+thing++i+m+usually+just+looking+for+old+electronics+stuff+i+can+take+to+my+workshop+and+hack
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=each+one+s+got+three+different+motors++so+now+you+can+build+things+that+move++there+s+switches+so+you+can+turn+things+on+and+off+there+s+even+a+freaking+laser+so+you+can+make+a+cool+robot
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+i+ve+built+a+lot+of+stuff+out+of+garbage++and+some+of+these+things+have+even+been+kind+of+useful++but+here+s+the+thing+for
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+just+a+chance+to+play+to+be+creative+and+build+things+to+amuse+myself+this+is+what+i+love+doing++so+i+just+made+it+part+of+my+day+job
found 1 videos: [['/talks/andrew_pelling_this_scientist_makes_ears_out_of_apples', '2016']]
selected: /talks/andrew_pelling_this_scientist_makes_ears_out_of_apples
sleep 1 seconds to avoid blocking
------<135>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AndrewSolomon_2013P.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=homosexuality+represents+a+misuse+of+the+sexual+faculty++it+is+a+pathetic+little
found 1 videos: [['/talks/andrew_solomon_love_no_matter_what', '2013']]
selected: /talks/andrew_solomon_love_no_matter_what
sleep 2 seconds to avoid blocking
------<136>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AndrewSolomon_2013X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+felt+a+funeral+in+my+brain++and+mourners+to+and+fro
found 1 videos: [['/talks/andrew_solomon_depression_the_secret_we_share', '2013']]
selected: /talks/andrew_solomon_depression_the_secret_we_share
sleep 4 seconds to avoid blocking
------<137>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AndrewSolomon_2014.stm
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+been+struck+over+the+years+by+how+some+people+with+major+challenges+seem+to+draw+strength+from+them
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+ve+heard+the+popular+wisdom+that+that+has+to+do+with+finding+meaning+and+for+a+long+time
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+thought+the+meaning+was+out+there+some+great+truth+waiting+to+be+found
found 3 videos: [['/talks/casey_gerald_the_gospel_of_doubt', '2016'], ['/talks/andrew_solomon_how_the_worst_moments_in_our_lives_make_us_who_we_are', '2014'], ['/talks/al_gore_the_case_for_optimism_on_climate_change', '2016']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+over+time++i+ve+come+to+feel+that+the+truth+is+irrelevant
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+call+it+finding+meaning+but+we+might+better+call+it+forging+meaning
found 2 videos: [['/talks/andrew_solomon_how_the_worst_moments_in_our_lives_make_us_who_we_are', '2014'], ['/talks/tabetha_boyajian_the_most_mysterious_star_in_the_universe', '2016']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+last+book+was+about+how+families+manage+to+deal+with
error: request timeout
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+one+of+the+mothers+i+interviewed+who+had+two+children+with+multiple+severe+disabilities+said+to+me
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+always+give+us+these+little+sayings+like++god+doesn+t+give+you+any+more+than+you+can+handle
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+children+like+ours+are+not+preordained+as+a+gift+they
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=re+a+gift+because+that+s+what+we+have+chosen
error: request timeout
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+our+lives++when+i+was+in+second+grade++bobby+finkel+had+a+birthday+party
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+invited+everyone+in+our+class+but+me
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+mother+assumed+there+had+been+some+sort+of+error+and+she+called+mrs+finkel+who+said+that+bobby+didn+t+like+me
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+didn+t+want+me+at+his+party+and+that+day+my+mom+took+me+to+the+zoo
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+out+for+a+hot+fudge+sundae
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+was+in+seventh+grade++one+of+the+kids+on+my+school+bus+nicknamed+me+percy+as+a+shorthand+for+my+demeanor
found 1 videos: [['/talks/andrew_solomon_how_the_worst_moments_in_our_lives_make_us_who_we_are', '2014']]
selected: /talks/andrew_solomon_how_the_worst_moments_in_our_lives_make_us_who_we_are
sleep 1 seconds to avoid blocking
------<138>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AndrewYoun_2016.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+been+living+in+rural+east+africa+for+about+ten+years++and+i+want+to+share+a+field+perspective+with+you+on+global+poverty
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+believe+that+the+greatest+failure+of+the+human+race+is+the+fact+that+we+ve+left+more+than+one+billion+of+our+members
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+often+seem+like+gigantic+insurmountable+problems++too+big+to+solve
found 1 videos: [['/talks/andrew_youn_3_reasons_why_we_can_win_the_fight_against_poverty', '2016']]
selected: /talks/andrew_youn_3_reasons_why_we_can_win_the_fight_against_poverty
sleep 2 seconds to avoid blocking
------<139>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AndyHobsbawm_2008.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=great+creativity+in+times+of+need+we+need+great+creativity++discuss
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=great+creativity+is+astonishingly+absurdly++rationally+irrationally+powerful
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=great+creativity+can+spread+tolerance++champion+freedom+make+education
error: request timeout
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=great+creativity+can+turn+a+spotlight+on+deprivation+or+show+that+deprivation+ain+t+necessarily+so
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=great+creativity+can+make+politicians+electable+or+parties+unelectable++it+can+make+war+seem+like+tragedy
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+farce+creativity+is+the+meme+maker+that+puts+slogans+on+our
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=phrases+on+our+lips+it+s+the+pathfinder+that+shows+us+a+simple+road+through+an+impenetrable+moral+maze
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=science+is+clever+but+great+creativity+is+something+less+knowable+more+magical
found 1 videos: [['/talks/andy_hobsbawm_do_the_green_thing', '2008']]
selected: /talks/andy_hobsbawm_do_the_green_thing
sleep 5 seconds to avoid blocking
------<140>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AndyPuddicombe_2012S.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+live+in+an+incredibly+busy+world++the+pace+of+life+is+often+frantic+our+minds+are+always+busy+and+we+re+always+doing+something
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+with+that+in+mind+i+d+like+you+just+to+take+a+moment+to+think+when+did+you+last+take+any+time+to+do+nothing
found 5 videos: [['/talks/jeffrey_kluger_the_sibling_bond', '2012'], ['/talks/kitra_cahana_my_father_locked_in_his_body_but_soaring_free', '2014'], ['/talks/lisa_margonelli_the_political_chemistry_of_oil', '2010'], ['/talks/brian_cox_why_we_need_the_explorers', '2010'], ['/talks/john_maeda_how_art_technology_and_design_inform_creative_leaders', '2012']]
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=undisturbed++and+when+i+say+nothing+i+do+mean+nothing+so+that+s+no+emailing+texting+no+internet+no+tv+no+chatting+no+eating+no+reading
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+even+sitting+there+reminiscing+about+the+past+or+planning+for+the+future++simply+doing
found 1 videos: [['/talks/andy_puddicombe_all_it_takes_is_10_mindful_minutes', '2013']]
selected: /talks/andy_puddicombe_all_it_takes_is_10_mindful_minutes
sleep 2 seconds to avoid blocking
------<141>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AndyYen_2014G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=years+ago+scientists+at+cern+created+the+world+wide+web
found 1 videos: [['/talks/andy_yen_think_your_email_s_private_think_again', '2015']]
selected: /talks/andy_yen_think_your_email_s_private_think_again
sleep 3 seconds to avoid blocking
------<142>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AngelaBelcher_2011X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+thought+i+d+talk+a+little+bit+about+how+nature+makes+materials+i+brought+along+with+me+an+abalone+shell+this+abalone+shell+is+a+biocomposite+material+that+s+ninety+eight+percent+by+mass+calcium+carbonate+and+two+percent+by+mass
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+three+thousand+times+tougher+than+its+geological+counterpart+and+a+lot+of+people+might+use
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=structures+like+abalone+shells+like+chalk
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+been+fascinated+by+how+nature+makes+materials+and+there+s+a+lot+of+secrets+to+how+they+do+such+an+exquisite+job+part+of+it+is+that+these+materials+are+are+macroscopic+in+structure
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+they+re+formed+at+the+nano+scale++they+re+formed+at+the+nano+scale+and+they+use
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=something+i+think+is+very+fascinating+is+what+if+you+could+give+life+to+non+living+structures+like+batteries+and+like+solar+cells+what+if+they+had+some+of+the+same+capabilities
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+an+abalone+shell+did+in+terms+of+being+able+to+build+really+exquisite+structures+at+room+temperature+and+room+pressure++using+nontoxic+chemicals+and+adding+no+toxic+materials+back+into+the+environment++so+that+s+kind+of+the+vision+that
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+i+ve+been+thinking+about+and+so+what+if+you+could+grow+a+battery+in+a+petri+dish+or+what+if+you+could+give+genetic+information+to+a+battery+so+that+it+could+actually+become+better+as+a+function+of+time+and+do+so+in+an+environmentally+friendly+way
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+going+back+to+this+abalone+shell+besides+being+nanostructured+one+thing+that+s+fascinating+is+when+a+male+and+female
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=abalone+get+together++they+pass+on+the+genetic+information+that+says+this+is+how+to+build+an+exquisite
found 1 videos: [['/talks/angela_belcher_using_nature_to_grow_batteries', '2011']]
selected: /talks/angela_belcher_using_nature_to_grow_batteries
sleep 1 seconds to avoid blocking
------<143>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AngelaDuckworth_2013S.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=years+old+i+left+a+very+demanding+job+in+management+consulting
found 1 videos: [['/talks/angela_lee_duckworth_grit_the_power_of_passion_and_perseverance', '2013']]
selected: /talks/angela_lee_duckworth_grit_the_power_of_passion_and_perseverance
sleep 3 seconds to avoid blocking
------<144>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AngelaPatton_2012X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+sitting+with+my+girls+and+joy+said+dang
found 1 videos: [['/talks/angela_patton_a_father_daughter_dance_in_prison', '2013']]
selected: /talks/angela_patton_a_father_daughter_dance_in_prison
sleep 2 seconds to avoid blocking
------<145>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AngelicaDass_2016.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+has+been+one+hundred+and+twenty+eight+years+since+the+last+country+in+the+world+abolished+slavery
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+fifty+three+years+since+martin+luther+king+pronounced+his+i+have+a+dream
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+still+live+in+a+world
found 18 videos: [['/talks/magda_sayeg_how_yarn_bombing_grew_into_a_worldwide_movement', '2016'], ['/talks/simon_anholt_which_country_does_the_most_good_for_the_world', '2014'], ['/talks/michelle_knox_talk_about_your_death_while_you_re_still_healthy', '2018'], ['/talks/karen_lloyd_this_deep_sea_mystery_is_changing_our_understanding_of_life', '2018'], ['/talks/jonathan_butterworth_what_s_the_smallest_thing_in_the_universe', '2018'], ['/talks/christopher_ategeka_how_adoption_worked_for_me', '2018'], ['/talks/samantha_nutt_the_real_harm_of_the_global_arms_trade', '2016'], ['/talks/dan_pallotta_the_dream_we_haven_t_dared_to_dream', '2016'], ['/talks/sheryl_sandberg_so_we_leaned_in_now_what', '2014'], ['/talks/grace_kim_how_cohousing_can_make_us_happier_and_live_longer', '2017'], ['/talks/jamila_raqib_the_secret_to_effective_nonviolent_resistance', '2016'], ['/talks/olutimehin_adegbeye_who_belongs_in_a_city', '2017'], ['/talks/theaster_gates_how_to_revive_a_neighborhood_with_imagination_beauty_and_art', '2015'], ['/talks/latif_nasser_you_have_no_idea_where_camels_really_come_from', '2016'], ['/talks/mariano_sigman_and_dan_ariely_how_can_groups_make_good_decisions', '2017'], ['/talks/stephen_petranek_your_kids_might_live_on_mars_here_s_how_they_ll_survive', '2016'], ['/talks/lana_mazahreh_3_thoughtful_ways_to_conserve_water', '2018'], ['/talks/erika_gregory_the_world_doesn_t_need_more_nuclear_weapons', '2017']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=where+the+color+of+our+skin
found 12 videos: [['/talks/angelica_dass_the_beauty_of_human_skin_in_every_color', '2016'], ['/talks/dena_simmons_how_students_of_color_confront_impostor_syndrome', '2016'], ['/talks/riccardo_sabatini_how_to_read_the_genome_and_build_a_human_being', '2016'], ['/talks/claudia_aguirre_what_makes_tattoos_permanent', '2014'], ['/talks/neri_oxman_design_at_the_intersection_of_technology_and_biology', '2015'], ['/talks/taiye_selasi_don_t_ask_where_i_m_from_ask_where_i_m_a_local', '2015'], ['/talks/michael_rubinstein_see_invisible_motion_hear_silent_sounds', '2014'], ['/talks/ian_barnes_what_archaeology_and_dna_can_teach_us_about_prehistoric_migration', '2018'], ['/talks/robert_swan_let_s_save_the_last_pristine_continent', '2015'], ['/talks/kandice_sumner_how_america_s_public_schools_keep_kids_in_poverty', '2016'], ['/talks/sayu_bhojwani_immigrant_voices_make_democracy_stronger', '2016'], ['/talks/sally_kohn_what_we_can_do_about_the_culture_of_hate', '2018']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+only+gives+a+first+impression++but+a+lasting+one+that+remains
found 1 videos: [['/talks/angelica_dass_the_beauty_of_human_skin_in_every_color', '2016']]
selected: /talks/angelica_dass_the_beauty_of_human_skin_in_every_color
sleep 5 seconds to avoid blocking
------<146>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AngeloVermeulen_2014U.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+am+multidisciplinary+as+a+scientist++i+ve+been+a+crew+commander+for+a+nasa+mars+simulation+last+year
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+as+an+artist++i+create+multicultural
found 1 videos: [['/talks/angelo_vermeulen_how_to_go_to_space_without_having_to_go_to_space', '2015']]
selected: /talks/angelo_vermeulen_how_to_go_to_space_without_having_to_go_to_space
sleep 5 seconds to avoid blocking
------<147>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AnilAnanthaswamy_2010P.stm
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=today+about+what+i+think+is+one+of+the+greatest+adventures+human+beings+have+embarked+upon+which+is+the+quest+to+understand+the+universe+and+our+place+in+it+my+own+interest+in+this+subject
found 1 videos: [['/talks/anil_ananthaswamy_what_it_takes_to_do_extreme_astrophysics', '2011']]
selected: /talks/anil_ananthaswamy_what_it_takes_to_do_extreme_astrophysics
sleep 3 seconds to avoid blocking
------<148>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AnilGupta_2009I.stm
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+villages+in+the+slums+in+the+hinterland+of+the+country+who+have+solved+problems+through+their+own+genius
error: request timeout
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+one+third+of+india+about+two+hundred+districts+that+he+mentioned+were+ungovernable
found 1 videos: [['/talks/anil_gupta_india_s_hidden_hotbeds_of_invention', '2010']]
selected: /talks/anil_gupta_india_s_hidden_hotbeds_of_invention
sleep 1 seconds to avoid blocking
------<149>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AniLiu_2016X.stm
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=could+sense+the+toxicity+levels+in+the+soil+and+express+that+toxicity+through+the+color+of+its+leaves
found 1 videos: [['/talks/ani_liu_smelfies_and_other_experiments_in_synthetic_biology', '2017']]
selected: /talks/ani_liu_smelfies_and_other_experiments_in_synthetic_biology
sleep 3 seconds to avoid blocking
------<150>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AnjaliTripathi_2015X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+the+stars+at+night+it+s+amazing+what+you+can+see+it+s+beautiful
found 2 videos: [['/talks/harry_baker_a_love_poem_for_lonely_prime_numbers', '2015'], ['/talks/gretchen_carlson_david_brooks_political_common_ground_in_a_polarized_united_states', '2017']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+what+s+more+amazing+is+what+you+can+t+see+because+what+we+know+now+is+that+around+every+star+or+almost+every+star+there+s+a+planet
error: request timeout
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+what+this+picture+isn+t+showing+you+are+all+the+planets+that+we+know+about+out+there+in+space
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+when+we+think+about+planets+we+tend+to+think+of+faraway+things+that+are+very+different+from+our+own++but+here+we+are+on+a+planet
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+there+are+so+many+things+that+are+amazing+about+earth+that+we+re+searching+far+and+wide+to+find+things+that+are+like+that
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+when+we+re+searching+we+re+finding+amazing+things
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+tell+you+about+an+amazing+thing+here+on+earth
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+is+that+every+minute+four+hundred+pounds+of+hydrogen+and+almost+seven+pounds+of+helium
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=escape+from+earth+into+space+and+this+is+gas
found 5 videos: [['/talks/anjali_tripathi_why_earth_may_someday_look_like_mars', '2016'], ['/talks/lieven_scheire_how_quantum_mechanics_explains_global_warming', '2014'], ['/talks/kate_stafford_how_human_noise_affects_ocean_habitats', '2017'], ['/talks/nick_bostrom_what_happens_when_our_computers_get_smarter_than_we_are', '2015'], ['/talks/antonio_donato_nobre_the_magic_of_the_amazon_a_river_that_flows_invisibly_all_around_us', '2014']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+is+going+off+and+never+coming+back++so+hydrogen+helium+and+many+other+things+make+up+what+s+known+as+the+earth
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+atmosphere+is+just+these+gases+that+form+a+thin+blue+line+that+s+seen+here+from+the+international+space+station+a+photograph+that+some+astronauts+took
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+tenuous+veneer+around+our+planet+is+what+allows+life+to+flourish++it+protects+our+planet+from+too+many+impacts+from+meteorites+and+the+like
found 1 videos: [['/talks/anjali_tripathi_why_earth_may_someday_look_like_mars', '2016']]
selected: /talks/anjali_tripathi_why_earth_may_someday_look_like_mars
sleep 2 seconds to avoid blocking
------<151>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AnnaDeavereSmith_2005.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+word+often+enough+it+becomes+you
found 3 videos: [['/talks/anna_deavere_smith_four_american_characters', '2007'], ['/talks/rick_warren_a_life_of_purpose', '2006'], ['/talks/carl_honore_in_praise_of_slowness', '2007']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+having+grown+up+in+a+segregated+city+baltimore+maryland
found 1 videos: [['/talks/anna_deavere_smith_four_american_characters', '2007']]
selected: /talks/anna_deavere_smith_four_american_characters
sleep 5 seconds to avoid blocking
------<152>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AnnaMracekDietrich_2011G.stm
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+ve+wanted+to+do+this+for+about+a+hundred+years+and+there+are+historic+attempts+that+have+had+some+level+of+technical+success
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=t+yet+gotten+to+the+point+where+on+your+way+here+this+morning+you+see+something+that+really+truly+seamlessly+integrates+the+two+dimensional+world+that+we+re+comfortable+in+with+the+three+dimensional+sky+above+us+that+i+don+t+know+about+you+but+i+really+enjoy+spending+time+in
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+looked+at+the+historical+attempts+that+had+been+out+there+and+realized+that+despite+the+fact+that+we+have+a+lot+of+modern+innovations+to+draw+on+today+that+weren+t+available+previously+we+have+modern+composite+materials+we+have+aircraft
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=engines+that+get+good+fuel+economy+and+have+better+power+to+rate+ratios+than+have+ever+been+available
found 1 videos: [['/talks/anna_mracek_dietrich_a_plane_you_can_drive', '2011']]
selected: /talks/anna_mracek_dietrich_a_plane_you_can_drive
sleep 3 seconds to avoid blocking
------<153>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AnnCooper_2007P.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+thing+with+school+lunch+is+it+s+a+social+justice+issue++i+m+the+director+of+nutrition+services+for+the+berkeley+unified+school+district+i+have+ninety+employees+and+seventeen+locations+nine+thousand+six+hundred+kids+i+m+doing+seven+thousand+one+hundred+meals+a+day
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+ve+been+doing+it+for+two+years+trying+to+change+how+we+feed+kids+in+america+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+s+what+i+want+to+talk+to+you+a+little+bit+about+today+these+are+some+of+my+kids+with+a+salad+bar+i+put+salad+bars+in+all+of+our+schools+when+i+got+there+everyone+says+it+couldn+t+be+done+little+kids+couldn+t+eat+off+the+salad
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=bar+big+kids+would+spit+in+it+neither+happened+when+i+took+over+this+i+tried+to+really+figure+out+like+what+my+vision+would+be+how+do+we+really+change+children+s+relationship+to+food+and+i+ll+tell+you+why+we+need+to+change+it+but+we+absolutely+have+to+change+it+and+what+i+came+to+understand
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+we+needed+to+teach+children+the+symbiotic+relationship+between+a+healthy+planet+healthy+food+and+healthy+kids+and+that+if+we+don+t+do+that+the+antithesis
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=although+we+ve+heard+otherwise+is+we+re+really+going+to+become+extinct+because+we+re+feeding+our+children+to+death+that+s+my+premise+we+re+seeing+sick+kids+get+sicker+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+reason+this+is+happening+by+and+large+is+because+of+our+food+system+and+the+way+the+government+commodifies+food+the+way+the+government+oversees+our+food++the+way+the
found 1 videos: [['/talks/ann_cooper_what_s_wrong_with_school_lunches', '2008']]
selected: /talks/ann_cooper_what_s_wrong_with_school_lunches
sleep 4 seconds to avoid blocking
------<154>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AnneCurzan_2014X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+start+by+telling+you+a+little+bit+about+my+social+life
found 16 videos: [['/talks/kang_lee_can_you_really_tell_if_a_kid_is_lying', '2016'], ['/talks/jane_mcgonigal_the_game_that_can_give_you_10_extra_years_of_life', '2012'], ['/talks/hannah_fry_is_life_really_that_complex', '2012'], ['/talks/peter_singer_the_why_and_how_of_effective_altruism', '2013'], ['/talks/hilary_cottam_social_services_are_broken_how_we_can_fix_them', '2015'], ['/talks/renata_salecl_our_unhealthy_obsession_with_choice', '2014'], ['/talks/jeremy_howard_the_wonderful_and_terrifying_implications_of_computers_that_can_learn', '2014'], ['/talks/james_lyne_everyday_cybercrime_and_what_you_can_do_about_it', '2013'], ['/talks/ami_klin_a_new_way_to_diagnose_autism', '2012'], ['/talks/sophie_scott_why_we_laugh', '2015'], ['/talks/andrew_solomon_love_no_matter_what', '2013'], ['/talks/sarah_jones_one_woman_five_characters_and_a_sex_lesson_from_the_future', '2015'], ['/talks/rachel_botsman_we_ve_stopped_trusting_institutions_and_started_trusting_strangers', '2016'], ['/talks/eric_x_li_a_tale_of_two_political_systems', '2013'], ['/talks/margaret_heffernan_forget_the_pecking_order_at_work', '2015'], ['/talks/giles_duley_when_a_reporter_becomes_the_story', '2012']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+i+know+may+not+seem+relevant+but+it+is
found 14 videos: [['/talks/yanis_varoufakis_capitalism_will_eat_democracy_unless_we_speak_up', '2016'], ['/talks/lisa_nip_how_humans_could_evolve_to_survive_in_space', '2016'], ['/talks/anne_curzan_what_makes_a_word_real', '2014'], ['/talks/jennifer_senior_for_parents_happiness_is_a_very_high_bar', '2014'], ['/talks/chris_mcknett_the_investment_logic_for_sustainability', '2014'], ['/talks/tim_urban_inside_the_mind_of_a_master_procrastinator', '2016'], ['/talks/rachel_botsman_the_currency_of_the_new_economy_is_trust', '2012'], ['/talks/tom_wujec_got_a_wicked_problem_first_tell_me_how_you_make_toast', '2015'], ['/talks/stephen_coleman_non_lethal_weapons_a_moral_hazard', '2012'], ['/talks/el_seed_street_art_with_a_message_of_hope_and_peace', '2015'], ['/talks/peter_singer_the_why_and_how_of_effective_altruism', '2013'], ['/talks/steven_wise_chimps_have_feelings_and_thoughts_they_should_also_have_rights', '2015'], ['/talks/e_o_wilson_advice_to_a_young_scientist', '2012'], ['/talks/richard_ledgett_the_nsa_responds_to_edward_snowden_s_ted_talk', '2014']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+people+meet+me+at+parties+and+they+find+out+that+i+m+an+english+professor+who+specializes+in+language++they+generally+have+one+of+two
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=reactions+one+set+of+people+look+frightened
found 3 videos: [['/talks/anne_curzan_what_makes_a_word_real', '2014'], ['/talks/kelli_swazey_life_that_doesn_t_end_with_death', '2013'], ['/talks/karen_thompson_walker_what_fear_can_teach_us', '2013']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+often+say+something+like+oh+i+d+better+be+careful+what+i+say++i+m+sure+you+ll+hear+every+mistake+i+make
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+wait+for+me+to+go+away+and+talk+to+someone+else+the+other+set+of+people
found 9 videos: [['/talks/andrew_solomon_depression_the_secret_we_share', '2013'], ['/talks/stephen_burt_why_people_need_poetry', '2014'], ['/talks/jay_silver_hack_a_banana_make_a_keyboard', '2013'], ['/talks/ricardo_semler_how_to_run_a_company_with_almost_no_rules', '2015'], ['/talks/dave_isay_everyone_around_you_has_a_story_the_world_needs_to_hear', '2015'], ['/talks/dan_pacholke_how_prisons_can_help_inmates_live_meaningful_lives', '2014'], ['/talks/jane_fonda_and_lily_tomlin_a_hilarious_celebration_of_lifelong_female_friendship', '2015'], ['/talks/anne_curzan_what_makes_a_word_real', '2014'], ['/talks/juno_mac_the_laws_that_sex_workers_really_want', '2016']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+their+eyes+light+up+and+they+say+you+are+just+the+person+i+want+to+talk+to
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+they+tell+me+about+whatever+it+is+they+think+is+going+wrong+with+the+english+language
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+couple+of+weeks+ago+i+was+at+a+dinner+party+and+the+man+to+my+right+started+telling+me+about+all+the+ways+that+the+internet+is+degrading+the+english+language
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+brought+up+facebook++and+he+said+to
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+mean+is+that+even+a+real+word
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+pause+on+that+question+what+makes+a+word+real
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+dinner+companion+and+i+both+know+what+the+verb
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+has+the+authority+to+make+those+kinds+of+official+decisions+about+words+anyway+those+are+the+questions+i+want+to+talk+about+today
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+most+people+when+they+say+a+word+isn+t+real++what+they+mean+is+it+doesn+t+appear+in+a+standard+dictionary
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+of+course+raises+a+host+of+other+questions+including
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=before+i+go+any+further++let+me+clarify+my+role+in+all+of+this+i+do+not+write+dictionaries
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+do+however+collect+new+words+much+the+way+dictionary+editors+do
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+great+thing+about+being+a+historian+of+the+english+language+is+that+i+get+to+call+this+research
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+teach+the+history+of+the+english+language++i+require+that+students
found 1 videos: [['/talks/anne_curzan_what_makes_a_word_real', '2014']]
selected: /talks/anne_curzan_what_makes_a_word_real
sleep 5 seconds to avoid blocking
------<155>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AnneLamott_2017.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=grandson+sleeps+just+down+the+hall+from+me+and+he+wakes+up+a+lot+of+mornings+and+he+says+you+know+this+could+be+the+best+day+ever
found 1 videos: [['/talks/anne_lamott_12_truths_i_learned_from_life_and_writing', '2017']]
selected: /talks/anne_lamott_12_truths_i_learned_from_life_and_writing
sleep 5 seconds to avoid blocking
------<156>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AnneMarieSlaughter_2013G.stm
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=did+not+come+all+at+once+in+two+thousand+and+ten+i+had+the+chance+to+be+considered+for+promotion
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=from+my+job+as+director+of+policy+planning+at+the+u+s+state+department+this+was+my
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+lean+in+to+push+myself+forward
found 11 videos: [['/talks/anne_marie_slaughter_can_we_all_have_it_all', '2014'], ['/talks/rich_benjamin_my_road_trip_through_the_whitest_towns_in_america', '2015'], ['/talks/linda_cliatt_wayman_how_to_fix_a_broken_school_lead_fearlessly_love_hard', '2015'], ['/talks/steve_howard_let_s_go_all_in_on_selling_sustainability', '2013'], ['/talks/karen_thompson_walker_what_fear_can_teach_us', '2013'], ['/talks/shereen_el_feki_a_little_told_tale_of_sex_and_sensuality', '2014'], ['/talks/dan_reisel_the_neuroscience_of_restorative_justice', '2014'], ['/talks/marcus_byrne_the_dance_of_the_dung_beetle', '2012'], ['/talks/bruce_feiler_the_council_of_dads', '2011'], ['/talks/stanley_mcchrystal_listen_learn_then_lead', '2011'], ['/talks/steve_ramirez_and_xu_liu_a_mouse_a_laser_beam_a_manipulated_memory', '2013']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+what+are+really+only+a+handful+of+the+very+top+foreign+policy+jobs
found 2 videos: [['/talks/anne_marie_slaughter_can_we_all_have_it_all', '2014'], ['/talks/manal_al_sharif_a_saudi_woman_who_dared_to_drive', '2013']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+had+just+finished+a+big+18+month+project+for+secretary+clinton++successfully
found 1 videos: [['/talks/anne_marie_slaughter_can_we_all_have_it_all', '2014']]
selected: /talks/anne_marie_slaughter_can_we_all_have_it_all
sleep 3 seconds to avoid blocking
------<157>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AnneMilgram_2013S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+became+the+attorney+general+of+the+state+of+new+jersey
found 2 videos: [['/talks/anne_milgram_why_smart_statistics_are_the_key_to_fighting_crime', '2014'], ['/talks/alice_goffman_how_we_re_priming_some_kids_for_college_and_others_for_prison', '2015']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=before+that+i+d+been+a+criminal+prosecutor+first+in+the+manhattan+district+attorney+s+office++and+then+at+the+united+states+department+of+justice
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+when+i+became+the+attorney+general+two+things+happened+that+changed+the+way+i+see+criminal
found 2 videos: [['/talks/anne_milgram_why_smart_statistics_are_the_key_to_fighting_crime', '2014'], ['/talks/william_black_how_to_rob_a_bank_from_the_inside_that_is', '2014']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+first+is+that+i+asked+what+i+thought+were+really+basic+questions
found 16 videos: [['/talks/rebecca_onie_what_if_our_health_care_system_kept_us_healthy', '2012'], ['/talks/tony_fadell_the_first_secret_of_design_is_noticing', '2015'], ['/talks/diane_kelly_what_we_didn_t_know_about_penis_anatomy', '2012'], ['/talks/beau_lotto_amy_o_toole_science_is_for_everyone_kids_included', '2012'], ['/talks/anne_milgram_why_smart_statistics_are_the_key_to_fighting_crime', '2014'], ['/talks/heather_brooke_my_battle_to_expose_government_corruption', '2012'], ['/talks/suzana_herculano_houzel_what_is_so_special_about_the_human_brain', '2013'], ['/talks/david_pizarro_the_strange_politics_of_disgust', '2012'], ['/talks/hans_and_ola_rosling_how_not_to_be_ignorant_about_the_world', '2014'], ['/talks/lauren_zalaznick_the_conscience_of_television', '2011'], ['/talks/edward_snowden_here_s_how_we_take_back_the_internet', '2014'], ['/talks/philip_evans_how_data_will_transform_business', '2014'], ['/talks/niall_ferguson_the_6_killer_apps_of_prosperity', '2011'], ['/talks/toni_griffin_a_new_vision_for_rebuilding_detroit', '2013'], ['/talks/melinda_gates_let_s_put_birth_control_back_on_the_agenda', '2012'], ['/talks/sophie_scott_why_we_laugh', '2015']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+wanted+to+understand+who+we+were+arresting+who+we+were+charging+and+who+we+were+putting+in+our+nation+s+jails+and+prisons
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+also+wanted+to+understand+if+we+were+making+decisions+in+a+way+that+made+us+safer
found 6 videos: [['/talks/anne_milgram_why_smart_statistics_are_the_key_to_fighting_crime', '2014'], ['/talks/zeynep_tufekci_online_social_change_easy_to_organize_hard_to_win', '2015'], ['/talks/dennis_hong_making_a_car_for_blind_drivers', '2011'], ['/talks/chris_urmson_how_a_driverless_car_sees_the_road', '2015'], ['/talks/chelsea_shields_how_i_m_working_for_change_inside_my_church', '2015'], ['/talks/oren_yakobovich_hidden_cameras_that_film_injustice_in_the_world_s_most_dangerous_places', '2014']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+couldn+t+get+this
found 12 videos: [['/talks/charles_hazlewood_trusting_the_ensemble', '2011'], ['/talks/wayne_mcgregor_a_choreographer_s_creative_process_in_real_time', '2012'], ['/talks/jack_horner_building_a_dinosaur_from_a_chicken', '2011'], ['/talks/alex_wissner_gross_a_new_equation_for_intelligence', '2014'], ['/talks/jack_horner_where_are_the_baby_dinosaurs', '2012'], ['/talks/david_chalmers_how_do_you_explain_consciousness', '2014'], ['/talks/joseph_desimone_what_if_3d_printing_was_100x_faster', '2015'], ['/talks/geena_rocero_why_i_must_come_out', '2014'], ['/talks/claron_mcfadden_singing_the_primal_mystery', '2011'], ['/talks/jill_shargaa_please_please_people_let_s_put_the_awe_back_in_awesome', '2014'], ['/talks/matthew_carter_my_life_in_typefaces', '2014'], ['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+turned+out+that+most+big+criminal+justice+agencies+like+my+own+didn+t+track+the+things+that+matter
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+after+about+a+month+of+being+incredibly+frustrated+i+walked+down+into+a+conference+room+that+was+filled+with+detectives
found 1 videos: [['/talks/anne_milgram_why_smart_statistics_are_the_key_to_fighting_crime', '2014']]
selected: /talks/anne_milgram_why_smart_statistics_are_the_key_to_fighting_crime
sleep 5 seconds to avoid blocking
------<158>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AnnetteHeuser_2013G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=almost+two+years+ago++i+was+driving+in+my+car+in+germany++and+i+turned+on+the+radio
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=europe+at+the+time+was+in+the+middle+of+the+euro+crisis++and+all+the+headlines+were+about+european+countries
error: request timeout
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+united+states+i+listened+and+thought+to+myself+what+are+these+rating+agencies++and+why+is+everybody+so+upset+about+their+work
found 1 videos: [['/talks/annette_heuser_the_3_agencies_with_the_power_to_make_or_break_economies', '2014']]
selected: /talks/annette_heuser_the_3_agencies_with_the_power_to_make_or_break_economies
sleep 2 seconds to avoid blocking
------<159>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AnnieLennox_2010G.stm
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+to+how+i+have+become+an+hiv++aids+campaigner+and+this+is+the+name+of+my+campaign+sing+campaign
found 1 videos: [['/talks/annie_lennox_why_i_am_an_hiv_aids_activist', '2010']]
selected: /talks/annie_lennox_why_i_am_an_hiv_aids_activist
sleep 3 seconds to avoid blocking
------<160>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AnnieMurphyPaul_2011G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+subject+today+is+learning+and+in+that+spirit+i+want+to+spring+on+you+all+a+pop+quiz++ready
found 1 videos: [['/talks/annie_murphy_paul_what_we_learn_before_we_re_born', '2011']]
selected: /talks/annie_murphy_paul_what_we_learn_before_we_re_born
sleep 1 seconds to avoid blocking
------<161>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AnnMarieThomas_2011.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+a+huge+believer+in+hands+on+education
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+you+have+to+have+the+right+tools++if+i+m+going+to+teach+my+daughter+about+electronics+i+m+not+going+to+give+her+a+soldering+iron++and+similarly++she+finds+prototyping+boards+really+frustrating+for+her+little+hands
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+my+wonderful+student+sam+and
found 15 videos: [['/talks/sam_richards_a_radical_experiment_in_empathy', '2011'], ['/talks/annmarie_thomas_hands_on_science_with_squishy_circuits', '2011'], ['/talks/eric_dishman_health_care_should_be_a_team_sport', '2013'], ['/talks/ken_goldberg_4_lessons_from_robots_about_being_human', '2012'], ['/talks/kiran_sethi_kids_take_charge', '2010'], ['/talks/sarah_jones_a_one_woman_global_village', '2009'], ['/talks/abraham_verghese_a_doctor_s_touch', '2011'], ['/talks/dan_ariely_our_buggy_moral_code', '2009'], ['/talks/john_maeda_my_journey_in_design', '2009'], ['/talks/young_ha_kim_be_an_artist_right_now', '2013'], ['/talks/sir_ken_robinson_how_to_escape_education_s_death_valley', '2013'], ['/talks/mallika_sarabhai_dance_to_change_the_world', '2009'], ['/talks/hans_rosling_asia_s_rise_how_and_when', '2009'], ['/talks/chimamanda_ngozi_adichie_the_danger_of_a_single_story', '2009'], ['/talks/eleanor_longden_the_voices_in_my_head', '2013']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+decided+to+look+at+the+most+tangible+thing+we+could+think+of+play+doh+and+so+we+spent+a+summer
found 1 videos: [['/talks/annmarie_thomas_hands_on_science_with_squishy_circuits', '2011']]
selected: /talks/annmarie_thomas_hands_on_science_with_squishy_circuits
sleep 1 seconds to avoid blocking
------<162>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AnnMorgan_2015G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+often+said+that+you+can+tell+a+lot+about+a+person+by+looking+at+what+s+on+their+bookshelves
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+do+my+bookshelves+say+about+me++well+when+i+asked+myself+this+question+a
found 1 videos: [['/talks/ann_morgan_my_year_reading_a_book_from_every_country_in_the_world', '2015']]
selected: /talks/ann_morgan_my_year_reading_a_book_from_every_country_in_the_world
sleep 3 seconds to avoid blocking
------<163>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AnoteTong_2015Z.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+could+start+by+just+telling+us+about+your+country+it
found 15 videos: [['/talks/deeyah_khan_what_we_don_t_know_about_europe_s_muslim_kids', '2017'], ['/talks/thomas_insel_toward_a_new_understanding_of_mental_illness', '2013'], ['/talks/keith_chen_could_your_language_affect_your_ability_to_save_money', '2013'], ['/talks/sebastian_bortnik_the_conversation_we_re_not_having_about_digital_child_abuse', '2017'], ['/talks/kang_lee_can_you_really_tell_if_a_kid_is_lying', '2016'], ['/talks/mellody_hobson_color_blind_or_color_brave', '2014'], ['/talks/meera_vijayann_find_your_voice_against_gender_violence', '2014'], ['/talks/ian_bremmer_how_the_us_should_use_its_superpower_status', '2016'], ['/talks/anote_tong_my_country_will_be_underwater_soon_unless_we_work_together', '2015'], ['/talks/nadine_hachach_haram_how_augmented_reality_could_change_the_future_of_surgery', '2017'], ['/talks/alicia_garza_patrisse_cullors_and_opal_tometi_an_interview_with_the_founders_of_black_lives_matter', '2016'], ['/talks/joy_sun_should_you_donate_differently', '2014'], ['/talks/miguel_nicolelis_brain_to_brain_communication_has_arrived_how_we_did_it', '2015'], ['/talks/hilary_cottam_social_services_are_broken_how_we_can_fix_them', '2015'], ['/talks/simon_anholt_which_country_does_the_most_good_for_the_world', '2014']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+three+dots+there+on+the+globe++those+dots+are+pretty+huge+i+think+each+one+is+about+the+size+of+california+tell+us+about+kiribati+anote+tong+well
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+me+first+begin+by+saying+how+deeply+grateful+i+am+for+this+opportunity+to+share+my+story
found 1 videos: [['/talks/anote_tong_my_country_will_be_underwater_soon_unless_we_work_together', '2015']]
selected: /talks/anote_tong_my_country_will_be_underwater_soon_unless_we_work_together
sleep 1 seconds to avoid blocking
------<164>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AnthonyAtala_2009P.stm
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+painting+that+hangs+at+the+countway+library+at+harvard+medical+school
found 1 videos: [['/talks/anthony_atala_growing_new_organs', '2010']]
selected: /talks/anthony_atala_growing_new_organs
sleep 1 seconds to avoid blocking
------<165>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AnthonyAtala_2011.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=actually+a+major+health+crisis+today+in+terms+of+the+shortage+of+organs
found 1 videos: [['/talks/anthony_atala_printing_a_human_kidney', '2011']]
selected: /talks/anthony_atala_printing_a_human_kidney
sleep 1 seconds to avoid blocking
------<166>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AnthonyDRomero_2017.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=silicon+valley+is+obsessed+with+disruption
found 1 videos: [['/talks/anthony_d_romero_this_is_what_democracy_looks_like', '2017']]
selected: /talks/anthony_d_romero_this_is_what_democracy_looks_like
sleep 1 seconds to avoid blocking
------<167>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AnthonyGoldbloom_2016U.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+this+is+my+niece+her+name+is+yahli+she+is+nine+months+old
found 1 videos: [['/talks/anthony_goldbloom_the_jobs_we_ll_lose_to_machines_and_the_ones_we_won_t', '2016']]
selected: /talks/anthony_goldbloom_the_jobs_we_ll_lose_to_machines_and_the_ones_we_won_t
sleep 5 seconds to avoid blocking
------<168>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AntonioDamasio_2011.stm
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+to+talk+about+the+wonder+and+the+mystery
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=minds+with+a+complete+sense+of+self+and+a+complete+sense+of+our+own+existence++yet+we+hardly+ever+pause+to+consider+this+wonder+we+should++in+fact+because+without
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=having+this+possibility+of+conscious+minds++we+would+have+no+knowledge+whatsoever+about+our+humanity+we+would+have+no+knowledge+whatsoever+about
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+would+have+no+pains+but+also+no+joys++we+would+have+no
found 7 videos: [['/talks/antonio_damasio_the_quest_to_understand_consciousness', '2011'], ['/talks/anil_gupta_india_s_hidden_hotbeds_of_invention', '2010'], ['/talks/neil_pasricha_the_3_a_s_of_awesome', '2011'], ['/talks/joseph_kim_the_family_i_lost_in_north_korea_and_the_family_i_gained', '2013'], ['/talks/hanna_rosin_new_data_on_the_rise_of_women', '2010'], ['/talks/edi_rama_take_back_your_city_with_paint', '2013'], ['/talks/robin_ince_science_versus_wonder', '2011']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=access+to+love+or+to+the+ability+to+create
found 12 videos: [['/talks/antonio_damasio_the_quest_to_understand_consciousness', '2011'], ['/talks/amy_webb_how_i_hacked_online_dating', '2013'], ['/talks/peter_diamandis_abundance_is_our_future', '2012'], ['/talks/iwan_baan_ingenious_homes_in_unexpected_places', '2013'], ['/talks/eve_ensler_embrace_your_inner_girl', '2010'], ['/talks/jay_bradner_open_source_cancer_research', '2011'], ['/talks/amber_case_we_are_all_cyborgs_now', '2011'], ['/talks/denis_dutton_a_darwinian_theory_of_beauty', '2010'], ['/talks/emily_pilloton_teaching_design_for_change', '2010'], ['/talks/dale_dougherty_we_are_makers', '2011'], ['/talks/marc_goodman_a_vision_of_crimes_in_the_future', '2012'], ['/talks/avi_rubin_all_your_devices_can_be_hacked', '2012']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+of+course++scott+fitzgerald+said+famously+that+he+who+invented+consciousness
found 1 videos: [['/talks/antonio_damasio_the_quest_to_understand_consciousness', '2011']]
selected: /talks/antonio_damasio_the_quest_to_understand_consciousness
sleep 2 seconds to avoid blocking
------<169>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AntonioGuterres_2015G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+s+start+with+a+figure++during+two+thousand+and+fifteen++almost+one+million+refugees+and+migrants+arrived+in+europe+from+many+different+countries+of+course+from+syria+and+iraq
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=afghanistan+and+bangladesh+and+eritrea+and+elsewhere+and+there+have+been+reactions+of+two+different+kinds+welcoming+parties+and
found 1 videos: [['/talks/antonio_guterres_refugees_have_the_right_to_be_protected', '2015']]
selected: /talks/antonio_guterres_refugees_have_the_right_to_be_protected
sleep 3 seconds to avoid blocking
------<170>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AntonyGormley_2012G.stm
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+may+think+that+sculptors+well+they+deal+with+meta+they+deal+with+objects++they+deal+with
found 1 videos: [['/talks/antony_gormley_sculpted_space_within_and_without', '2012']]
selected: /talks/antony_gormley_sculpted_space_within_and_without
sleep 3 seconds to avoid blocking
------<171>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AnupamMishra_2009I.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=should+not+move+quickly+to+the+desert++so++first+a+small+housekeeping+announcement++please+switch+off
found 1 videos: [['/talks/anupam_mishra_the_ancient_ingenuity_of_water_harvesting', '2009']]
selected: /talks/anupam_mishra_the_ancient_ingenuity_of_water_harvesting
sleep 4 seconds to avoid blocking
------<172>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AomawaShields_2015U.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+am+in+search+of+another+planet+in+the+universe+where+life+exists++i+can+t+see+this+planet+with+my+naked+eyes
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+even+with+the+most+powerful+telescopes+we+currently+possess
found 1 videos: [['/talks/aomawa_shields_how_we_ll_find_life_on_other_planets', '2016']]
selected: /talks/aomawa_shields_how_we_ll_find_life_on_other_planets
sleep 1 seconds to avoid blocking
------<173>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AparnaRao_2011G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+take+you+through+glimpses+of+about+eight+of+my+projects+done+in+collaboration+with+danish+artist+soren+pors+we+call+ourselves+pors+and+rao++and+we+live+and+work+in+india
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+d+like+to+begin+with+my+very+first+object+which+i+call+the+uncle+phone+and+it+was+inspired+by+my+uncle
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+peculiar+habit+of+constantly+asking+me+to+do+things+for+him+almost+like+i+were+an+extension+of+his+body+to+turn+on+the+lights+or+to+bring+him+a+glass+of+water+a+pack+of+cigarettes
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+as+i+grew+up+it+became+worse+and+worse+and+i+started+to+think+of+it+as+a+form+of+control+but+of+course+i+could+never+say+anything+because
found 2 videos: [['/talks/aparna_rao_high_tech_art_with_a_sense_of_humor', '2011'], ['/talks/bruce_feiler_agile_programming_for_your_family', '2013']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+uncle+is+a+respected+figure+in+the+indian+family++and+the+situation+that+irked+me+and+mystified+me+the+most+was+his+use+of+a+landline+telephone
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+receiver+and+expect+me+to+dial+a+number+for+him
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+as+a+response+and+as+a+gift+to+my+uncle+i+made+him+the+uncle+phone
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+so+long+that+it+requires+two+people+to+use+it+it+s+exactly+the+way+my+uncle+uses+a+phone+that+s+designed+for+one+person+but
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+problem+is+that+when+i+left+home+and+went+to+college+i+started+missing+his+commands
found 1 videos: [['/talks/aparna_rao_high_tech_art_with_a_sense_of_humor', '2011']]
selected: /talks/aparna_rao_high_tech_art_with_a_sense_of_humor
sleep 2 seconds to avoid blocking
------<174>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AparnaRao_2013U.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+to+share+some+works+in+progress++since+we+are+still+realizing+these+works+we+are+largely+working+within+the+realm+of+intuition+and+mystery+still
found 1 videos: [['/talks/aparna_rao_art_that_craves_your_attention', '2014']]
selected: /talks/aparna_rao_art_that_craves_your_attention
sleep 5 seconds to avoid blocking
------<175>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ApolloRobbins_2013G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=do+you+think+it+s+possible+to+control+someone+s+attention
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=even+more+than+that+what+about+predicting+human+behavior+i+think+those+are+interesting+ideas+for+me+that+would+be+the
found 1 videos: [['/talks/apollo_robbins_the_art_of_misdirection', '2013']]
selected: /talks/apollo_robbins_the_art_of_misdirection
sleep 1 seconds to avoid blocking
------<176>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AriannaHuffington_2010W.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=big+idea+is+a+very+very+small+idea+that+can+unlock+billions+of+big+ideas
found 3 videos: [['/talks/arianna_huffington_how_to_succeed_get_more_sleep', '2011'], ['/talks/josette_sheeran_ending_hunger_now', '2011'], ['/talks/melinda_gates_what_nonprofits_can_learn_from_coca_cola', '2010']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+are+at+the+moment+dormant+inside+us++and+my+little+idea+that+will+do+that+is+sleep
found 1 videos: [['/talks/arianna_huffington_how_to_succeed_get_more_sleep', '2011']]
selected: /talks/arianna_huffington_how_to_succeed_get_more_sleep
sleep 4 seconds to avoid blocking
------<177>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ArielGarten_2011X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=has+been+around+since+the+ancient+greeks+some+attribute+this+golden+world+knowledge+to+plato++others+to+pythagoras+but
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+truth+is+it+doesn+t+really+matter+which+sage+said+it+first+because+it+s+still
error: request timeout
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=almost+to+the+point+of+being+meaningless++but+it+rings+familiar+and+true+doesn+t+it+know+thyself
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+understand+this+timeless+dictum+as+a+statement+about+the+problems+or+more+exactly+the+confusions+of+consciousness
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+always+been+fascinated+with+knowing+the+self++this
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=led+me+to+submerge+myself+in+art+study+neuroscience+and+later+to+become+a+psychotherapist
found 1 videos: [['/talks/ariel_garten_know_thyself_with_a_brain_scanner', '2011']]
selected: /talks/ariel_garten_know_thyself_with_a_brain_scanner
sleep 1 seconds to avoid blocking
------<178>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ArisVenetikidis_2012X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+i+do+is+i+organize+information+i+m+a+graphic+designer++professionally+i+try+to+make+sense
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=often+of+things+that+don+t+make+much+sense+themselves++so+my+father+might+not+understand+what+it+is+that+i+do+for+a
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=his+part+of+my+ancestry+has+been+farmers+he+s+part+of+this+ethnic+minority+called+the+pontic+greeks
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+lived+in+asia+minor+and+fled+to+greece+after+a+genocide+about+a+hundred+years+ago
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+ever+since+that++migration+has+somewhat+been+a+theme+in+my+family+my+father+moved+to+germany++studied+there+and+married
found 1 videos: [['/talks/aris_venetikidis_making_sense_of_maps', '2012']]
selected: /talks/aris_venetikidis_making_sense_of_maps
sleep 1 seconds to avoid blocking
------<179>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AriWallach_2016X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+is+a+term+i+made+up
found 14 videos: [['/talks/ari_wallach_3_ways_to_plan_for_the_very_long_term', '2017'], ['/talks/a_j_jacobs_my_journey_to_thank_all_the_people_responsible_for_my_morning_coffee', '2018'], ['/talks/natalie_panek_let_s_clean_up_the_space_junk_orbiting_earth', '2016'], ['/talks/rodin_lyasoff_how_autonomous_flying_taxis_could_change_the_way_you_travel', '2018'], ['/talks/cathy_o_neil_the_era_of_blind_faith_in_big_data_must_end', '2017'], ['/talks/neri_oxman_design_at_the_intersection_of_technology_and_biology', '2015'], ['/talks/jia_jiang_what_i_learned_from_100_days_of_rejection', '2016'], ['/talks/hannah_burckstummer_a_printable_flexible_organic_solar_cell', '2018'], ['/talks/lisa_nip_how_humans_could_evolve_to_survive_in_space', '2016'], ['/talks/dame_ellen_macarthur_the_surprising_thing_i_learned_sailing_solo_around_the_world', '2015'], ['/talks/christen_reighter_i_don_t_want_children_stop_telling_me_i_ll_change_my_mind', '2017'], ['/talks/mac_barnett_why_a_good_book_is_a_secret_door', '2014'], ['/talks/kevin_kelly_how_ai_can_bring_on_a_second_industrial_revolution', '2016'], ['/talks/fred_krupp_let_s_launch_a_satellite_to_track_a_threatening_greenhouse_gas', '2018']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+three+seconds+ago+i+ve+been+futuring+for+about+twenty+years++and+when+i+first+started+i+would+sit+down+with+people
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=been+seeing+that+time+horizon+get+shorter+and+shorter+and+shorter+so+much+so+that+i+met+with+a+ceo+two+months+ago+and+i+said
found 1 videos: [['/talks/ari_wallach_3_ways_to_plan_for_the_very_long_term', '2017']]
selected: /talks/ari_wallach_3_ways_to_plan_for_the_very_long_term
sleep 5 seconds to avoid blocking
------<180>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ArthurBenjamin_2005.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ladies+and+gentlemen+my+name+is+art+benjamin+and+i+am+a+mathemagician
found 1 videos: [['/talks/arthur_benjamin_a_performance_of_mathemagic', '2007']]
selected: /talks/arthur_benjamin_a_performance_of_mathemagic
sleep 2 seconds to avoid blocking
------<181>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ArthurBenjamin_2009.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=invited+me+to+be+the+next
error: request timeout
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=then+i+would+have+a+suggestion+for+him+that+i+think+would+vastly+improve+the+mathematics+education+in+this+country+and+it+would+be+easy+to+implement+and
error: request timeout
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+mathematics+curriculum+that+we+have+is+based+on+a+foundation+of+arithmetic+and+algebra++and+everything+we+learn+after+that+is+building+up
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=towards+one+subject+and+at+top+of+that+pyramid++it+s+calculus
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=school+graduate+should+know+should+be+statistics+probability+and+statistics
found 1 videos: [['/talks/arthur_benjamin_teach_statistics_before_calculus', '2009']]
selected: /talks/arthur_benjamin_teach_statistics_before_calculus
sleep 5 seconds to avoid blocking
------<182>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ArthurBenjamin_2013G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+why+do+we+learn+mathematics
found 10 videos: [['/talks/arthur_benjamin_the_magic_of_fibonacci_numbers', '2013'], ['/talks/john_green_the_nerd_s_guide_to_learning_everything_online', '2015'], ['/talks/emilie_wapnick_why_some_of_us_don_t_have_one_true_calling', '2015'], ['/talks/gian_giudice_why_our_universe_might_exist_on_a_knife_edge', '2013'], ['/talks/andreas_schleicher_use_data_to_build_better_schools', '2013'], ['/talks/alison_gopnik_what_do_babies_think', '2011'], ['/talks/wendy_chung_autism_what_we_know_and_what_we_don_t_know_yet', '2014'], ['/talks/william_noel_revealing_the_lost_codex_of_archimedes', '2012'], ['/talks/mark_pagel_how_language_transformed_humanity', '2011'], ['/talks/beau_lotto_amy_o_toole_science_is_for_everyone_kids_included', '2012']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=essentially+for+three+reasons+calculation+application
found 1 videos: [['/talks/arthur_benjamin_the_magic_of_fibonacci_numbers', '2013']]
selected: /talks/arthur_benjamin_the_magic_of_fibonacci_numbers
sleep 1 seconds to avoid blocking
------<183>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ArthurBrooks_2016.stm
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+the+most+liberal++tolerant+progressive+places+in+the+united+states+seattle+washington
found 1 videos: [['/talks/arthur_brooks_a_conservative_s_plea_let_s_work_together', '2016']]
selected: /talks/arthur_brooks_a_conservative_s_plea_let_s_work_together
sleep 3 seconds to avoid blocking
------<184>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ArthurGanson_2004.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+few+words+about+how+i+got+started
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+has+a+lot+to+do+with+happiness++actually++when+i+was+a+very+young+child+i+was+extremely+introverted
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+very+much+to+myself+and+kind+of+as+a+way+of+surviving+i+would+go+into+my+own+very+personal
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=space++and+i+would+make+things++i+would+make+things+for+people+as+a+way+of+you+know+giving+showing+them+my+my+love
found 1 videos: [['/talks/burt_rutan_the_real_future_of_space_exploration', '2006']]
selected: /talks/burt_rutan_the_real_future_of_space_exploration
sleep 4 seconds to avoid blocking
------<185>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ArthurPottsDawson_2010G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+food+industry+in+general
found 13 videos: [['/talks/arthur_potts_dawson_a_vision_for_sustainable_restaurants', '2010'], ['/talks/edith_widder_glowing_life_in_an_underwater_world', '2010'], ['/talks/kevin_kelly_technology_s_epic_story', '2010'], ['/talks/barry_schwartz_using_our_practical_wisdom', '2010'], ['/talks/daphne_bavelier_your_brain_on_video_games', '2012'], ['/talks/steve_keil_a_manifesto_for_play_for_bulgaria_and_beyond', '2011'], ['/talks/bill_strickland_rebuilding_a_neighborhood_with_beauty_dignity_hope', '2008'], ['/talks/clay_shirky_how_the_internet_will_one_day_transform_government', '2012'], ['/talks/jason_clay_how_big_brands_can_help_save_biodiversity', '2010'], ['/talks/amory_lovins_a_40_year_plan_for_energy', '2012'], ['/talks/paul_sereno_digging_up_dinosaurs', '2009'], ['/talks/lisa_margonelli_the_political_chemistry_of_oil', '2010'], ['/talks/sheryl_sandberg_why_we_have_too_few_women_leaders', '2010']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+pretty+much+the+most+wasteful+industry+in+the+world+for+every+calorie+of+food+that+we+consume+here+in+britain+today++ten+calories+are+taken+to+produce+it+that+s+a+lot
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+take+something+rather+humble+to+discuss
found 3 videos: [['/talks/jamais_cascio_tools_for_a_better_world', '2009'], ['/talks/arthur_potts_dawson_a_vision_for_sustainable_restaurants', '2010'], ['/talks/patricia_burchat_shedding_light_on_dark_matter', '2008']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+found+this+in+the+farmers++market+today
found 12 videos: [['/talks/willie_smits_how_to_restore_a_rainforest', '2009'], ['/talks/roger_doiron_my_subversive_garden_plot', '2011'], ['/talks/shashi_tharoor_why_nations_should_pursue_soft_power', '2009'], ['/talks/ann_cooper_what_s_wrong_with_school_lunches', '2008'], ['/talks/josette_sheeran_ending_hunger_now', '2011'], ['/talks/arthur_potts_dawson_a_vision_for_sustainable_restaurants', '2010'], ['/talks/pavan_sukhdev_put_a_value_on_nature', '2011'], ['/talks/jason_clay_how_big_brands_can_help_save_biodiversity', '2010'], ['/talks/tristram_stuart_the_global_food_waste_scandal', '2012'], ['/talks/birke_baehr_what_s_wrong_with_our_food_system', '2010'], ['/talks/jp_rangaswami_information_is_food', '2012'], ['/talks/jonathan_foley_the_other_inconvenient_truth', '2012']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+if+anybody+wants+to+take+it+home+and+mash+it+later+you+re+very+welcome+to+the+humble+potato+and+i+ve+spent+a+long+time+twenty+five+years+preparing+these
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+pretty+much+goes+through+eight+different+forms+in+its+lifetime
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=first+of+all+it+s+planted++and+that+takes
error: request timeout
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+then+distributed+and+distribution+is+a+massive+issue++it+s+then+sold+and+bought
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+s+then+delivered+to+me+i+basically+take+it+prepare+it+and+then+people+consume+it+hopefully+they+enjoy+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+last+stage+is+basically+waste++and+this+is+is+pretty+much+where+everybody+disregards+it
found 1 videos: [['/talks/arthur_potts_dawson_a_vision_for_sustainable_restaurants', '2010']]
selected: /talks/arthur_potts_dawson_a_vision_for_sustainable_restaurants
sleep 3 seconds to avoid blocking
------<186>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ArunachalamMuruganantham_2012S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+tried+to+do+a+small+good+thing+for+my+wife+it+makes+me+to+stand+here
found 10 videos: [['/talks/arunachalam_muruganantham_how_i_started_a_sanitary_napkin_revolution', '2012'], ['/talks/anil_gupta_india_s_hidden_hotbeds_of_invention', '2010'], ['/talks/bruce_feiler_the_council_of_dads', '2011'], ['/talks/dennis_hong_my_seven_species_of_robot_and_how_we_created_them', '2010'], ['/talks/william_ury_the_walk_from_no_to_yes', '2010'], ['/talks/arthur_potts_dawson_a_vision_for_sustainable_restaurants', '2010'], ['/talks/philip_k_howard_four_ways_to_fix_a_broken_legal_system', '2010'], ['/talks/dimitar_sasselov_how_we_found_hundreds_of_potential_earth_like_planets', '2010'], ['/talks/sheryl_wudunn_our_century_s_greatest_injustice', '2010'], ['/talks/lawrence_lessig_the_unstoppable_walk_to_political_reform', '2014']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+fame+the+money+i+got+out+of+it++so+what+i+did++i+d+gone+back+to+my+early+marriage
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+early+marriage+days++you+tried+to+impress+your+wife++i+did+the+same+on+that+occasion++i+found+my+wife+carrying+something+like+this+i+saw
found 1 videos: [['/talks/arunachalam_muruganantham_how_i_started_a_sanitary_napkin_revolution', '2012']]
selected: /talks/arunachalam_muruganantham_how_i_started_a_sanitary_napkin_revolution
sleep 4 seconds to avoid blocking
------<187>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ArvindGupta_2010P.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+a+very+revolutionary+time+it+was+a+political+ferment+so+to+say+students+out+in+the+streets+of+paris+revolting+against+authority
found 1 videos: [['/talks/arvind_gupta_turning_trash_into_toys_for_learning', '2011']]
selected: /talks/arvind_gupta_turning_trash_into_toys_for_learning
sleep 3 seconds to avoid blocking
------<188>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AshadeVos_2014U.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+were+so+many+right+whales+in+cape+cod+bay+off+the+east+coast+of+the+u+s
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+apparently+you+could+walk+across+their+backs+from+one+end+of+the+bay+to+the+other
found 4 videos: [['/talks/asha_de_vos_why_you_should_care_about_whale_poo', '2015'], ['/talks/don_tapscott_four_principles_for_the_open_world', '2012'], ['/talks/jim_simons_the_mathematician_who_cracked_wall_street', '2015'], ['/talks/roman_mars_why_city_flags_may_be_the_worst_designed_thing_you_ve_never_noticed', '2015']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=today+they+number+in+the+hundreds+and+they+re+endangered
found 1 videos: [['/talks/michael_murphy_architecture_that_s_built_to_heal', '2016']]
selected: /talks/michael_murphy_architecture_that_s_built_to_heal
sleep 4 seconds to avoid blocking
------<189>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AshBeckham_2013X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+talk+to+you+tonight+about+coming+out+of+the+closet+and+not+in+the+traditional+sense+not+just+the
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=gay+closet+i+think+we+all+have+closets+your+closet+may+be+telling+someone+you+love+her+for+the+first+time+or+telling+someone+that+you+re+pregnant
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+telling+someone+you+have+cancer
found 17 videos: [['/talks/jorge_soto_the_future_of_early_cancer_detection', '2014'], ['/talks/leana_wen_what_your_doctor_won_t_disclose', '2014'], ['/talks/debra_jarvis_yes_i_survived_cancer_but_that_doesn_t_define_me', '2014'], ['/talks/dave_isay_everyone_around_you_has_a_story_the_world_needs_to_hear', '2015'], ['/talks/bruce_feiler_the_council_of_dads', '2011'], ['/talks/alexandra_horowitz_how_do_dogs_see_with_their_noses', '2015'], ['/talks/esther_perel_rethinking_infidelity_a_talk_for_anyone_who_has_ever_loved', '2015'], ['/talks/kelly_mcgonigal_how_to_make_stress_your_friend', '2013'], ['/talks/quyen_nguyen_color_coded_surgery', '2011'], ['/talks/ben_saunders_why_bother_leaving_the_house', '2012'], ['/talks/jane_mcgonigal_the_game_that_can_give_you_10_extra_years_of_life', '2012'], ['/talks/alyson_mcgregor_why_medicine_often_has_dangerous_side_effects_for_women', '2015'], ['/talks/paul_zak_trust_morality_and_oxytocin', '2011'], ['/talks/ash_beckham_we_re_all_hiding_something_let_s_find_the_courage_to_open_up', '2014'], ['/talks/andrew_solomon_depression_the_secret_we_share', '2013'], ['/talks/peter_attia_is_the_obesity_crisis_hiding_a_bigger_problem', '2013'], ['/talks/eleanor_longden_the_voices_in_my_head', '2013']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+any+of+the+other+hard+conversations+we+have+throughout+our+lives+all+a+closet+is
found 14 videos: [['/talks/ash_beckham_we_re_all_hiding_something_let_s_find_the_courage_to_open_up', '2014'], ['/talks/jeff_hancock_the_future_of_lying', '2012'], ['/talks/pamela_meyer_how_to_spot_a_liar', '2011'], ['/talks/mick_cornett_how_an_obese_town_lost_a_million_pounds', '2014'], ['/talks/lesley_hazleton_the_doubt_essential_to_faith', '2013'], ['/talks/deb_roy_the_birth_of_a_word', '2011'], ['/talks/andrew_solomon_love_no_matter_what', '2013'], ['/talks/melinda_gates_let_s_put_birth_control_back_on_the_agenda', '2012'], ['/talks/jeffrey_kluger_the_sibling_bond', '2012'], ['/talks/richard_ledgett_the_nsa_responds_to_edward_snowden_s_ted_talk', '2014'], ['/talks/andrew_mcafee_are_droids_taking_our_jobs', '2012'], ['/talks/colin_grant_how_our_stories_cross_over', '2014'], ['/talks/david_brooks_the_social_animal', '2011'], ['/talks/sophie_scott_why_we_laugh', '2015']]
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+although+our+topics+may+vary+tremendously+the+experience+of+being+in+and+coming+out+of+the+closet+is+universal
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+is+scary++and+we+hate+it++and+it+needs+to+be+done
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=several+years+ago++i+was+working+at+the+south+side+walnut
found 2 videos: [['/talks/ash_beckham_we_re_all_hiding_something_let_s_find_the_courage_to_open_up', '2014'], ['/talks/mia_birdsong_the_story_we_tell_about_poverty_isn_t_true', '2015']]
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+local+diner+in+town++and+during+my+time+there+i+would+go+through+phases+of+militant+lesbian+intensity
found 1 videos: [['/talks/ash_beckham_we_re_all_hiding_something_let_s_find_the_courage_to_open_up', '2014']]
selected: /talks/ash_beckham_we_re_all_hiding_something_let_s_find_the_courage_to_open_up
sleep 2 seconds to avoid blocking
------<190>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AshBeckham_2014X.stm
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+back+in+ohio+for+a+family+wedding+and+when+i+was+there+there+was+a+meet+and+greet+with+anna+and+elsa+from
found 1 videos: [['/talks/ash_beckham_when_to_take_a_stand_and_when_to_let_it_go', '2015']]
selected: /talks/ash_beckham_when_to_take_a_stand_and_when_to_let_it_go
sleep 3 seconds to avoid blocking
------<191>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AsherHasan_2009I.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sat+sri+akal++greetings+to+all+of+you+from+pakistan++it+is+often+said+that+we+fear+that+which+we+do+not+know+and+pakistan+in+this
found 1 videos: [['/talks/asher_hasan_my_message_of_peace_from_pakistan', '2009']]
selected: /talks/asher_hasan_my_message_of_peace_from_pakistan
sleep 4 seconds to avoid blocking
------<192>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AshleyJudd_2016W.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+t+sue+someone+for+calling+them+a+cunt+if
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+wish+ashley+judd+would+die+a+horrible+death+she+is+the+absolute+worst+ashley+judd+you+re+the+reason+women+shouldn+t+vote
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=twisted++is+such+a+bad+movie+i+don+t+even+want+to+rape+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=whatever+you+do+don+t+tell+ashley+judd+she+ll+die+alone+with+a+dried+out+vagina
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+i+had+to+fuck+an+older+woman+oh+my+god+i+would+fuck+the
found 1 videos: [['/talks/ashley_judd_how_online_abuse_of_women_has_spiraled_out_of_control', '2017']]
selected: /talks/ashley_judd_how_online_abuse_of_women_has_spiraled_out_of_control
sleep 3 seconds to avoid blocking
------<193>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AshrafGhani_2005G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+public+dewey+long+ago+observed+is+constituted+through+discussion+and+debate
found 1 videos: [['/talks/ashraf_ghani_how_to_rebuild_a_broken_state', '2006']]
selected: /talks/ashraf_ghani_how_to_rebuild_a_broken_state
sleep 5 seconds to avoid blocking
------<194>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AshtonCofer_2016Y.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+just+an+ordinary+saturday++my+dad+was+outside+mowing+the+lawn++my+mom+was+upstairs+folding+laundry+my+sister+was+in+her+room+doing+homework
found 1 videos: [['/talks/ashton_cofer_a_plan_to_recycle_the_unrecyclable', '2017']]
selected: /talks/ashton_cofer_a_plan_to_recycle_the_unrecyclable
sleep 1 seconds to avoid blocking
------<195>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AspenBaker_2015W.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+the+middle+of+summer+and+well+past+closing+time+in+the+downtown+berkeley+bar+where+my+friend+polly+and+i+worked+together+as+bartenders
found 1 videos: [['/talks/aspen_baker_a_better_way_to_talk_about_abortion', '2015']]
selected: /talks/aspen_baker_a_better_way_to_talk_about_abortion
sleep 3 seconds to avoid blocking
------<196>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AstroTeller_2016.stm
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=jfk+told+the+country+about+a+dream+he+had
found 1 videos: [['/talks/astro_teller_the_unexpected_benefit_of_celebrating_failure', '2016']]
selected: /talks/astro_teller_the_unexpected_benefit_of_celebrating_failure
sleep 2 seconds to avoid blocking
------<197>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AtulGawande_2012.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+got+my+start+in+writing
found 10 videos: [['/talks/roger_ebert_remaking_my_voice', '2011'], ['/talks/joe_kowan_how_i_beat_stage_fright', '2014'], ['/talks/omar_ahmad_political_change_with_pen_and_paper', '2010'], ['/talks/sarah_kay_if_i_should_have_a_daughter', '2011'], ['/talks/raghava_kk_my_5_lives_as_an_artist', '2010'], ['/talks/jeff_hancock_the_future_of_lying', '2012'], ['/talks/ze_frank_my_web_playroom', '2010'], ['/talks/amy_webb_how_i_hacked_online_dating', '2013'], ['/talks/colin_powell_kids_need_structure', '2013'], ['/talks/young_ha_kim_be_an_artist_right_now', '2013']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+research+as+a+surgical+trainee+as+someone+who+was+a+long+ways+away+from+becoming+any+kind+of+an+expert+at
found 1 videos: [['/talks/atul_gawande_how_do_we_heal_medicine', '2012']]
selected: /talks/atul_gawande_how_do_we_heal_medicine
sleep 2 seconds to avoid blocking
------<198>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AubreydeGrey_2005G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=eighteen+minutes+is+an+absolutely+brutal+time+limit+so+i+m+going+to+dive+straight+in+right+at+the+point+where+i+get+this+thing+to+work+here+we
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=go+i+m+going+to+talk+about+five+different+things+i+m+going+to+talk+about+why+defeating+aging+is+desirable++i+m+going+to+talk+about+why+we+have+to+get
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=actually+talk+about+this+a+bit+more+than+we+do+i+m+going+to+talk+about+feasibility+as+well+of+course+i+m+going+to+talk+about+why+we+are+so+fatalistic+about+doing+anything+about+aging+and+then+i+m+going+spend+perhaps+the+second+half+of+the+talk+talking+about
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know+how+we+might+actually+be+able+to+prove+that+fatalism+is+wrong+namely+by+actually+doing+something+about+it++i+m+going+to+do+that+in+two+steps+the+first+one+i+m+going+to+talk+about+is
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+to+get+from+a+relatively+modest+amount+of+life+extension+which+i+m+going+to+define
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thirty+years+applied+to+people+who+are+already+in+middle+age+when+you+start+to+a+point+which+can+genuinely+be+called+defeating+aging+namely+essentially+an+elimination+of+the
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=relationship+between+how+old+you+are+and+how+likely+you+are+to+die+in+the+next+year+or+indeed+to+get+sick+in+the+first+place++and+of+course+the+last+thing+i+m+going+to+talk+about+is+how+to+reach+that+intermediate+step
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+point+of+maybe+thirty+years+life+extension+so+i+m
error: request timeout
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+ask+a+question+hands+up+anyone+in+the+audience+who+is+in+favor+of+malaria
found 1 videos: [['/talks/aubrey_de_grey_a_roadmap_to_end_aging', '2006']]
selected: /talks/aubrey_de_grey_a_roadmap_to_end_aging
sleep 1 seconds to avoid blocking
------<199>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AudreyChoi_2015S.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+believe+big+institutions+have+unique+potential+to+create+change++and+i+believe+that+we+as+individuals+have+unique+power
found 3 videos: [['/talks/audrey_choi_how_to_make_a_profit_while_making_a_difference', '2016'], ['/talks/yuval_noah_harari_nationalism_vs_globalism_the_new_political_divide', '2017'], ['/talks/fred_swaniker_the_leaders_who_ruined_africa_and_the_generation_who_can_fix_it', '2014']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+influence+the+direction+that+those+institutions+take+now
found 5 videos: [['/talks/audrey_choi_how_to_make_a_profit_while_making_a_difference', '2016'], ['/talks/thomas_piketty_new_thoughts_on_capital_in_the_twenty_first_century', '2014'], ['/talks/ian_bremmer_how_the_us_should_use_its_superpower_status', '2016'], ['/talks/yuval_noah_harari_nationalism_vs_globalism_the_new_political_divide', '2017'], ['/talks/james_b_glattfelder_who_controls_the_world', '2013']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+beliefs+did+not+come+naturally+to+me+because+trusting+big+institutions+not+really+part+of+my+family+legacy+my+mother+escaped+north+korea
found 1 videos: [['/talks/audrey_choi_how_to_make_a_profit_while_making_a_difference', '2016']]
selected: /talks/audrey_choi_how_to_make_a_profit_while_making_a_difference
sleep 1 seconds to avoid blocking
------<200>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AukeIjspeert_2015G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+a+robot+that+we+designed+to+closely+mimic+a+salamander+species+called
found 1 videos: [['/talks/auke_ijspeert_a_robot_that_runs_and_swims_like_a_salamander', '2016']]
selected: /talks/auke_ijspeert_a_robot_that_runs_and_swims_like_a_salamander
sleep 1 seconds to avoid blocking
------<201>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AuretvanHeerden_2010G.stm
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=started+its+trajectory+in+an+artisanal+mine+in+the+eastern+congo+it+s+mined+by+armed+gangs+using
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+components+and+ended+up+in+a+factory+in+shinjin+in+china+that+factory+over+a+dozen+people+have+committed+suicide+already+this+year
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+man+died+after+working+a+36+hour+shift
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+all+love+chocolate+we+buy+it+for+our+kids+eighty+percent+of+the+cocoa+comes+from+cote+d+ivoire+and+ghana
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+s+harvested+by+children
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=d+ivoire+we+have+a+huge+problem+of+child+slaves++children+have+been+trafficked+from+other+conflict+zones+to+come+and+work+on+the+coffee+plantations+heparin+a
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=blood+thinner+a+pharmaceutical+product+starts+out
found 1 videos: [['/talks/auret_van_heerden_making_global_labor_fair', '2010']]
selected: /talks/auret_van_heerden_making_global_labor_fair
sleep 1 seconds to avoid blocking
------<202>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AviReichental_2014.stm
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=back+in+the+day++he+made+custom+made+shoes+i+never+got+to+meet+him++he+perished+in+the+holocaust
found 1 videos: [['/talks/avi_reichental_what_s_next_in_3d_printing', '2014']]
selected: /talks/avi_reichental_what_s_next_in_3d_printing
sleep 4 seconds to avoid blocking
------<203>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AviRubin_2011X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+a+computer+science+professor++and+my+area+of+expertise+is+computer+and+information+security
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+was+in+graduate+school++i+had+the+opportunity+to+overhear+my+grandmother
found 1 videos: [['/talks/avi_rubin_all_your_devices_can_be_hacked', '2012']]
selected: /talks/avi_rubin_all_your_devices_can_be_hacked
sleep 4 seconds to avoid blocking
------<204>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AyahBdeir_2012U.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+may+sound+strange++but+i+m+a+big+fan+of+the+concrete+block
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+first+concrete+blocks+were+manufactured+in+one+thousand+eight+hundred+and+sixty+eight+with+a+very+simple+idea+modules+made+of+cement+of+a+fixed+measurement+that+fit
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=very+quickly+concrete+blocks+became+the+most+used+construction+unit+in+the+world
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+enabled+us+to+to+build+things+that+were+larger+than+us+buildings+bridges++one+brick+at+a+time
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=essentially+concrete+blocks+had+become+the+building+block+of+our+time
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=almost+a+hundred+years+later+in
error: request timeout
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+called+the+automatic+binding+brick+and+in+a+few+short+years+lego+bricks+took+place+in+every+household+it+s+estimated+that
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=over+four+hundred+billion+bricks+have+been+produced+or+seventy+five+bricks+for+every+person+on+the+planet
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+don+t+have+to+be+an+engineer+to+make+beautiful+houses+beautiful+bridges+beautiful+buildings++lego+made+it+accessible
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=lego+has+essentially+taken+the+concrete+block+the+building+block+of+the+world+and+made+it+into+the+building+block+of+our+imagination
error: request timeout
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+exact+same+year+at+bell+labs+the+next+revolution+was+about+to+be+announced+the+next+building+block
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+transistor+was+a+small+plastic+unit+that+would+take+us+from+a+world+of+static+bricks+piled+on+top+of+each+other+to+a+world+where+everything+was+interactive
found 1 videos: [['/talks/ayah_bdeir_building_blocks_that_blink_beep_and_teach', '2012']]
selected: /talks/ayah_bdeir_building_blocks_that_blink_beep_and_teach
sleep 5 seconds to avoid blocking
------<205>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AzizAbuSarah_2014U.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+this+is+not+how+i+started+when+i+was+seven+years+old++i+remember+watching+television+and+seeing+people+throwing+rocks++and+thinking
found 1 videos: [['/talks/aziz_abu_sarah_for_more_tolerance_we_need_more_tourism', '2015']]
selected: /talks/aziz_abu_sarah_for_more_tolerance_we_need_more_tourism
sleep 2 seconds to avoid blocking
------<206>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/AzizaChaouni_2014U.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+would+like+to+share+with+you+today+a+project+that+has+changed+how+i+approach+and+practice+architecture+the+fez+river+rehabilitation+project
found 1 videos: [['/talks/aziza_chaouni_how_i_brought_a_river_and_my_city_back_to_life', '2014']]
selected: /talks/aziza_chaouni_how_i_brought_a_river_and_my_city_back_to_life
sleep 3 seconds to avoid blocking
------<207>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BabaShiv_2012X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+slightly+somber+note+two+thousand+and+seven+five+years+ago++my+wife
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=gets+diagnosed+with+breast+cancer+stage+iib+now+looking+back+the+most+harrowing+part+of+that+experience+was+not
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=just+the+hospital+visits+these+were+very+painful+for+my+wife+understandably+so
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+not+even+the+initial+shock+of+knowing+that+she+had+breast+cancer+at+just+thirty+nine+years+old++absolutely+no+history+of+cancer+in+her+family
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+most+horrifying+and+agonizing+part+of+the+whole+experience+was+we+were+making+decisions+after+decisions+after+decisions+that+were+being+thrust+upon+us
found 1 videos: [['/talks/baba_shiv_sometimes_it_s_good_to_give_up_the_driver_s_seat', '2012']]
selected: /talks/baba_shiv_sometimes_it_s_good_to_give_up_the_driver_s_seat
sleep 1 seconds to avoid blocking
------<208>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BahiaShehab_2012G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=two+years+ago+i+was+invited+as+an+artist+to+participate+in+an+exhibition+commemorating+one+hundred+years+of+islamic+art+in+europe
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+curator+had+only+one+condition+i+had+to+use+the+arabic+script+for+my+artwork
found 1 videos: [['/talks/bahia_shehab_a_thousand_times_no', '2012']]
selected: /talks/bahia_shehab_a_thousand_times_no
sleep 1 seconds to avoid blocking
------<209>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BandiMbubi_2012X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+talk+to+you+today+about+a+difficult+topic+that+is+close+to+me+and+closer+than+you+might+realize+to+you
found 4 videos: [['/talks/bandi_mbubi_demand_a_fair_trade_cell_phone', '2012'], ['/talks/brenda_romero_gaming_for_understanding', '2012'], ['/talks/ethan_zuckerman_listening_to_global_voices', '2010'], ['/talks/david_r_dow_lessons_from_death_row_inmates', '2012']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+came+to+the+uk++twenty+one
found 2 videos: [['/talks/marc_goodman_a_vision_of_crimes_in_the_future', '2012'], ['/talks/ben_goldacre_battling_bad_science', '2011']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+forced+to+leave+the+democratic+republic+of+the+congo++my+home++where+i+was+a+student+activist
found 1 videos: [['/talks/bandi_mbubi_demand_a_fair_trade_cell_phone', '2012']]
selected: /talks/bandi_mbubi_demand_a_fair_trade_cell_phone
sleep 2 seconds to avoid blocking
------<210>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BaratAliBatoor_2014X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+homeland+of+my+people+is+afghanistan
found 1 videos: [['/talks/barat_ali_batoor_my_desperate_journey_with_a_human_smuggler', '2015']]
selected: /talks/barat_ali_batoor_my_desperate_journey_with_a_human_smuggler
sleep 4 seconds to avoid blocking
------<211>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BarbaraBlock_2010Z.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+been+fascinated+for+a+lifetime
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+the+beauty+form+and+function+of+giant+bluefin+tuna+bluefin+are+warmblooded+like+us+they+re+the+largest
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fish+in+the+sea+bony+fish++they+actually+are+a+fish+that+is+endothermic
found 1 videos: [['/talks/barbara_block_tagging_tuna_in_the_deep_ocean', '2010']]
selected: /talks/barbara_block_tagging_tuna_in_the_deep_ocean
sleep 4 seconds to avoid blocking
------<212>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BarbaraNattersonHorowitz_2014P.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ten+years+ago++i+got+a+phone+call+that+changed+my+life
found 13 videos: [['/talks/esta_soler_how_we_turned_the_tide_on_domestic_violence_hint_the_polaroid_helped', '2014'], ['/talks/barbara_natterson_horowitz_what_veterinarians_know_that_physicians_don_t', '2014'], ['/talks/marc_goodman_a_vision_of_crimes_in_the_future', '2012'], ['/talks/guy_winch_why_we_all_need_to_practice_emotional_first_aid', '2015'], ['/talks/david_rothkopf_how_fear_drives_american_politics', '2015'], ['/talks/leyla_acaroglu_paper_beats_plastic_how_to_rethink_environmental_folklore', '2014'], ['/talks/joshua_prager_in_search_of_the_man_who_broke_my_neck', '2013'], ['/talks/joel_selanikio_the_big_data_revolution_in_health_care', '2013'], ['/talks/jeremy_heimans_what_new_power_looks_like', '2014'], ['/talks/nicholas_negroponte_a_30_year_history_of_the_future', '2014'], ['/talks/leslie_t_chang_the_voices_of_china_s_workers', '2012'], ['/talks/david_birch_a_new_way_to_stop_identity_theft', '2012'], ['/talks/paul_kemp_robertson_bitcoin_sweat_tide_meet_the_future_of_branded_currency', '2013']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+the+time++i+was+cardiologist+at+ucla+specializing+in+cardiac+imaging
found 1 videos: [['/talks/barbara_natterson_horowitz_what_veterinarians_know_that_physicians_don_t', '2014']]
selected: /talks/barbara_natterson_horowitz_what_veterinarians_know_that_physicians_don_t
sleep 5 seconds to avoid blocking
------<213>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BarrySchuler_2008P.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+s+happening+in+genomics+and+how+this+revolution
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+about+to+change+everything+we+know+about+the+world+life+ourselves++and+how+we+how+we+think
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+saw+two+thousand+and+one+a+space+odyssey+and+you+heard+the+boom+boom+boom+boom++and+you+saw+the+monolith+you+know+that+was+arthur+c+clarke+s
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=representation+that+we+were+at+a+seminal+moment+in+the+evolution+of+our+species+in+this+case+it+was
found 1 videos: [['/talks/barry_schuler_genomics_101', '2009']]
selected: /talks/barry_schuler_genomics_101
sleep 1 seconds to avoid blocking
------<214>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BarrySchwartz_2009.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=his+inaugural+address+barack+obama+appealed
found 1 videos: [['/talks/barry_schwartz_our_loss_of_wisdom', '2009']]
selected: /talks/barry_schwartz_our_loss_of_wisdom
sleep 1 seconds to avoid blocking
------<215>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BarrySchwartz_2010S.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+do+is+say+thank+you
found 3 videos: [['/talks/laura_trice_remember_to_say_thank_you', '2008'], ['/talks/tim_ferriss_smash_fear_learn_anything', '2009'], ['/talks/shea_hembrey_how_i_became_100_artists', '2011']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+all+of+you+the+second+thing+i+want+to+do+is+introduce+my+co+author+and+dear+friend+and+co+teacher+ken+and+i+have+been+working+together+for+almost+forty
found 1 videos: [['/talks/barry_schwartz_using_our_practical_wisdom', '2010']]
selected: /talks/barry_schwartz_using_our_practical_wisdom
sleep 3 seconds to avoid blocking
------<216>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BarrySchwartz_2014U.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=today+i+m+going+to+talk+about+work+and+the+question+i+want+to+ask+and+answer+is+this+why+do+we+work
found 2 videos: [['/talks/cameron_russell_looks_aren_t_everything_believe_me_i_m_a_model', '2013'], ['/talks/anant_agarwal_why_massive_open_online_courses_still_matter', '2014']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=why+do+we+drag+ourselves+out+of+bed+every+morning+instead+of+living+our+lives+just+filled
found 1 videos: [['/talks/barry_schwartz_the_way_we_think_about_work_is_broken', '2015']]
selected: /talks/barry_schwartz_the_way_we_think_about_work_is_broken
sleep 4 seconds to avoid blocking
------<217>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BartKnols_2012X.stm
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+awful+buzzing+sound+at+night+around+your+ears+that+drives+you+absolutely+crazy
found 1 videos: [['/talks/bart_knols_3_new_ways_to_kill_mosquitoes', '2012']]
selected: /talks/bart_knols_3_new_ways_to_kill_mosquitoes
sleep 5 seconds to avoid blocking
------<218>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BartonSeaver_2010Z.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sustainability+represents+the+what+the+where+and+the+how+of+what+is+caught
found 1 videos: [['/talks/barton_seaver_sustainable_seafood_let_s_get_smart', '2010']]
selected: /talks/barton_seaver_sustainable_seafood_let_s_get_smart
sleep 5 seconds to avoid blocking
------<219>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BartWeetjens_2010X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+here+today+to+share+with+you+an+extraordinary+journey++extraordinarily+rewarding+journey+actually++which+brought+me+into
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=training+rats+to+save+human+lives
found 9 videos: [['/talks/bart_weetjens_how_i_taught_rats_to_sniff_out_land_mines', '2010'], ['/talks/vikram_patel_mental_health_for_all_by_involving_all', '2012'], ['/talks/joshua_klein_a_thought_experiment_on_the_intelligence_of_crows', '2008'], ['/talks/naomi_klein_addicted_to_risk', '2011'], ['/talks/david_blaine_how_i_held_my_breath_for_17_minutes', '2010'], ['/talks/dyan_denapoli_the_great_penguin_rescue', '2011'], ['/talks/atul_gawande_how_do_we_heal_medicine', '2012'], ['/talks/p_w_singer_military_robots_and_the_future_of_war', '2009'], ['/talks/simon_lewis_don_t_take_consciousness_for_granted', '2011']]
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+a+child++i+had+two+passions+one+was+a+passion+for+rodents
found 1 videos: [['/talks/bart_weetjens_how_i_taught_rats_to_sniff_out_land_mines', '2010']]
selected: /talks/bart_weetjens_how_i_taught_rats_to_sniff_out_land_mines
sleep 2 seconds to avoid blocking
------<220>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BassamTariq_2014U.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=explain+how+these+identities+come+together+it+started+four+years+ago++when+a+friend+and+i+opened+our+first+ramadan+fast+at+one+of+the+busiest+mosques+in+new+york
found 1 videos: [['/talks/bassam_tariq_the_beauty_and_diversity_of_muslim_life', '2015']]
selected: /talks/bassam_tariq_the_beauty_and_diversity_of_muslim_life
sleep 4 seconds to avoid blocking
------<221>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BastianSchaefer_2013G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+know+about+the+future+difficult+question+simple+answer+nothing+we+cannot+predict+the+future
found 1 videos: [['/talks/bastian_schaefer_a_3d_printed_jumbo_jet', '2013']]
selected: /talks/bastian_schaefer_a_3d_printed_jumbo_jet
sleep 5 seconds to avoid blocking
------<222>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/Beardyman_2013.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+you+all+to+ask+yourselves+a+question+which+you+may+never+have+asked+yourselves+before
found 4 videos: [['/talks/amy_cuddy_your_body_language_may_shape_who_you_are', '2012'], ['/talks/beardyman_the_polyphonic_me', '2013'], ['/talks/daniel_wolpert_the_real_reason_for_brains', '2011'], ['/talks/drew_dudley_everyday_leadership', '2012']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+is+possible+with+the+human
found 12 videos: [['/talks/randall_hayes_at_what_moment_are_you_dead', '2014'], ['/talks/karen_thompson_walker_what_fear_can_teach_us', '2013'], ['/talks/harvey_fineberg_are_we_ready_for_neo_evolution', '2011'], ['/talks/ioannis_papachimonas_how_computers_translate_human_language', '2015'], ['/talks/read_montague_what_we_re_learning_from_5_000_brains', '2012'], ['/talks/suzana_herculano_houzel_what_is_so_special_about_the_human_brain', '2013'], ['/talks/richard_e_cytowic_what_percentage_of_your_brain_do_you_use', '2014'], ['/talks/nancy_kanwisher_a_neural_portrait_of_the_human_mind', '2014'], ['/talks/nick_bostrom_what_happens_when_our_computers_get_smarter_than_we_are', '2015'], ['/talks/alison_gopnik_what_do_babies_think', '2011'], ['/talks/eduardo_saenz_de_cabezon_math_is_forever', '2015'], ['/talks/francis_de_los_reyes_sanitation_is_a_basic_human_right', '2014']]
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+coming+straight+for+me+i+had+to+it+was+yeah+as+you+can+probably
found 8 videos: [['/talks/beardyman_the_polyphonic_me', '2013'], ['/talks/bill_and_melinda_gates_why_giving_away_our_wealth_has_been_the_most_satisfying_thing_we_ve_done', '2014'], ['/talks/bryan_stevenson_we_need_to_talk_about_an_injustice', '2012'], ['/talks/rob_legato_the_art_of_creating_awe', '2012'], ['/talks/molly_stevens_a_new_way_to_grow_bone', '2014'], ['/talks/scilla_elworthy_fighting_with_nonviolence', '2012'], ['/talks/kevin_briggs_the_bridge_between_suicide_and_life', '2014'], ['/talks/andrew_solomon_love_no_matter_what', '2013']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+imagine+i+was+a+strange+child+laughter
found 14 videos: [['/talks/khadija_gbla_my_mother_s_strange_definition_of_empowerment', '2015'], ['/talks/andrew_solomon_love_no_matter_what', '2013'], ['/talks/david_brooks_the_social_animal', '2011'], ['/talks/beardyman_the_polyphonic_me', '2013'], ['/talks/jennifer_senior_for_parents_happiness_is_a_very_high_bar', '2014'], ['/talks/keith_chen_could_your_language_affect_your_ability_to_save_money', '2013'], ['/talks/bart_knols_3_new_ways_to_kill_mosquitoes', '2012'], ['/talks/aspen_baker_a_better_way_to_talk_about_abortion', '2015'], ['/talks/david_christian_the_history_of_our_world_in_18_minutes', '2011'], ['/talks/robin_ince_science_versus_wonder', '2011'], ['/talks/alberto_cairo_there_are_no_scraps_of_men', '2011'], ['/talks/robin_morgan_4_powerful_poems_about_parkinson_s_and_growing_older', '2015'], ['/talks/dave_isay_everyone_around_you_has_a_story_the_world_needs_to_hear', '2015'], ['/talks/colin_grant_how_our_stories_cross_over', '2014']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+the+thing+is+i+was+i+was+constantly+trying+to
found 13 videos: [['/talks/amy_webb_how_i_hacked_online_dating', '2013'], ['/talks/sarah_lewis_embrace_the_near_win', '2014'], ['/talks/alan_eustace_i_leapt_from_the_stratosphere_here_s_how_i_did_it', '2015'], ['/talks/abha_dawesar_life_in_the_digital_now', '2013'], ['/talks/elizabeth_gilbert_success_failure_and_the_drive_to_keep_creating', '2014'], ['/talks/jose_miguel_sokoloff_how_christmas_lights_helped_guerrillas_put_down_their_guns', '2014'], ['/talks/andrew_solomon_depression_the_secret_we_share', '2013'], ['/talks/peter_attia_is_the_obesity_crisis_hiding_a_bigger_problem', '2013'], ['/talks/naomi_klein_addicted_to_risk', '2011'], ['/talks/adam_davidson_what_we_learned_from_teetering_on_the_fiscal_cliff', '2012'], ['/talks/melissa_fleming_a_boat_carrying_500_refugees_sunk_at_sea_the_story_of_two_survivors', '2015'], ['/talks/oren_yakobovich_hidden_cameras_that_film_injustice_in_the_world_s_most_dangerous_places', '2014'], ['/talks/rodrigo_canales_the_deadly_genius_of_drug_cartels', '2013']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=extend+my+repertoire+of+noises+to+be+the+very+maximum+that+it+could+be+i+was
found 1 videos: [['/talks/beardyman_the_polyphonic_me', '2013']]
selected: /talks/beardyman_the_polyphonic_me
sleep 5 seconds to avoid blocking
------<223>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BeatriceCoron_2011.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+cut+stories++so+my+process+is+very+straightforward
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+take+a+piece+of+paper++i+visualize+my+story
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sometimes+i+sketch+sometimes+i+don+t++and+as+my+image+is+already+inside+the+paper
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+just+have+to+remove+what+s+not+from+that+story
found 4 videos: [['/talks/simon_lewis_don_t_take_consciousness_for_granted', '2011'], ['/talks/ben_goldacre_battling_bad_science', '2011'], ['/talks/deborah_rhodes_a_test_that_finds_3x_more_breast_tumors_and_why_it_s_not_available_to_you', '2011'], ['/talks/roger_ebert_remaking_my_voice', '2011']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+didn+t+come+to+papercutting+in+a+straight+line
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+fact++i+see+it+more+as+a+spiral
found 6 videos: [['/talks/james_gillies_dark_matter_the_matter_we_can_t_see', '2013'], ['/talks/beatrice_coron_stories_cut_from_paper', '2011'], ['/talks/cheryl_hayashi_the_magnificence_of_spider_silk', '2011'], ['/talks/kevin_bales_how_to_combat_modern_slavery', '2010'], ['/talks/andrea_ghez_the_hunt_for_a_supermassive_black_hole', '2009'], ['/talks/janine_shepherd_a_broken_body_isn_t_a_broken_person', '2012']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+not+born+with+a+blade
found 6 videos: [['/talks/beatrice_coron_stories_cut_from_paper', '2011'], ['/talks/nancy_etcoff_happiness_and_its_surprises', '2009'], ['/talks/nicholas_christakis_the_hidden_influence_of_social_networks', '2010'], ['/talks/jonathan_haidt_how_common_threats_can_make_common_political_ground', '2013'], ['/talks/georgette_mulheir_the_tragedy_of_orphanages', '2012'], ['/talks/maajid_nawaz_a_global_culture_to_fight_extremism', '2011']]
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+don+t+remember+papercutting+as+a+child
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+a+teenager++i+was+sketching++drawing++and+i+wanted+to+be+an+artist
found 1 videos: [['/talks/beatrice_coron_stories_cut_from_paper', '2011']]
selected: /talks/beatrice_coron_stories_cut_from_paper
sleep 4 seconds to avoid blocking
------<224>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BeauLotto_2009G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+start+with+a+game++okay++and+to+win+this+game
found 22 videos: [['/talks/robert_wright_progress_is_not_a_zero_sum_game', '2007'], ['/talks/jane_mcgonigal_gaming_can_make_a_better_world', '2010'], ['/talks/james_randi_homeopathy_quackery_and_fraud', '2010'], ['/talks/gabe_zichermann_how_games_make_kids_smarter', '2011'], ['/talks/david_logan_tribal_leadership', '2009'], ['/talks/beau_lotto_optical_illusions_show_how_we_see', '2009'], ['/talks/naif_al_mutawa_superheroes_inspired_by_islam', '2010'], ['/talks/christopher_moot_poole_the_case_for_anonymity_online', '2010'], ['/talks/paul_maccready_a_flight_on_solar_wings', '2007'], ['/talks/johanna_blakley_lessons_from_fashion_s_free_culture', '2010'], ['/talks/jr_my_wish_use_art_to_turn_the_world_inside_out', '2011'], ['/talks/steven_cowley_fusion_is_energy_s_future', '2009'], ['/talks/rebecca_saxe_how_we_read_each_other_s_minds', '2009'], ['/talks/bunker_roy_learning_from_a_barefoot_movement', '2011'], ['/talks/william_li_can_we_eat_to_starve_cancer', '2010'], ['/talks/majora_carter_3_stories_of_local_eco_entrepreneurship', '2010'], ['/talks/morgan_spurlock_the_greatest_ted_talk_ever_sold', '2011'], ['/talks/paul_bloom_the_origins_of_pleasure', '2011'], ['/talks/kathryn_schulz_on_being_wrong', '2011'], ['/talks/thomas_goetz_it_s_time_to_redesign_medical_data', '2011'], ['/talks/ken_kamler_medical_miracle_on_everest', '2010'], ['/talks/paul_root_wolpe_it_s_time_to_question_bio_engineering', '2011']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+you+have+to+do+is+see+the+reality+that+s+in+front+of+you+as+it+really+is+all+right++so+we+have+two+panels+here+of+colored+dots
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+those+dots+is+the+same
found 7 videos: [['/talks/allan_jones_a_map_of_the_brain', '2011'], ['/talks/asher_hasan_my_message_of_peace_from_pakistan', '2009'], ['/talks/sheila_patek_the_shrimp_with_a_kick', '2007'], ['/talks/lisa_margonelli_the_political_chemistry_of_oil', '2010'], ['/talks/sergey_brin_larry_page_the_genesis_of_google', '2007'], ['/talks/nicholas_christakis_the_hidden_influence_of_social_networks', '2010'], ['/talks/jan_chipchase_the_anthropology_of_mobile_phones', '2007']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+two+panels+++and+you+have+to+tell+me+which+one++now+i+narrowed+it+down+to
found 2 videos: [['/talks/beau_lotto_optical_illusions_show_how_we_see', '2009'], ['/talks/robert_lang_the_math_and_magic_of_origami', '2008']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+gray+one+the+green+one+and+say+the+orange+one++so+by+a+show+of+hands+we+ll+start+with+the+easiest+one++show+of+hands+how+many+people+think+it+s+the+gray+one
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=really+okay++how+many+people+think+it+s+the+green+one
found 4 videos: [['/talks/majora_carter_3_stories_of_local_eco_entrepreneurship', '2010'], ['/talks/sandra_fisher_martins_the_right_to_understand', '2011'], ['/talks/lauren_zalaznick_the_conscience_of_television', '2011'], ['/talks/reed_kroloff_a_tour_of_modern_architecture', '2008']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=many+people+think+it+s+the+orange+one
found 4 videos: [['/talks/eames_demetrios_the_design_genius_of_charles_ray_eames', '2009'], ['/talks/jacqueline_novogratz_patient_capitalism', '2007'], ['/talks/ellen_dunham_jones_retrofitting_suburbia', '2010'], ['/talks/bruce_feiler_the_council_of_dads', '2011']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=pretty+even+split++let+s+find+out+what+the+reality+is+here+is+the+orange+one
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=laughter+here+is+the+green+one++and+here+is+the+gray
found 19 videos: [['/talks/steven_pinker_human_nature_and_the_blank_slate', '2008'], ['/talks/stewart_brand_4_environmental_heresies', '2009'], ['/talks/allan_jones_a_map_of_the_brain', '2011'], ['/talks/lisa_margonelli_the_political_chemistry_of_oil', '2010'], ['/talks/ben_katchor_comics_of_bygone_new_york', '2009'], ['/talks/eric_topol_the_wireless_future_of_medicine', '2010'], ['/talks/david_carson_design_and_discovery', '2009'], ['/talks/frank_gehry_my_days_as_a_young_rebel', '2008'], ['/talks/daniel_wolpert_the_real_reason_for_brains', '2011'], ['/talks/neil_turok_my_wish_find_the_next_einstein_in_africa', '2008'], ['/talks/dan_dennett_the_illusion_of_consciousness', '2007'], ['/talks/gero_miesenboeck_re_engineering_the_brain', '2010'], ['/talks/ed_boyden_a_light_switch_for_neurons', '2011'], ['/talks/beau_lotto_optical_illusions_show_how_we_see', '2009'], ['/talks/paul_maccready_nature_vs_humans', '2008'], ['/talks/shimon_steinberg_natural_pest_control_using_bugs', '2010'], ['/talks/tom_rielly_a_comic_sendup_of_ted2006', '2007'], ['/talks/lennart_green_close_up_card_magic_with_a_twist', '2008'], ['/talks/paul_stamets_6_ways_mushrooms_can_save_the_world', '2008']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+this+is+pretty+amazing+isn+t+it+because+nearly+every+living+system+has+evolved+the+ability+to+detect+light+in+one+way+or+another+so+for+us+seeing+color+is+one+of+the+simplest+things+the+brain+does+and+yet+even+at+this+most+fundamental
found 1 videos: [['/talks/beau_lotto_optical_illusions_show_how_we_see', '2009']]
selected: /talks/beau_lotto_optical_illusions_show_how_we_see
sleep 4 seconds to avoid blocking
------<225>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BeauLotto_2012G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+game+is+very+simple+all+you+have+to+do+is+read+what+you+see++right++so+i+m+going+to+count+to+you+so+we+don+t+all+do+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+you+reading+there+are+no+words+there++i+said+read+what+you+re+seeing++right++it+literally+says
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+because+perception+is+grounded+in+our+experience++right
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+brain+takes+meaningless+information+and+makes+meaning+out+of+it+which+means+we+never+see+what+s+there+we+never+see+information+we+only+ever+see+what+was+useful+to+see+in+the+past+all
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=right+which+means+when+it+comes+to+perception+we+re+all+like+this+frog
found 5 videos: [['/talks/julian_assange_why_the_world_needs_wikileaks', '2010'], ['/talks/rory_sutherland_perspective_is_everything', '2012'], ['/talks/gero_miesenboeck_re_engineering_the_brain', '2010'], ['/talks/daniel_wolpert_the_real_reason_for_brains', '2011'], ['/talks/mustafa_akyol_faith_versus_tradition_in_islam', '2011']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+things+don+t+go+our+way+we+get+a+little+bit+annoyed+right++but+we+re+talking+about+perception+here+right
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+perception+underpins+everything+we+think+we+know+we+believe+our+hopes+our+dreams+the+clothes+we+wear+falling+in+love+everything+begins+with+perception
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+if+perception+is+grounded+in+our+history+it+means+we+re+only+ever+responding+according+to+what+we+ve+done+before+but+actually+it+s+a+tremendous+problem
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+how+can+we+ever+see+differently
error: request timeout
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+tell+you+a+story+about+seeing+differently++and+all+new+perceptions+begin+in+the+same+way+they+begin+with+a+question
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+problem+with+questions+is+they+create+uncertainty+now+uncertainty+is+a+very+bad+thing+it+s+evolutionarily+a+bad+thing+if+you+re+not+sure+that+s+a+predator+it+s+too+late
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=even+seasickness+is+a+consequence+of+uncertainty+right
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+go+down+below+on+a+boat++your+inner+ears+are+you+telling+you+you+re+moving+your+eyes+because+it+s+moving+in+register+with+the+boat+say+i+m+standing+still+your+brain+cannot+deal+with+the+uncertainty+of+that+information+and+it+gets+ill
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+question+why+is+one+of+the+most+dangerous+things+you+can+do+because+it+takes+you
found 8 videos: [['/talks/chris_hadfield_what_i_learned_from_going_blind_in_space', '2014'], ['/talks/beau_lotto_amy_o_toole_science_is_for_everyone_kids_included', '2012'], ['/talks/bruce_schneier_the_security_mirage', '2011'], ['/talks/yves_rossy_fly_with_the_jetman', '2011'], ['/talks/dan_pacholke_how_prisons_can_help_inmates_live_meaningful_lives', '2014'], ['/talks/van_jones_the_economic_injustice_of_plastic', '2011'], ['/talks/bertrand_piccard_my_solar_powered_adventure', '2010'], ['/talks/elon_musk_the_mind_behind_tesla_spacex_solarcity', '2013']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+yet+the+irony+is+the+only+way+we+can+ever+do+anything+new+is+to+step+into+that+space++so+how+can+we+ever+do+anything+new+well+fortunately
found 1 videos: [['/talks/beau_lotto_amy_o_toole_science_is_for_everyone_kids_included', '2012']]
selected: /talks/beau_lotto_amy_o_toole_science_is_for_everyone_kids_included
sleep 2 seconds to avoid blocking
------<226>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BecciManson_2012G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=before+march+two+thousand+and+eleven++i+was+a+photographic+retoucher+based+in+new+york+city
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+re+pale+gray+creatures+we+hide+in+dark+windowless+rooms+and+generally
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+make+skinny+models+skinnier+perfect+skin+more+perfect+and+the+impossible+possible
found 1 videos: [['/talks/becci_manson_re_touching_lives_through_photos', '2012']]
selected: /talks/becci_manson_re_touching_lives_through_photos
sleep 3 seconds to avoid blocking
------<227>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BeckyBlanton_2009G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+a+writer+and+a+journalist++and+i+m+also+an+insanely+curious+person++so+in+twenty+two+years+as+a+journalist+i+ve+learned+how+to+do+a+lot+of+new+things
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+the+things+i+learned+how+to+do+was+to+become+invisible
found 9 videos: [['/talks/becky_blanton_the_year_i_was_homeless', '2009'], ['/talks/chris_abani_telling_stories_from_africa', '2007'], ['/talks/eve_ensler_embrace_your_inner_girl', '2010'], ['/talks/ariel_garten_know_thyself_with_a_brain_scanner', '2011'], ['/talks/james_nachtwey_my_wish_let_my_photographs_bear_witness', '2007'], ['/talks/magnus_larsson_turning_dunes_into_architecture', '2009'], ['/talks/heribert_watzke_the_brain_in_your_gut', '2010'], ['/talks/jacqueline_novogratz_inspiring_a_life_of_immersion', '2011'], ['/talks/caroline_casey_looking_past_limits', '2011']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+became+one+of+the+working+homeless
found 7 videos: [['/talks/becky_blanton_the_year_i_was_homeless', '2009'], ['/talks/evan_williams_the_voices_of_twitter_users', '2009'], ['/talks/alberto_cairo_there_are_no_scraps_of_men', '2011'], ['/talks/david_macaulay_an_illustrated_journey_through_rome', '2008'], ['/talks/james_nachtwey_my_wish_let_my_photographs_bear_witness', '2007'], ['/talks/miru_kim_my_underground_art_explorations', '2009'], ['/talks/daniel_goleman_why_aren_t_we_more_compassionate', '2007']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+quit+my+job+as+a+newspaper+editor+after+my+father+died+in+february+of+that+same+year+and+decided+to+travel
found 1 videos: [['/talks/becky_blanton_the_year_i_was_homeless', '2009']]
selected: /talks/becky_blanton_the_year_i_was_homeless
sleep 5 seconds to avoid blocking
------<228>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BeebanKidron_2012S.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=evidence+suggests+that+humans+in+all+ages+and+from+all+cultures+create+their+identity+in+some+kind+of+narrative+form
found 1 videos: [['/talks/beeban_kidron_the_shared_wonder_of_film', '2012']]
selected: /talks/beeban_kidron_the_shared_wonder_of_film
sleep 2 seconds to avoid blocking
------<229>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BelPesce_2014U.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+dedicated+the+past+two+years+to+understanding+how+people+achieve+their+dreams
found 1 videos: [['/talks/bel_pesce_5_ways_to_kill_your_dreams', '2015']]
selected: /talks/bel_pesce_5_ways_to_kill_your_dreams
sleep 2 seconds to avoid blocking
------<230>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BenAmbridge_2014X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=your+general+intelligence++but+what+s+your+psy+q+how+much+do+you+know+about+what+makes+you+tick+and+how+good+are+you+at+predicting+other+people+s+behavior+or+even+your+own
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+how+much+of+what+you+think+you+know+about+psychology+is+wrong++let+s+find+out+by+counting+down+the+top+ten+myths+of
error: request timeout
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+ve+probably+heard+it+said+that+when+it+comes+to+their+psychology+it+s+almost+as+if+men+are+from+mars+and+women+are+from+venus++but+how+different+are+men+and+women+really
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+find+out+let+s+start+by+looking+at+something+on+which+men+and+women+really+do+differ+and+plotting+some+psychological+gender+differences+on+the+same+scale
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+thing+men+and+women+do+really+differ+on+is+how+far+they+can+throw
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+if+we+look+at+the+data+for+men+here+we+see+what+is+called+a+normal+distribution+curve+a+few+men+can+throw+a+ball+really+far+and+a+few+men+not+far+at+all+but+most+a+kind+of+average+distance+and+women+share+the
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=same+distribution+as+well++but+actually+there+s+quite+a+big+difference+in+fact+the+average+man+can+throw+a+ball+further+than+about+ninety+eight+percent+of+all+women
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+s+true++but+let+s+have+a+look+at+the+size+of+this+difference+it
found 2 videos: [['/talks/regina_dugan_from_mach_20_glider_to_hummingbird_drone', '2012'], ['/talks/jonathan_haidt_can_a_divided_america_heal', '2016']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+tiny+the+lines+are+so+close+together+they+almost+overlap+in+fact++the+average+woman+is+better+than+thirty+three+percent+of+all+men+and+of+course+if+that+was+fifty+percent+then+the+two+genders+would+be+exactly+equal
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+worth+bearing+in+mind+that+this+difference+and+the+next+one+i+ll+show+you+are+pretty+much+the+biggest
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=psychological+gender+differences+ever+discovered+in+psychology++so+here+s+the+next+one+any+psychologist+will+tell+you+that+women+are+better+with+language+and+grammar+than+men+so+here+s+performance+on+the+standardized+grammar
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=test+there+go+the+women+there+go+the+men+again++yes+women+are+better+on+average+but+the+lines+are+so+close+that+thirty+three+percent+of+men+are+better+than+the+average+woman++and+again+if+it+was+fifty+percent++that+would+represent+complete
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=case+of+mars+and+venus+it+s+more+a+case+of+if+anything+mars+and+snickers+basically+the+same+but
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+s+maybe+slightly+nuttier+than+the+other
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+we+ve+got+you+warmed+up+let+s+psychoanalyze+you+using+the+famous+rorschach+inkblot+test+so+you+can+probably+see+two+i+dunno+two+bears+or+two+people+or+something+but+what+do+you+think+they+re+doing+put+your+hand+up+if+you+think+they+re+saying+hello
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+means+you+re+a+friendly+person++if+you+think+they+re+fighting+you+re+a+bit+more+of+a+nasty+aggressive+person+are+you+a+lover+or+a+fighter+basically
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+about+this+one+this+isn+t+really+a+voting+one+so+on+three+everyone+shout+out+what+you+see+one+two+three
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+heard+hamster+who+said+hamster+that+was+very+worrying+a+guy+there+said
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hamster+++well+you+should+see
found 3 videos: [['/talks/elizabeth_lesser_say_your_truths_and_seek_them_in_others', '2016'], ['/talks/jarrett_j_krosoczka_how_a_boy_became_an_artist', '2013'], ['/talks/jonathan_haidt_religion_evolution_and_the_ecstasy_of_self_transcendence', '2012']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+kind+of+two+legged+animal+here+and+then+the+mirror
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=image+of+them+there+if+you+didn+t+then+this+means+that+you
found 5 videos: [['/talks/jill_shargaa_please_please_people_let_s_put_the_awe_back_in_awesome', '2014'], ['/talks/fei_fei_li_how_we_re_teaching_computers_to_understand_pictures', '2015'], ['/talks/kelli_jean_drinkwater_enough_with_the_fear_of_fat', '2016'], ['/talks/juan_enriquez_will_our_kids_be_a_different_species', '2012'], ['/talks/al_gore_the_case_for_optimism_on_climate_change', '2016']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+difficulty+processing+complex+situations+where+there+s+a+lot+going+on
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=except+of+course++it+doesn+t+mean+that+at+all+rorschach+inkblot+tests+have+basically+no+validity+when+it+comes+to+diagnosing+people+s
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+not+used+by+modern+day+psychologists
found 5 videos: [['/talks/glenn_greenwald_why_privacy_matters', '2014'], ['/talks/david_pizarro_the_strange_politics_of_disgust', '2012'], ['/talks/hector_garcia_we_train_soldiers_for_war_let_s_train_them_to_come_home_too', '2016'], ['/talks/jonathan_haidt_religion_evolution_and_the_ecstasy_of_self_transcendence', '2012'], ['/talks/hannah_fry_the_mathematics_of_love', '2015']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+fact+one+recent+study+found+that+when+you+do+try+to+diagnose+people+s+personalities+using+rorschach+inkblot+tests+schizophrenia+was+diagnosed+in+about+one+sixth+of+apparently+perfectly+normal+participants
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+if+you+didn+t+do+that+well+on+this+maybe+you+are+not+a+very+visual+type+of+person++so+let+s+do+another+quick+quiz+to+find+out
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+making+a+cake+do+you+prefer+to+so+hands+up+for+each+one+again+do+you+prefer+to+use+a+recipe+book+with+pictures
found 1 videos: [['/talks/ben_ambridge_9_myths_about_psychology_debunked', '2015']]
selected: /talks/ben_ambridge_9_myths_about_psychology_debunked
sleep 4 seconds to avoid blocking
------<231>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BenCameron_2010X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+am+a+cultural+omnivore+one+whose+daily+commute+is+made+possible+by+attachment+to+an+ipod
found 1 videos: [['/talks/ben_cameron_why_the_live_arts_matter', '2010']]
selected: /talks/ben_cameron_why_the_live_arts_matter
sleep 5 seconds to avoid blocking
------<232>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BenDunlap_2007.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=language+spoken+by+hungarians+for+which+given+the+fact+that+cognitive+diversity+is+at+least+as+threatened+as+biodiversity+on+this+planet
found 1 videos: [['/talks/bernie_dunlap_the_life_long_learner', '2008']]
selected: /talks/bernie_dunlap_the_life_long_learner
sleep 4 seconds to avoid blocking
------<233>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BenedettaBerti_2015U.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+the+past+decade++i+ve+been+studying+non+state+armed+groups
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=armed+organizations+like+terrorists+insurgents+or+militias
found 1 videos: [['/talks/benedetta_berti_the_surprising_way_groups_like_isis_stay_in_power', '2015']]
selected: /talks/benedetta_berti_the_surprising_way_groups_like_isis_stay_in_power
sleep 2 seconds to avoid blocking
------<234>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BenGoldacre_2011G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+a+doctor+but+i+kind+of+slipped+sideways+into+research+and+now+i+m+an+epidemiologist++and+nobody+really+knows+what+epidemiology+is+epidemiology+is+the+science+of+how+we+know+in+the+real+world+if+something+is+good+for+you+or+bad+for+you+and+it+s+best+understood
found 1 videos: [['/talks/ben_goldacre_battling_bad_science', '2011']]
selected: /talks/ben_goldacre_battling_bad_science
sleep 1 seconds to avoid blocking
------<235>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BenGoldacre_2012P.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+chap+here+he+thinks+he+can+tell+you+the+future+his+name+is+nostradamus+although+here+the+sun+have+made+him+look+a+little+bit+like+sean+connery+laughter+and
found 1 videos: [['/talks/ben_goldacre_what_doctors_don_t_know_about_the_drugs_they_prescribe', '2012']]
selected: /talks/ben_goldacre_what_doctors_don_t_know_about_the_drugs_they_prescribe
sleep 4 seconds to avoid blocking
------<236>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BenjaminBarber_2013G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=democracy+is+in+trouble+no+question+about+that+and+it+comes+in+part+from+a+deep+dilemma+in+which+it+is+embedded
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+increasingly+irrelevant+to+the+kinds+of+decisions+we+face+that+have+to+do+with
error: request timeout
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+cross+border+problem+with+hiv+a+transnational+problem+with+markets+and+immigration+something+that+goes+beyond+national+borders+with+terrorism+with+war+all+now
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=problems+in+fact+we+live+in+a
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=look+for+solutions+in+politics+and+in+democracy
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+are+faced+with+political+institutions+designed+four+hundred+years+ago++autonomous++sovereign
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+jurisdictions+and+territories+separate+from+one+another+each+claiming+to+be+able+to+solve+the+problem+of+its+own+people
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=transnational+world+of+problems+and+challenges
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=world+of+political+institutions+in+that+dilemma+lies+the+central+problem+of+democracy
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+like+many+others+i+ve+been+thinking+about+what+can+one+do+about+this+this+asymmetry
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+archaic+and+increasingly+dysfunctional+political+institutions+like
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+my+suggestion+is+that+we+change+the+subject+that+we+stop+talking
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+nations+about+bordered+states+and+we+start+talking+about+cities
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+i+think+you+will+find+when+we+talk+about+cities+we+are+talking+about
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+political+institutions+in+which+civilization+and+culture+were+born++we+are+talking+about+the+cradle+of+democracy++we+are+talking+about+the+venues
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+which+those+public+spaces+where+we+come+together+to+create+democracy++and+at+the+same+time
found 8 videos: [['/talks/jake_barton_the_museum_of_you', '2013'], ['/talks/benjamin_barber_why_mayors_should_rule_the_world', '2013'], ['/talks/enrique_penalosa_why_buses_represent_democracy_in_action', '2013'], ['/talks/clay_shirky_how_the_internet_will_one_day_transform_government', '2012'], ['/talks/eric_x_li_a_tale_of_two_political_systems', '2013'], ['/talks/kelli_anderson_design_to_challenge_reality', '2012'], ['/talks/niall_ferguson_the_6_killer_apps_of_prosperity', '2011'], ['/talks/jamie_bartlett_how_the_mysterious_dark_net_is_going_mainstream', '2015']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=great+names++the+place+de+la+bastille
found 1 videos: [['/talks/benjamin_barber_why_mayors_should_rule_the_world', '2013']]
selected: /talks/benjamin_barber_why_mayors_should_rule_the_world
sleep 4 seconds to avoid blocking
------<237>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BenjaminWallace_2008P.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+sold+for+one+hundred+and+five+thousand+pounds+nine+times+the+previous+world+record
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+buyer+was+kip+forbes++son+of+one+of+the+most+flamboyant+millionaires+of+the+20th+century+the+original+owner+of+the+bottle+turned+out+to+be+one+of+the+most+enthusiastic+wine+buffs+of+the++18th+century
found 1 videos: [['/talks/benjamin_wallace_the_price_of_happiness', '2008']]
selected: /talks/benjamin_wallace_the_price_of_happiness
sleep 5 seconds to avoid blocking
------<238>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BenjaminZander_2008.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=probably+a+lot+of+you+know+the+story+of+the+two+salesmen+who+went+down+to+africa+in+the+1900s+they+were+sent+down+to+find+if+there+was+any+opportunity+for+selling+shoes+and+they+wrote+telegrams+back+to+manchester
found 1 videos: [['/talks/benjamin_zander_the_transformative_power_of_classical_music', '2008']]
selected: /talks/benjamin_zander_the_transformative_power_of_classical_music
sleep 2 seconds to avoid blocking
------<239>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BenKacyra_2011G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+d+like+to+start+with+a+short+story+it+s+about+a+little+boy
found 1 videos: [['/talks/andrew_fitzgerald_adventures_in_twitter_fiction', '2013']]
selected: /talks/andrew_fitzgerald_adventures_in_twitter_fiction
sleep 2 seconds to avoid blocking
------<240>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BenKatchor_2002.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+read+a+few+strips+these+are+most+of+these+are+from+a
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=monthly+page+i+do+in+and+architecture+and+design+magazine+called+metropolis+and+the+first+story+is+called+the+faulty+switch
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=another+beautifully+designed+new+building+ruined+by+the+sound+of+a+common+wall+light+switch
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+fine+during+the+day+when+the+main+rooms+are+flooded+with+sunlight
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=everything+changes++the+architect+spent+hundreds+of+hours+designing+the+burnished+brass
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=switchplates+for+his+new+office+tower+and+then+left+it+to+a+contractor+to+install+these
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=79+cent+switches+behind+them++we+know+instinctively+where+to+reach+when+we+enter+a+dark+room+we+automatically+throw+the+little+nub+of+plastic+upward
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+the+sound+we+are+greeted+with+as+the+room+is+bathed+in+the+simulated+glow+of+late+afternoon+light
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=recalls+to+mind+a+dirty+men+s+room+in+the+rear+of+a+greek+coffee+shop
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+sound+colors+our+first+impression+of+any+room+it+can+t+be+helped++but+where
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=commonly+described+as+a+click+come+from+is+it+simply+the+byproduct+of+a+crude+mechanical+action
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+is+it+an+imitation+of+one+half+the+set+of+sounds+we+make+to+express+disappointment++the+often+dental+consonant+of+no
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=language+or+is+it+the+amplified+sound+of+a+synapse+firing+in+the+brain+of+a+cockroach
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+tried+their+best+to+muffle+this+sound+with+mercury+switches+and+silent+knob+controls
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+today+these+improvements+seem+somehow+inauthentic
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+click+is+the+modern+triumphal+clarion+proceeding+us+through+life
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=announcing+our+entry+into+every+lightless+room
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+sound+made+flicking+a+wall+switch+off+is+of+a+completely+different+nature
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+has+a+deep+melancholy+ring
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=children+don+t+like+it+it+s+why+they+leave+lights+on
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+wouldn+t+it+be+an+easy+matter+to+wire+a+wall+switch+so+that+it+triggers+the+muted+horn+of+a+steam+ship
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+the+recorded+crowing+of+a+rooster
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+the+distant+peel+of+thunder
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thomas+edison+went+through+thousands+of+unlikely+substances+before+he+came+upon+the+right+one
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+the+filament+of+his+electric+light+bulb
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=why+have+we+settled+so+quickly+for+the+sound+of+its+switch
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+the+end+of+that+the
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=story+is+called+in+praise+of+the+taxpayer+that+so+many+of+the+city+s+most+venerable+taxpayers+have
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=survived+yet+another+commercial+building+boom+is+cause+for+celebration+these+one+or+two+story+structures+designed
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+yield+only+enough+income+to+cover+the+taxes+on+the+land+on+which+they+stand+were+not+meant+to+be+permanent+buildings
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=yet+for+one+reason+or+another+they+have+confounded+the+efforts+of+developers+to+be+combined+into+lots+suitable+for+high+rise+construction
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=although+they+make+no+claim+to+architectural+beauty++they+are+in+their+perfect+temporariness+a+delightful+alternative
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+the+large+scale+structures+that+might+someday+take+their+place
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+most+perfect+examples+occupy+corner+lots+they+offer+a+pleasant+respite+from+the
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=development+around+them+a+break+of+light+and+air
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=an+architectural+biding+of+time+so+buried+in+signage+are+these
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+it+often+takes+a+moment+to+distinguish+the+modern+specially+constructed+taxpayer+from+its+neighbor
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+small+commercial+building+from+an+earlier+century+whose+upper+floors+have+been+sealed++and+whose+groundfloor+space+now+functions+as+a+taxpayer++the+few+surfaces
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+necktie+stores+now+these+provisional+structures+have+in+some+cases++remained+standing
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+the+better+part+of+a+human+lifetime
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+temporary+building+is+a+triumph+of+modern+industrial+organization+a+healthy+sublimation+of+the+urge+to+build
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+proof+that+not+every+architectural+idea+need+be+set+in+stone
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+the+ancient+egyptians+the+lap+was+a+platform+upon+which+to+place+the+earthly+possessions+of+the+dead
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thirty+cubits+from+foot+to+knee
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+not+until+the+14th+century+that+an+italian+painter+recognized+the+lap
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+a+grecian+temple++upholstered+in+flesh+and+cloth
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=over+the+next+two+hundred+years+we+see+the+infant+christ+go+from+a+sitting+to+a+standing+position+on+the+virgin+s+lap+and+then+back+again
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=every+child+recapitulates+this+ascension++straddling+one+or+both+legs+sitting+sideways+or+leaning+against+the+body
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=from+there+to+the+modern+ventriloquist+s+dummy+is+but+a+brief+moment+in+history
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+were+late+for+school+again+this+morning
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+ventriloquist+must+first+make+us+believe+that+a+small+boy+is+sitting+on+his+lap
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+illusion+of+speech+follows+incidentally
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+have+you+got+to+say+for+yourself+jimmy
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+adults+we+admire+the+lap+from+a+nostalgic+distance
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+have+fading+memories+of+that+provisional+temple++erected+each+time+an+adult+sat+down
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+a+crowded+bus+there+was+always+a+lap+to+sit+on
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+is+children+and+teenage+girls+who+are+most+keenly
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+understand+the+structural+integrity+of+a+deep+avuncular+lap+as+compared+to+the+shaky+arrangement+of+a+neurotic+niece+in+high+heels
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+reason+to+consider+the+mental+health+of+any+architect+before+granting+an+important+commission++the+bathrooms+and+kitchens+will+of+course+have+no+windows
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+lap+of+luxury+is+an+architectural
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=construct+of+childhood+which+we+seek+in+vain+as+adults+to+employ
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=next+story+is+called+the+haverpiece+collection+a+nondescript+warehouse+visible+for+a+moment
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=from+the+northbound+lanes+of+the+prykushko+expressway
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=serves+as+the+temporary+resting+place
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+the+haverpiece+collection+of+european+dried+fruit
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+profound+convolutions+on+the+surface+of+a+dried+cherry++the+foreboding+sheen+of+an+extra+large+date
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=do+you+remember+wandering+as+a+child+through+those+dark+wooden+storefront+galleries+where+everything+was+displayed+in+poorly+labeled+roach+proof+bins
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=pears+dried+in+the+form+of+genital+organs+apricot+halves+like+the+ears+of
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+maurice+haverpiece+a+wealthy+prune+juice+bottler+and+consolidated+to+form+the+core+collection
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+an+art+form+it+lies+somewhere+between
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+rest+of+the+collection+remains+here++stored+in+plain+brown+paper+bags+until+funds+can+be+raised+to+build+a+permanent+museum+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=center+a+shoe+made+of+apricot+leather+for+the+daughter+of+a+czar
found 0 videos: []
error: no video is found.
sleep 4 seconds to avoid blocking
------<241>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BenoitMandelbrot_2010.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+topic+i+m+going+to+discuss+is+one+which+is+in+a+certain+sense+very+peculiar+because+it+s+very+old+roughness+is+part+of+human+life+forever
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=forever+and+ancient+authors+have+written+about+it++it+was+very+much+uncontrollable++and
found 1 videos: [['/talks/benoit_mandelbrot_fractals_and_the_art_of_roughness', '2010']]
selected: /talks/benoit_mandelbrot_fractals_and_the_art_of_roughness
sleep 3 seconds to avoid blocking
------<242>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BenSaunders_2005.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ben+saunders+i+specialize+in+dragging+heavy+things+around+cold+places+on+may++11th+last+year+i+stood+alone+at+the+north
found 1 videos: [['/talks/ben_saunders_why_did_i_ski_to_the_north_pole', '2006']]
selected: /talks/ben_saunders_why_did_i_ski_to_the_north_pole
sleep 2 seconds to avoid blocking
------<243>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BenSaunders_2012S.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=take+an+awful+lot+to+flummox+me+intellectually+but+i+m+going+to+read+this+question+from
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=an+interview+earlier+this+year+philosophically++does+the+constant+supply+of+information+steal+our+ability+to+imagine+or
found 1 videos: [['/talks/ben_saunders_why_bother_leaving_the_house', '2012']]
selected: /talks/ben_saunders_why_bother_leaving_the_house
sleep 4 seconds to avoid blocking
------<244>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BenSaunders_2014.stm
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+is+ted+i+stand+here+before+you+this+evening+as+an+expert+in+dragging+heavy+stuff+around
found 1 videos: [['/talks/ben_saunders_to_the_south_pole_and_back_the_hardest_105_days_of_my_life', '2014']]
selected: /talks/ben_saunders_to_the_south_pole_and_back_the_hardest_105_days_of_my_life
sleep 1 seconds to avoid blocking
------<245>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BenWellington_2014X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=six+thousand+miles+of+road+six+hundred+miles+of+subway+track+four+hundred+miles+of+bike+lanes
found 1 videos: [['/talks/ben_wellington_how_we_found_the_worst_place_to_park_in_new_york_city_using_big_data', '2015']]
selected: /talks/ben_wellington_how_we_found_the_worst_place_to_park_in_new_york_city_using_big_data
sleep 4 seconds to avoid blocking
------<246>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BernieKrause_2013G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+first+began+recording+wild+soundscapes+forty+five+years+ago
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+had+no+idea+that+ants+insect+larvae+sea+anemones+and+viruses
found 1 videos: [['/talks/bernie_krause_the_voice_of_the_natural_world', '2013']]
selected: /talks/bernie_krause_the_voice_of_the_natural_world
sleep 1 seconds to avoid blocking
------<247>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BertrandPiccard_2009G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+learned+a+lot+of+things+about+ballooning+especially+at+the+end+of+these+balloon+flights+around+the+world+i+did+with+brian+jones+when+i+took+this+picture
found 1 videos: [['/talks/bertrand_piccard_my_solar_powered_adventure', '2010']]
selected: /talks/bertrand_piccard_my_solar_powered_adventure
sleep 5 seconds to avoid blocking
------<248>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BethNoveck_2012G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+when+the+white+house+was+built+in+the+early++19th+century+it+was+an+open+house++neighbors+came+and+went++under+president+adams+a+local+dentist+happened+by+he+wanted+to+shake+the+president+s+hand
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+president+dismissed+the+secretary+of+state+whom+he+was+conferring+with+and+asked+the+dentist+if+he+would+remove+a
found 1 videos: [['/talks/beth_noveck_demand_a_more_open_source_government', '2012']]
selected: /talks/beth_noveck_demand_a_more_open_source_government
sleep 4 seconds to avoid blocking
------<249>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BettinaWarburg_2016T.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=economists+have+been+exploring+people+s+behavior+for+hundreds+of+years
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+we+make+decisions+how+we+act+individually+and+in+groups+how+we+exchange+value
found 1 videos: [['/talks/bettina_warburg_how_the_blockchain_will_radically_transform_the_economy', '2016']]
selected: /talks/bettina_warburg_how_the_blockchain_will_radically_transform_the_economy
sleep 2 seconds to avoid blocking
------<250>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BeverlyJoubertandDereckJoubert_2010W.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+african+wilderness+and+protecting+the+african+wilderness+and+so+what+we+ve+done+is+we+ve+focused+on+iconic+cats++and+i+know
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=human+suffering+and+poverty+and+even+climate+change
found 2 videos: [['/talks/beverly_dereck_joubert_life_lessons_from_big_cats', '2010'], ['/talks/jane_mcgonigal_gaming_can_make_a_better_world', '2010']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=would+wonder++why+worry+about+a+few+cats
found 7 videos: [['/talks/beverly_dereck_joubert_life_lessons_from_big_cats', '2010'], ['/talks/eric_giler_a_demo_of_wireless_electricity', '2009'], ['/talks/paul_maccready_nature_vs_humans', '2008'], ['/talks/jamais_cascio_tools_for_a_better_world', '2009'], ['/talks/dave_debronkart_meet_e_patient_dave', '2011'], ['/talks/charles_elachi_the_story_behind_the_mars_rovers', '2008'], ['/talks/bruce_schneier_the_security_mirage', '2011']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+today+we+re+here+to+share+with+you+a+message+that+we+have+learned+from+a+very+important+and+special+character
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+leopard+dereck+joubert+well+our+lives+have+basically+been+like
found 1 videos: [['/talks/beverly_dereck_joubert_life_lessons_from_big_cats', '2010']]
selected: /talks/beverly_dereck_joubert_life_lessons_from_big_cats
sleep 3 seconds to avoid blocking
------<251>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BilalBomani_2011X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+i+m+going+to+do+is+i+m+going+to+explain+to+you+an+extreme+green+concept
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+was+developed+at+nasa+s+glenn+research+center
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+cleveland+ohio++but+before+i+do+that+we+have+to+go+over+the+definition+of+what+green+is++cause+a+lot+of+us+have+a+different+definition+of
found 1 videos: [['/talks/bilal_bomani_plant_fuels_that_could_power_a_jet', '2012']]
selected: /talks/bilal_bomani_plant_fuels_that_could_power_a_jet
sleep 3 seconds to avoid blocking
------<252>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BillClinton_2007.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+thought+in+getting+up+to+my+ted+wish
found 8 videos: [['/talks/bill_clinton_my_wish_rebuilding_rwanda', '2007'], ['/talks/dave_eggers_my_wish_once_upon_a_school', '2008'], ['/talks/jehane_noujaim_my_wish_a_global_day_of_film', '2006'], ['/talks/larry_brilliant_my_wish_help_me_stop_pandemics', '2006'], ['/talks/j_j_abrams_the_mystery_box', '2008'], ['/talks/erin_mckean_the_joy_of_lexicography', '2007'], ['/talks/sarah_jones_a_one_woman_global_village', '2009'], ['/talks/tom_rielly_a_comic_sendup_of_ted2006', '2007']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+would+try+to+begin+by+putting+in+perspective
found 7 videos: [['/talks/jill_tarter_join_the_seti_search', '2009'], ['/talks/bill_clinton_my_wish_rebuilding_rwanda', '2007'], ['/talks/susan_blackmore_memes_and_temes', '2008'], ['/talks/steven_levitt_surprising_stats_about_child_carseats', '2008'], ['/talks/al_gore_new_thinking_on_the_climate_crisis', '2008'], ['/talks/paul_maccready_nature_vs_humans', '2008'], ['/talks/tim_brown_tales_of_creativity_and_play', '2008']]
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+do+and+how+it+fits+with
found 6 videos: [['/talks/adam_savage_my_obsession_with_objects_and_the_stories_they_tell', '2009'], ['/talks/eve_ensler_happiness_in_body_and_soul', '2006'], ['/talks/robert_wright_progress_is_not_a_zero_sum_game', '2007'], ['/talks/bonnie_bassler_how_bacteria_talk', '2009'], ['/talks/ray_kurzweil_a_university_for_the_coming_singularity', '2009'], ['/talks/evgeny_morozov_how_the_net_aids_dictatorships', '2009']]
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+live+in+a+world+that+everyone+knows+is+interdependent++but+insufficient
found 1 videos: [['/talks/bill_clinton_my_wish_rebuilding_rwanda', '2007']]
selected: /talks/bill_clinton_my_wish_rebuilding_rwanda
sleep 4 seconds to avoid blocking
------<253>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BillDavenhall_2009P.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=can+geographic+information+make+you+healthy
found 4 videos: [['/talks/bill_davenhall_your_health_depends_on_where_you_live', '2010'], ['/talks/franco_sacchi_a_tour_of_nollywood_nigeria_s_booming_film_industry', '2008'], ['/talks/greg_stone_saving_the_ocean_one_island_at_a_time', '2010'], ['/talks/jane_goodall_what_separates_us_from_chimpanzees', '2007']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+two+thousand+and+one+i+got+hit+by+a+train
found 14 videos: [['/talks/anna_deavere_smith_four_american_characters', '2007'], ['/talks/dyan_denapoli_the_great_penguin_rescue', '2011'], ['/talks/bill_clinton_my_wish_rebuilding_rwanda', '2007'], ['/talks/rachel_botsman_the_case_for_collaborative_consumption', '2010'], ['/talks/todd_kuiken_a_prosthetic_arm_that_feels', '2011'], ['/talks/seth_godin_the_tribes_we_lead', '2009'], ['/talks/bill_davenhall_your_health_depends_on_where_you_live', '2010'], ['/talks/charlie_todd_the_shared_experience_of_absurdity', '2011'], ['/talks/sam_richards_a_radical_experiment_in_empathy', '2011'], ['/talks/aparna_rao_high_tech_art_with_a_sense_of_humor', '2011'], ['/talks/james_nachtwey_my_wish_let_my_photographs_bear_witness', '2007'], ['/talks/karen_tse_how_to_stop_torture', '2011'], ['/talks/robert_neuwirth_the_hidden_world_of_shadow_cities', '2007'], ['/talks/thulasiraj_ravilla_how_low_cost_eye_care_can_be_world_class', '2009']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+train+was+a+heart+attack+i+found+myself+in+a+hospital+in+an
found 2 videos: [['/talks/bill_davenhall_your_health_depends_on_where_you_live', '2010'], ['/talks/susan_lim_transplant_cells_not_organs', '2011']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=recuperating+from+emergency+surgery++and+i+suddenly+realized+something+that+i+was+completely+in+the+dark
found 1 videos: [['/talks/bill_davenhall_your_health_depends_on_where_you_live', '2010']]
selected: /talks/bill_davenhall_your_health_depends_on_where_you_live
sleep 2 seconds to avoid blocking
------<254>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BillDoyle_2011P.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+our+society+s+life+is+touched+by+cancer+if+not+personally+then+through+a+loved+one+a+family+member++colleague+friend
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+once+our+lives+are+touched+by+cancer
found 7 videos: [['/talks/bill_doyle_treating_cancer_with_electric_fields', '2012'], ['/talks/david_agus_a_new_strategy_in_the_war_on_cancer', '2010'], ['/talks/neil_pasricha_the_3_a_s_of_awesome', '2011'], ['/talks/david_kelley_how_to_build_your_creative_confidence', '2012'], ['/talks/may_el_khalil_making_peace_is_a_marathon', '2013'], ['/talks/nick_veasey_exposing_the_invisible', '2010'], ['/talks/r_a_mashelkar_breakthrough_designs_for_ultra_low_cost_products', '2010']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+quickly+learn+that+there+are+basically
found 9 videos: [['/talks/dimitar_sasselov_how_we_found_hundreds_of_potential_earth_like_planets', '2010'], ['/talks/luis_von_ahn_massive_scale_online_collaboration', '2011'], ['/talks/andreas_schleicher_use_data_to_build_better_schools', '2013'], ['/talks/denise_herzing_could_we_speak_the_language_of_dolphins', '2013'], ['/talks/allan_jones_a_map_of_the_brain', '2011'], ['/talks/laurie_santos_a_monkey_economy_as_irrational_as_ours', '2010'], ['/talks/sugata_mitra_the_child_driven_education', '2010'], ['/talks/seth_berkley_hiv_and_flu_the_vaccine_strategy', '2010'], ['/talks/bill_doyle_treating_cancer_with_electric_fields', '2012']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=three+weapons+or+three+tools+that+are+available+to+fight+the+disease++surgery+radiation+and+chemotherapy
found 1 videos: [['/talks/bill_doyle_treating_cancer_with_electric_fields', '2012']]
selected: /talks/bill_doyle_treating_cancer_with_electric_fields
sleep 1 seconds to avoid blocking
------<255>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BillFord_2011.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+birth+and+by+choice++i+ve+been+involved+with+the+auto+industry+my+entire+life++and+for+the+past+thirty+years++i+ve+worked+at+ford+motor+company
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+for+most+of+those+years++i+worried+about+how+am+i+going+to
found 5 videos: [['/talks/peter_attia_is_the_obesity_crisis_hiding_a_bigger_problem', '2013'], ['/talks/dambisa_moyo_is_china_the_new_idol_for_emerging_economies', '2013'], ['/talks/kavita_ramdas_radical_women_embracing_tradition', '2010'], ['/talks/esther_perel_the_secret_to_desire_in_a_long_term_relationship', '2013'], ['/talks/bill_ford_a_future_beyond_traffic_gridlock', '2011']]
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+today+i+worry+about+what+if+all+we+do+is+sell+more+cars+and+trucks
found 2 videos: [['/talks/bill_ford_a_future_beyond_traffic_gridlock', '2011'], ['/talks/amory_lovins_a_40_year_plan_for_energy', '2012']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+happens+when+the+number+of+vehicles+on+the+road+doubles++triples+or+even+quadruples
found 2 videos: [['/talks/bill_ford_a_future_beyond_traffic_gridlock', '2011'], ['/talks/amory_lovins_a_40_year_plan_for_energy', '2012']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+life+is+guided+by+two+great+passions+and+the+first+is+automobiles
found 1 videos: [['/talks/bill_ford_a_future_beyond_traffic_gridlock', '2011']]
selected: /talks/bill_ford_a_future_beyond_traffic_gridlock
sleep 1 seconds to avoid blocking
------<256>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BillGates_2009.stm
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=last+week+talking+about+the+work+of+the+foundation++sharing+some+of+the+problems
found 5 videos: [['/talks/bill_gates_mosquitos_malaria_and_education', '2009'], ['/talks/stewart_brand_the_long_now', '2008'], ['/talks/stuart_brown_play_is_more_than_just_fun', '2009'], ['/talks/anil_gupta_india_s_hidden_hotbeds_of_invention', '2010'], ['/talks/brewster_kahle_a_free_digital_library', '2008']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+warren+buffet+had+recommended+i+do+that+being+honest+about+what+was+going+well+what+wasn+t+and+making+it+kind+of+an+annual+thing
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+goal+i+had+there+was+to+draw+more+people+in
found 11 videos: [['/talks/nic_marks_the_happy_planet_index', '2010'], ['/talks/josette_sheeran_ending_hunger_now', '2011'], ['/talks/john_maeda_my_journey_in_design', '2009'], ['/talks/bill_gates_mosquitos_malaria_and_education', '2009'], ['/talks/pranav_mistry_the_thrilling_potential_of_sixthsense_technology', '2009'], ['/talks/marian_bantjes_intricate_beauty_by_design', '2010'], ['/talks/elizabeth_lesser_take_the_other_to_lunch', '2011'], ['/talks/dennis_hong_making_a_car_for_blind_drivers', '2011'], ['/talks/clay_shirky_institutions_vs_collaboration', '2008'], ['/talks/stewart_brand_the_long_now', '2008'], ['/talks/paola_antonelli_treat_design_as_art', '2008']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+work+on+those+problems+because+i+think+there+are+some+very+important+problems+that+don+t+get+worked+on+naturally+that+is+the+market+does+not+drive
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+scientists+the+communicators+the+thinkers+the+governments
found 1 videos: [['/talks/bill_gates_mosquitos_malaria_and_education', '2009']]
selected: /talks/bill_gates_mosquitos_malaria_and_education
sleep 2 seconds to avoid blocking
------<257>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BillGates_2011U.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+about+state+budgets+this+is+probably+the+most+boring+topic+of+the+whole+morning++but+i+want+to+tell+you+i+think+it+s+an+important+topic
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+we+need+to+care+about
found 4 videos: [['/talks/damon_horowitz_we_need_a_moral_operating_system', '2011'], ['/talks/amanda_bennett_we_need_a_heroic_narrative_for_death', '2013'], ['/talks/bryan_stevenson_we_need_to_talk_about_an_injustice', '2012'], ['/talks/lucien_engelen_crowdsource_your_health', '2012']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=state+budgets+are+big+big+money
found 18 videos: [['/talks/bill_gates_how_state_budgets_are_breaking_us_schools', '2011'], ['/talks/mariana_mazzucato_government_investor_risk_taker_innovator', '2013'], ['/talks/paddy_ashdown_the_global_power_shift', '2012'], ['/talks/jamie_oliver_teach_every_child_about_food', '2010'], ['/talks/clay_shirky_how_the_internet_will_one_day_transform_government', '2012'], ['/talks/stefan_larsson_what_doctors_can_learn_from_each_other', '2013'], ['/talks/charmian_gooch_meet_global_corruption_s_hidden_players', '2013'], ['/talks/joshua_prince_ramus_building_a_theater_that_remakes_itself', '2010'], ['/talks/david_cameron_the_next_age_of_government', '2010'], ['/talks/jason_pontin_can_technology_solve_our_big_problems', '2013'], ['/talks/paul_pholeros_how_to_reduce_poverty_fix_homes', '2013'], ['/talks/martin_villeneuve_how_i_made_an_impossible_film', '2013'], ['/talks/majora_carter_3_stories_of_local_eco_entrepreneurship', '2010'], ['/talks/stefan_sagmeister_7_rules_for_making_more_happiness', '2011'], ['/talks/adam_davidson_what_we_learned_from_teetering_on_the_fiscal_cliff', '2012'], ['/talks/afra_raymond_three_myths_about_corruption', '2013'], ['/talks/kary_mullis_play_experiment_discover', '2009'], ['/talks/jarrett_j_krosoczka_how_a_boy_became_an_artist', '2013']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ll+show+you+the+numbers+and+they+get+very+little+scrutiny++the+understanding+is+very+low++many+of+the+people+involved
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+special+interests+or+short+term+interests+that+get+them+not+thinking+about+what+the+implications+of+the+trends+are
found 2 videos: [['/talks/bill_gates_how_state_budgets_are_breaking_us_schools', '2011'], ['/talks/juan_enriquez_the_next_species_of_human', '2009']]
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+the+key+for+our+future+they+re+the+key+for+our+kids+most
found 7 videos: [['/talks/michael_merzenich_growing_evidence_of_brain_plasticity', '2009'], ['/talks/tim_jackson_an_economic_reality_check', '2010'], ['/talks/aimee_mullins_the_opportunity_of_adversity', '2010'], ['/talks/dan_meyer_math_class_needs_a_makeover', '2010'], ['/talks/andrew_stanton_the_clues_to_a_great_story', '2012'], ['/talks/louise_fresco_we_need_to_feed_the_whole_world', '2009'], ['/talks/parag_khanna_mapping_the_future_of_countries', '2009']]
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=whether+it+s+k+through+twelve+or+the+great+universities+or+community+colleges+most+of+the+money+for+those+things
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+coming+out+of+these+state+budgets++but+we+have+a+problem
found 14 videos: [['/talks/bill_gates_how_state_budgets_are_breaking_us_schools', '2011'], ['/talks/mariana_mazzucato_government_investor_risk_taker_innovator', '2013'], ['/talks/paddy_ashdown_the_global_power_shift', '2012'], ['/talks/sanjay_pradhan_how_open_data_is_changing_international_aid', '2012'], ['/talks/rose_george_let_s_talk_crap_seriously', '2013'], ['/talks/jonathan_haidt_how_common_threats_can_make_common_political_ground', '2013'], ['/talks/juan_enriquez_the_next_species_of_human', '2009'], ['/talks/alex_tabarrok_how_ideas_trump_crises', '2009'], ['/talks/toby_eccles_invest_in_social_change', '2013'], ['/talks/paul_pholeros_how_to_reduce_poverty_fix_homes', '2013'], ['/talks/arunachalam_muruganantham_how_i_started_a_sanitary_napkin_revolution', '2012'], ['/talks/majora_carter_3_stories_of_local_eco_entrepreneurship', '2010'], ['/talks/beth_noveck_demand_a_more_open_source_government', '2012'], ['/talks/adam_davidson_what_we_learned_from_teetering_on_the_fiscal_cliff', '2012']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+s+the+overall+picture++u+s+economy+is+big+fourteen+point+seven+trillion
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+this+is+combining+the+federal+level++which+is+the+largest+the+state+level+and+the+local+level+and+it+s+really+in+this+combined+way+that+you+get+an+overall+sense+of+what+s+going+on+because
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+a+lot+of+complex+things+like+medicaid+and+research+money+that+flow+across+those+boundaries
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=deficit+sort+of+a+mind+blowing+number
found 1 videos: [['/talks/bill_gates_how_state_budgets_are_breaking_us_schools', '2011']]
selected: /talks/bill_gates_how_state_budgets_are_breaking_us_schools
sleep 5 seconds to avoid blocking
------<258>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BillGates_2013S.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=needs+a+coach++it+doesn+t+matter+whether+you+re+a+basketball+player+a+tennis+player+a+gymnast+or+a+bridge+player
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+bridge+coach++sharon+osberg+says+there+are+more+pictures+of+the+back+of+her+head+than+anyone+else+s+in+the+world
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sorry+sharon++here+you+go
found 2 videos: [['/talks/james_a_white_sr_the_little_problem_i_had_renting_a_house', '2015'], ['/talks/bill_gates_teachers_need_real_feedback', '2013']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+all+need+people+who+will+give+us+feedback+that+s+how+we+improve
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=unfortunately+there+s+one+group+of+people+who+get+almost+no+systematic+feedback+to+help+them+do+their+jobs+better
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+these+people+have+one+of+the+most
found 10 videos: [['/talks/karima_bennoune_when_people_of_muslim_heritage_challenge_fundamentalism', '2014'], ['/talks/sanjay_pradhan_how_open_data_is_changing_international_aid', '2012'], ['/talks/emilie_wapnick_why_some_of_us_don_t_have_one_true_calling', '2015'], ['/talks/steven_wise_chimps_have_feelings_and_thoughts_they_should_also_have_rights', '2015'], ['/talks/patricia_medici_the_coolest_animal_you_know_nothing_about_and_how_we_can_save_it', '2015'], ['/talks/daniel_m_abrams_why_are_some_people_left_handed', '2015'], ['/talks/emily_balcetis_why_some_people_find_exercise_harder_than_others', '2014'], ['/talks/jimmy_nelson_gorgeous_portraits_of_the_world_s_vanishing_people', '2015'], ['/talks/aicha_el_wafi_phyllis_rodriguez_the_mothers_who_found_forgiveness_friendship', '2011'], ['/talks/jake_wood_a_new_mission_for_veterans_disaster_relief', '2012']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=important+jobs+in+the+world++i+m+talking+about+teachers
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+melinda+and+i+learned+how+little+useful+feedback+most+teachers+get+we+were+blown+away
found 1 videos: [['/talks/bill_gates_teachers_need_real_feedback', '2013']]
selected: /talks/bill_gates_teachers_need_real_feedback
sleep 5 seconds to avoid blocking
------<259>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BillGates_2014.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+an+interview+with+a+difference+on+the+basis+that+a+picture+is+worth+a+thousand+words+what+i+did+was+i
found 3 videos: [['/talks/bill_and_melinda_gates_why_giving_away_our_wealth_has_been_the_most_satisfying_thing_we_ve_done', '2014'], ['/talks/richard_ledgett_the_nsa_responds_to_edward_snowden_s_ted_talk', '2014'], ['/talks/jim_simons_the_mathematician_who_cracked_wall_street', '2015']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=asked+bill+and+melinda+to+dig+out+from+their+archive+some+images+that+would+help+explain+some+of+what+they+ve+done
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=do+do+a+few+things+that+way+so+we+re+going+to+start
found 10 videos: [['/talks/amy_webb_how_i_hacked_online_dating', '2013'], ['/talks/stewart_brand_the_dawn_of_de_extinction_are_you_ready', '2013'], ['/talks/stephen_friend_the_hunt_for_unexpected_genetic_heroes', '2014'], ['/talks/danny_hillis_the_internet_could_crash_we_need_a_plan_b', '2013'], ['/talks/ramanan_laxminarayan_the_coming_crisis_in_antibiotics', '2014'], ['/talks/alessandra_orofino_it_s_our_city_let_s_fix_it', '2014'], ['/talks/susan_solomon_the_promise_of_research_with_stem_cells', '2012'], ['/talks/alastair_parvin_architecture_for_the_people_by_the_people', '2013'], ['/talks/chrystia_freeland_the_rise_of_the_new_global_super_rich', '2013'], ['/talks/adam_driver_my_journey_from_marine_to_actor', '2016']]
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=melinda++when+and+where+was+this+and+who+is+that+handsome+man+next+to+you+melinda+gates+with+those+big+glasses+huh
found 1 videos: [['/talks/bill_and_melinda_gates_why_giving_away_our_wealth_has_been_the_most_satisfying_thing_we_ve_done', '2014']]
selected: /talks/bill_and_melinda_gates_why_giving_away_our_wealth_has_been_the_most_satisfying_thing_we_ve_done
sleep 1 seconds to avoid blocking
------<260>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BillGates_2015.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+was+a+kid++the+disaster+we+worried+about+most+was+a+nuclear+war
found 3 videos: [['/talks/bill_gates_the_next_outbreak_we_re_not_ready', '2015'], ['/talks/yuval_noah_harari_nationalism_vs_globalism_the_new_political_divide', '2017'], ['/talks/danny_hillis_the_internet_could_crash_we_need_a_plan_b', '2013']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+why+we+had+a+barrel+like+this+down+in+our+basement++filled+with+cans+of+food+and+water
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+the+nuclear+attack+came+we+were+supposed+to+go+downstairs++hunker+down+and+eat+out+of+that+barrel
found 1 videos: [['/talks/bill_gates_the_next_outbreak_we_re_not_ready', '2015']]
selected: /talks/bill_gates_the_next_outbreak_we_re_not_ready
sleep 1 seconds to avoid blocking
------<261>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BillGross_2003.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=first+got+interested+in+solar+energy++my+family+had+moved+from+fort+lee+new+jersey+to+california+from+the+snow+to+lots+of+heat+and+gas+lines+there+was+gas+rationing
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+energy+crisis+was+in+full
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+got+really+excited+about+the+potential+of+solar+energy+to+try+and+solve+that+crisis
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+had+just+taken+trigonometry+in+high+school+i+learned+about+the+parabola+and+how+it+could+concentrate+rays+of+light+to+a+single+focus+that+got+me+very+excited
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+really+felt+that+there+would+be+potential+to+build+some+kind+of+thing+that+could+concentrate+light+so+i+started+this+company+called+solar+devices++and+this+was+a+company+where+i+built+parabolas
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+took+metal+shop++and+i+remember+walking+into+metal+shop+building+parabolas+and+stirling+engines+and+i+was+building+a+stirling+engine+over+on+the+lathe+and+all+the+motorcycle+guys+said+you+re+building+a+bong+aren+t+you+and+i+said+no+it+s+a+stirling+engine+but+they+didn+t+believe+me
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+sold+the+plans+for+this
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=engine+and+for+this+dish+in+the+back+of+popular+science+magazine+for+four+dollars+each++and+i+earned+enough+money+to+pay+for+my+first+year+of+caltech++it+was+a+really+big+excitement+for+me+to+get+into+caltech
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+at+my+first+year+at+caltech+i+continued+the+business
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=then+in+the+second+year+of+caltech+they+started+grading+the+whole+first+year+was+pass+fail+but+the+second+year+was+graded+i+wasn+t+able+to+keep+up+with+the+business++and+i+ended+up+with+a+25+year+detour+my+dream+had+been+to+convert+solar+energy+at+a+very+practical+cost++but+then+i+had+this+big+detour+first
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+coursework+at+caltech++then+when+i+graduated+from+caltech++the+ibm+pc+came+out++and+i+got+addicted+to+the
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+natural+language+interface+to+1+2+3+i+started+an+educational+software+company+after+i+joined+lotus++and+then+i+started+idealab+so+i+could+have+a+roof+under+which+i+could+build+multiple+companies+in+succession
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=much+later+in+two+thousand+very+recently+the+new+california+energy+crisis+what+was+purported+to+be+a+big+energy+crisis+was+coming
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+was+trying+to+figure+out+if+we+could+build+something+that
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=capitalize+on+that+and+get+people+backup+energy+in+case+the+crisis+really+came
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+started+looking+at+how+we+could+build+battery+backup+systems+that+could+give+people+five+hours+ten+hours+maybe+even+a+full+day+or+three+days+++worth+of+backup+power+i+m+glad+you+heard+earlier+today+batteries+are+unbelievably
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=compared+to+fuel+so+much+more+energy+can+be+stored+with+fuel+than+with+batteries+you+d+have+to+fill+your+entire+parking+space+of+one+garage+space
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=just+to+give+yourself+four+hours+of+battery+backup
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+concluded+after+researching+every+other+technology+that+we+could+deploy+for+storing+energy+flywheels+different+formulations+of+batteries+it+just+wasn+t+practical+to+store+energy
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+what+about+making+energy++maybe+we+could+make+energy++i+tried+to+figure+out+maybe+solar+s+become+attractive+it+s+been+twenty+five+years+since+i+was+doing+this+let+me+go+back+and+look+at+what+s+been+happening+with+solar+cells
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+price+had+gone+down+from+ten+dollars+a+watt+to
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+four+or+five+dollars+a+watt+but+it+stabilized++and+it+needed+to+get+much+lower+to+be+cost+effective
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+studied+all+the+new+things+that+had+happened+in+solar+cells+and+was+looking+for+ways+we+could+make+solar+cells+more+inexpensively
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+lot+of+new+things+are+happening+to+do+that+but+fundamentally+the+process+requires+a+tremendous+amount+of+energy+some+people+say+it+takes+more+energy+to+make+a+solar+cell+than+it+will+give+out+in+its+entire+life+if+we+reduce+the+amount+of+energy+it+takes+to+make+the+cells
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+will+become+more+practical+but+right+now+you+pretty+much+have+to+take+silicon+put+it+in+an+oven+at+one+thousand+six+hundred+f+for+seventeen+hours+to+make+the+cells+a+lot+of+people+are+working+to+try+and+reduce
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+but+i+didn+t+have+anything+to+contribute+so+i+tried+to+figure+out+what+other+way+could+we+try+to+make+cost+effective+solar+electricity++what+if+we+collect+the+sun+with+a+large+reflector+like+i+had+been+thinking
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+high+school++but+maybe+with+modern+technology+we+could+make+it+cheaper
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=concentrate+it+to+a+small+converter++and+then+the+conversion+device+wouldn+t+have+to+be+as+expensive+because+it+s+much+smaller+rather+than+solar+cells+which+have+to+cover+the+entire+surface+that+you+want+to+gather+sun+from
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+seemed+practical+now+because+a+lot+of+new+technologies+had+come+in+the+twenty+five+years+since+i+had+last+looked+at+it+there+was+a+lot+of+new+manufacturing+techniques+not+to+mention+really+cheap+miniature+motors+brushless+motors+servomotors+stepper+motors+that+are+used+in+printers+and+scanners
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+a+very+important+breakthrough+genetic+algorithms+i+ll+be+very+short+on+genetic+algorithms+it+s+a+powerful+way+of+solving+intractable+problems
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=using+natural+selection+you+take+a+problem+that+you+can+t+solve+with+a+pure+mathematical+answer++you+build+an+evolutionary+system+to+try+multiple+tries+at+guessing
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+add+sex+where+you+take+half+of+one+solution+and+half+of+another+and+then+make+new+mutations
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+use+natural+selection+to+kill+off
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=solutions+usually+with+a+genetic+algorithm+on+a+computer+today+with+a+three+gigahertz+processor
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+solve+many+many+formerly+intractable+problems+in+just+a+matter+of+minutes++so+we+tried+to+come+up+with+a+way+to+use+genetic+algorithms
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+create+a+new+type+of+concentrator+and+i+ll+show+you+what+we+came+up+with+traditionally+concentrators+look+like+this+those+shapes+are+parabolas
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+take+all+the+parallel+incoming+rays+and+focus+it+to+a+single+spot++they+have+to+track+the+sun
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+have+to+point+directly+at+the+sun++they+usually+have+a+one+degree+acceptance+angle+once+they+re+more+than+a+degree+off+none+of+the+sunlight+rays+will+hit+the+focus++so+we+tried+to+come+up+with+a
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=collector+that+would+gather+much+more+than+one+degree+of+light+with+no+moving+parts++so+we+created+a+genetic+algorithm+to+try+this+out+we+made+a+model+in+excel+of+a+multisurface+reflector+and+an+amazing
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=from+trying+a+billion+cycles+a+billion+different+attempts
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+a+fitness+function+that+defined+how+can+you+collect+the+most+light+from+the+most+angles+over+a+day+from+the+sun++and+this+is+the+shape+that+evolved
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+this+non+tracking+collector+with+these+six+tuba+like+horns
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+each+of+them+collect+light+in+the+following+way+if+the+sunlight+strikes+right+here+it+might+bounce+right+to+the+center+the+hot+spot+directly++but+if+the+sun+is+off+axis+and+comes+from+the
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+might+hit+two+places+and+take+two+bounces++so+for+direct+light+it+takes+only+one+bounce+for+off+axis+light+it+might+take+two+and+for+extreme+off+axis+it+might+take+three
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=your+efficiency+goes+down+with+more+bounces+because+you+lose+about+ten+percent+with+each+bounce++but+this+allowed+us+to+collect+light+from+a+plus+or+minus+25+degree+angle
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+about+two+and+a+half+hours+of+the+day+we+could+collect+with+a+stationary+component
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=solar+cells+collect+light+for+four+and+a+half+hours+though+on+an+average+adjusted+day+a+solar+cell+because+the+sun+s+moving+across+the+sky
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+solar+cell+is+going+down+with+a+sine+wave+function+of+performance+at+the+off+axis+angles+it+collects+about+four+and+a+half+average+hours+of+sunlight+a+day++so+even+this+although+it+was+great+with+no+moving+parts
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+could+achieve+high+temperatures+wasn+t+enough+we+needed+to+beat+solar+cells++so+we+took+a+look+at+another+idea++we+looked+at+a+way+to+break+up+a+parabola+into+individual+petals+that+would+track++so+what+you+see+here+is+twelve+separate+petals+that+each+could+be+controlled+with+individual
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=microprocessors+that+would+only+cost+a+dollar++you+can+buy+a+two+megahertz+microprocessor+for+a+dollar+now+and+you+can+buy+stepper+motors+that+pretty+much+never+wear+out+because+they+have+no+brushes
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+a+dollar++so+we+can+control+all+twelve+of+these+petals+for+under+fifty+dollars+and+what+this+would+allow+us+to+do+is+not+have+to+move+the+focus+any+more+but+only+move+the+petals+the+whole+system+would+have+a+much+lower+profile+but+also+we+could+gather+sunlight+for+six+and+a+half+to+seven+hours
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+day+now+that+we+have+concentrated+sunlight+what+are+we+going+to+put+at+the+center+to+convert+sunlight+to+electricity
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+we+tried+to+look+at+all+the+different+heat+engines+that+have+been+used+in+history+to+convert+sunlight++or+heat+to+electricity
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+one+of+the+great+ones+of+all+time++james+watt+s+steam+engine+of+one+thousand+seven+hundred+and+eighty+eight+was+a+major+major+breakthrough++james+watt+didn+t+actually+invent+the+steam
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=industrial+revolution+and+ships+and+locomotives++but+they+re+usually+good+to+be+large
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+they+re+not+good+for+distributed+power+generation+they+re+also+very+high+pressure+so+they+re+dangerous+another+type+of+engine+is+the+hot+air+engine+and+the+hot+air+engine+also+was+not+invented
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+robert+stirling+but+robert+stirling+came+along+in+one+thousand+eight+hundred+and+sixteen+and+radically+improved+it+this+engine+because+it+was+so+interesting+it+only+worked+on+air+no+steam
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=came+along+and+also+he+didn+t+invent+the+internal+combustion+engine++he+just+refined+it+he+showed+it+in+paris+in+one+thousand+eight+hundred+and+sixty+seven+and+it+was+a+major+achievement+because+it+brought+the+power+density+of+the+engine+way+up+you+could+now+get+a+lot+more+power+in+a+lot+smaller+space
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+allowed+the+engine+to+be+used+for+mobile+applications+so+once+you+have+mobility
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+re+making+a+lot+of+engines+because+you+ve+got+lots+of+units+as
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+was+the+engine+that+ended+up+benefiting+from+mass+production+where+all+the+other+engines+didn+t+so+because+it+went+into+mass+production+costs+were+reduced+one+hundred+years+of+refinement+emissions+were+reduced
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=tremendous+production+value+there+have+been+hundreds+of+millions+of+internal+combustion+engines+built+compared+to+thousands+of+stirling+engines+built+and+not+nearly+as+many+small+steam+engines+being+built+anymore+only+large+ones+for+big+operations
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+after+looking+at+these+three+and+forty+seven+others+we+concluded+that+the+stirling+engine+would+be+the
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=best+one+to+use+i+want+to+give+you+a+brief+explanation+of+how+we+looked+at+it+and+how+it+works++so+we+tried+to+look+at+the+stirling+engine+in+a+new+way+because
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=weight+no+longer+mattered+for+our+application+the+internal+combustion+engine+took+off+because+weight+mattered+because+you+were+moving+around+but+if+you+re+trying+to+generate+solar+energy+in+a+static+place+the+weight+doesn+t+matter+so+much+we+also+discovered+that+efficiency+doesn+t+matter+so+much+if+your+energy+source+is
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=normally+efficiency+is+crucial+because+the+fuel+cost+of+your+engine+over+its+life+dwarfs+the+cost+of+the+engine
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+if+your+fuel+source+is+free++then+the+only+thing+that+matters+is+the+up+front+capital+cost+of+the+engine++so+you+don+t+want+to+optimize+for+efficiency+you+want+to+optimize+for+power+per+dollar
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+using+that+new+twist+with+the+new+criteria+we+thought+we+could+relook+at+the+stirling
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+also+bring+genetic+algorithms+in+basically+robert+stirling+didn+t+have+gordon+moore+before+him+to+get+us+three+gigahertz+of+processor+power++so+we+took+the+same+genetic+algorithm+that+we+used+earlier+to
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=make+that+concentrator+which+didn+t+work+out+for+us+to+optimize+the+stirling+engine+and+make+its+design+sizes+and+all+of+its+dimensions+the+exact+optimum+to+get+the+most+power+per+dollar
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=works++the+simplest+heat+engine+or+hot+air+engine+of+all+time+would+be+this+take+a+box+a+steel+canister+with+a+piston+put+a+flame+under+it+the+piston+moves+up
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=take+it+off+the+flame+and+pour+water+on+it+or+let+it+cool+down+the+piston+moves+down+that+s+a+heat+engine+that+s+the+most+fundamental+heat+engine+you+could+have
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+problem+is+the+efficiency+is+one+hundredth+of+one+percent
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+re+heating+all+the+metal+of+the+chamber+and+then+cooling+all+the+metal+of+the+chamber+each+time
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+re+only+getting+power+from+the+air+that+s+heating+at+the+same+time+but+you+re+wasting+energy+heating+and+cooling+the+metal++so+someone+came+up+with+a+very+clever+idea+instead+of+heating+and+cooling+the+whole+cylinder+what+about+if+you+put+a+displacer+inside+a+little+thing+that+shuttles+the+air+back+and+forth
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+move+that+up+and+down+with+a+little+bit+of+energy+but+now+you+re+only+shifting+the+air+down+to+the+hot+end+and+up+to+the+cold+end
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+allows+you+to+get+the+efficiency+up+from+a+hundredth+of+a+percent+to+about+two+percent++and+then+robert+stirling+came+along+with+this+genius+idea++which+was+well+i+m+still+not+heating+the+metal+now+with+this
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=kind+of+engine++but+i+m+still+reheating+all+the+air++i+m+still+heating+the+air+every+time+and+cooling+the+air+every+time+what+about+if+i+put+a+thermal+sponge+in+the+middle+in+the+passageway+between+where+the+air+has+to+move+between+hot+and+cold
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fine+wires+and+cracked+glass+and+all+different+kinds+of+materials+to+be+a+heat+sponge+so+when+the+air+pushes+up+to+go+from+the+hot+end+to+the+cold+end+it+puts+some+heat+into+the+sponge++and+then
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+the+air+comes+back+after+it+s+been+cooled+it+picks+up+that+heat+again++so+you+re+reusing+your+energy+five+or+six+times
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=genius+invention+of+robert+stirling+that+takes+the+hot+air+engine+from+being+somewhat+impractical+like+i+found+out+when+i+made+the+real+simple+version+in+high+school+to+very+potentially+possible
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=once+you+get+the+efficiency+up+if+you+can+design+this+to+be+low+enough+cost++so+we+really+set+out+on+a+path+to+try+and+make+the+lowest+cost+possible++we+built+a+huge+mathematical+model+of+how+a+stirling+engine+works++we+applied+the+genetic+algorithm
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+got+the+results+from+that+for+the+optimal+engine
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+built+engines+so+we+built+one+hundred+different+engines+over+the+last+two+years+we+measured+each+one+we+readjusted+the+model+to+what+we+measured+and+then+we+led+that+to+the+current+prototype
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+led+to+a+very+compact+inexpensive+engine+and+this+is+what+the+engine+looks+like+let+me+show+you+what+it+looks+like+in+real+life
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+this+is+the+engine+it+s
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=just+a+small+cylinder+down+here++which+holds+the+generator+inside+and+all+the+linkage++and+it+s+the+hot+cap+the+hot+cylinder+on+the+top
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+part+gets+hot+this+part+is+cool
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+exact+converse+is+also+true+if+you+put+electricity+in
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+will+get+hot+and+this+will+get+cold+you+get+refrigeration++so+it+s+a+complete+reversible+cycle+a+very+efficient+cycle+and+quite+a+simple+thing+to+make
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+now+you+put+the+two+things+together++so+you+have+the+engine+what+if+you+combine+the+petals+and+the+engine+in+the+center+the+petals+track+and+the+engine
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+concentrated+sunlight+takes+that+heat+and+turns+it+into+electricity+this+is+what+the+first+prototype+of+our+system+looked+like+with+the+petals+and+the+engine+in+the+center++this+is+being+run+out+in+the+sun++and+now+i+want+to+show+you+what+the
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+this+is+a+unit+with+the+twelve+petals+these+petals+cost+about+a+dollar+each+they+re+lightweight+injection+molded+plastic++aluminized
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+mechanism+to+control+each+petal+is+below+there+with+a+microprocessor+on+each+one
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+are+thermocouples+on+the+engine+little+sensors+that+detect+the+heat+when+the+sunlight+strikes+them+each+petal+adjusts+itself+separately+to+keep+the+highest+temperature+on+it
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+the+sun+comes+out+in+the+morning+the+petals+will+seek+the+sun
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=find+it+by+searching+for+the+highest+temperature+about+a+minute+and+a+half+or+two+minutes+after+the+rays+are+striking+the+hot+cap+the+engine+will+be+warm+enough+to+start
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+the+engine+will+generate+electricity+for+about+six+and+a+half+hours+a+day
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=six+and+a+half+to+seven+hours+as+the+sun+moves+across+the+sky
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+critical+part+that+we+can+take+advantage+of+is+that+we+have+these+inexpensive+microprocessors+and+each+of+these+petals+is+autonomous+and+each+of+these+petals+figures+out+where+the+sun+is+with+no+user+setup++so+you+don+t+have+to+tell+what+latitude+longitude+you+re+at+what+your+roof+slope+angle+is
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=orientation+it+doesn+t+really+care+what+it+does+is+it+searches+to+find+the+hottest+spot+it+searches+again+a+half+an+hour+later++a+day+later+a+month+later+it+basically+figures+out+where
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+earth+you+are+by+watching+the+direction+the+sun+moves++so+you+don+t+have+to+actually+enter+anything+about+that
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ac+and+dc+get+twelve+volts+dc++so+that+could+be+used+for+certain+applications+we+have+an+inverter+in+there+so+you+get+one+hundred+and+seventeen+volts+ac
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+also+get+hot+water+the+hot+water+s+optional+you+don+t+have+to+use+it+it+will+cool+itself++but+you+can+use+it+to+optionally+heat+hot+water+and+that+brings+the+efficiency+up+even+higher+because+some+of+the+heat+that+you+d+normally+be+rejecting+you+can+now+use+as+useful+energy+whether+it+s+for+a+pool+or+hot+water
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+me+show+you+a+quick+movie+of+what+this+looks+like+running
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+the+first+test+where+we+took+it+outside+and+each+of+the+petals+were+individually+seeking++and+what+they+do+is+step
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=very+coarsely+at+first+and+very+finely+afterward+once+they+get+a+temperature+reading+on+the+thermocouple+indicating+they+found+the+sun++they+slow+down+and+do+a+fine+search++then+the+petals+will+move+into+position++and+the+engine+will+start
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+ve+been+working+on+this+for+the+last+two+years+we+re+very+excited+about+the+progress+we+have+a+long+way+to+go+though
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+how+we+envision+it+would+be+in+a+residential+installation+you+d+probably+have+more+than+one+unit+on+your+roof+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=could+be+on+your+roof+your+backyard+or+somewhere+else
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+don+t+have+to+have+enough+units+to+power+your+entire+house+you+just+save+money+with+each+incremental+one+you+add++so+you+re+still+using+the+grid+potentially+in+this+type+of+application+to+be+your+backup+supply+of
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=use+these+at+night+and+you+can+t+use+these+on+cloudy+days++but+by+reducing+your+energy+use
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=pretty+much+at+the+peak+times+usually+when+you+have+your+air+conditioning+on+or+other+times+like+that
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+generates+the+peak+power+at+the+peak+usage+time+so+it+s+very+complementary+in+that+sense++this+is+how+we+would+envision+a+residential+application++we+also+think+there+s+very+big+potential+for+energy+farms
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=especially+in+remote+land+where+there+happens+to+be+a+lot+of+sun+it+s+a+really+good+combination+of+those+two+factors+it+turns+out+there+s+a+lot+of+powerful+sun+all+around+the+world+obviously+but+in
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=special+places+where+it+happens+to+be+relatively+inexpensive+to+place+these
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+also+in+many+more+places+where+there+is+high+wind+power++so+an+example+of+that+is+here+s+the+map+of+the+united+states+pretty+much+everywhere+that+s+not+green+or+blue+is+a+really
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ideal+place+but+even+the+green+or+blue+areas+are+good+just+not+as+good+as+the+places+that+are+red+orange+and+yellow++but+the+hot+spot+right+around+las+vegas+and+death+valley
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+you+couldn+t+use+solar+energy+you+could+use+it+anywhere+on+earth+it+just+affects+the+payback+period+if+you+re+comparing+to+grid+supplied+electricity++but+if+you+don+t+have+grid+supplied+electricity++then+the+question+of+payback+is+a+different
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+entirely+it+s+just+how+many+watts+do+you+get+per+dollar+and+how+could+you+benefit+from+that+to+change+your+life+in+some+way
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+the+map+of+the+whole+earth
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+see+a+huge+swathe+in+the+middle++where+a+large+part+of+the+population+is+there+s+tremendous+chances+for+solar+energy+and+of+course++look+at+africa
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+potential+to+take+advantage+of+solar+energy+there+is+unbelievable+and+i+m+really+excited+to+talk+more+about+finding+ways+we+can+help+with+that+so+in+conclusion+i+would+say+my+journey
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=has+shown+me+that+you+can+revisit+old+ideas+in+a+new+light
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+sometimes+ideas+that+have+been+discarded+in+the+past+can+be+practical+now+if+you+apply+some+new+technology+or+new+twists
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+believe+we+re+getting+very+close
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+something+practical+and+affordable+our+short+term+goal+for+this+is+to+be+half+the+price+of+solar+cells+and+our+longer+term+goal+is+to+be
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=less+than+a+five+year+payback+and+at+less+than+a+five+year+payback++this+becomes+very+economic++so+you+don+t+have+to+just+have+a+feel+good+attitude+about+energy+to+want+to+have+one+of+these+it+just+makes+economic
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sense+right+now+solar+paybacks+are+between+thirty+and+fifty+years+if+you+get+it+down+below+five+years+then+it+s+almost+a+no+brainer+because+the+interest+to+own+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=else+will+finance+it+for+you+and+you+can+just+make+money+from+day+one++so+that+s+our+real+powerful+goal+that+we+re+really+shooting+for+in+the+company+two+other+things+that+i+learned+that+were+very+surprising+to+me
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+casual+we+are+about+energy++i+was+walking+from+the+elevator+over+here+and+even+just+looking+at+the+stage+right+now
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=lights+right+now+there+s+ten+thousand+watts+of+light+pouring+on+the+stage+one+horsepower+is+seven+hundred+and+forty+six+watts+at+full+power+so+there+s+basically+fifteen+horses+running+at+full+speed+just+to+keep+the+stage+lit
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+to+mention+the+two+hundred+horses+that+are+probably+running+right+now+to+keep+the+air+conditioning+going
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+s+just+amazing++walk+in+the+elevator+and+there+s+lights+on+in+the+elevator+of+course+now+i+m+very+sensitive+at+home+when+we+leave+the+lights+on+by
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=everywhere+around+us+we+have+insatiable+use+for+energy+because+it+s+so+cheap
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+s+cheap+because+we+ve+been+subsidized+by+energy+that+s+been+concentrated+by+the+sun++basically++oil+is+solar+energy+concentrate+it+s+been
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=pounded+for+a+billion+years+with+a+lot+of+energy+to+make+it+have+all+that+energy+contained+in+it+and+we+don+t+have+a+birthright+to+just+use+that+up+as+fast+as+we+are+i+think+and+it+would+be+great+if+we+could
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=make+our+energy+usage+renewable+where+as+we+re+using+the+energy+we+re+creating+it+at+the+same+pace++and+i+really+hope+we+can+get+there
found 0 videos: []
error: no video is found.
sleep 3 seconds to avoid blocking
------<262>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BillGross_2015U.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+really+excited+to+share+with+you+some+findings+that+really+surprise+me
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+what+makes+companies+succeed+the+most+what+factors+actually+matter+the+most+for+startup+success++i
found 1 videos: [['/talks/bill_gross_the_single_biggest_reason_why_start_ups_succeed', '2015']]
selected: /talks/bill_gross_the_single_biggest_reason_why_start_ups_succeed
sleep 5 seconds to avoid blocking
------<263>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BillieJeanKing_2015W.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=bobby+riggs+he+was+the+former+number+one+player+he+wasn+t+just+some+hacker+by+the+way+he+was+one+of+my+heroes
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+admired+him++and+that+s+the+reason+i+beat+him+actually+because+i+respected+him
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+true+my+mom+and+especially+my+dad+always+said+respect+your+opponent+and+never+underestimate+them++ever
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+he+was+correct++he+was+absolutely+correct
found 9 videos: [['/talks/greg_gage_electrical_experiments_with_plants_that_count_and_communicate', '2017'], ['/talks/vincent_moon_and_nana_vasconcelos_hidden_music_rituals_around_the_world', '2014'], ['/talks/jonathan_haidt_can_a_divided_america_heal', '2016'], ['/talks/helder_guimaraes_a_magical_search_for_a_coincidence', '2015'], ['/talks/martine_rothblatt_my_daughter_my_wife_our_robot_and_the_quest_for_immortality', '2015'], ['/talks/sebastian_thrun_and_chris_anderson_what_ai_is_and_isn_t', '2017'], ['/talks/billie_jean_king_this_tennis_icon_paved_the_way_for_women_in_sports', '2015'], ['/talks/susan_etlinger_what_do_we_do_with_all_this_big_data', '2014'], ['/talks/larry_page_where_s_google_going_next', '2014']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+knew+it+was+about+social+change
found 16 videos: [['/talks/wael_ghonim_let_s_design_social_media_that_drives_real_change', '2016'], ['/talks/michael_green_what_the_social_progress_index_can_reveal_about_your_country', '2014'], ['/talks/zeynep_tufekci_online_social_change_easy_to_organize_hard_to_win', '2015'], ['/talks/christen_reighter_i_don_t_want_children_stop_telling_me_i_ll_change_my_mind', '2017'], ['/talks/mary_bassett_why_your_doctor_should_care_about_social_justice', '2016'], ['/talks/ione_wells_how_we_talk_about_sexual_assault_online', '2016'], ['/talks/chetan_bhatt_dare_to_refuse_the_origin_myths_that_claim_who_you_are', '2017'], ['/talks/teresa_njoroge_what_i_learned_serving_time_for_a_crime_i_didn_t_commit', '2017'], ['/talks/billie_jean_king_this_tennis_icon_paved_the_way_for_women_in_sports', '2015'], ['/talks/peggy_orenstein_what_young_women_believe_about_their_own_sexual_pleasure', '2017'], ['/talks/audrey_choi_how_to_make_a_profit_while_making_a_difference', '2016'], ['/talks/aditi_gupta_a_taboo_free_way_to_talk_about_periods', '2016'], ['/talks/tara_winkler_why_we_need_to_end_the_era_of_orphanages', '2017'], ['/talks/salvatore_iaconesi_what_happened_when_i_open_sourced_my_brain_cancer', '2015'], ['/talks/sarah_corbett_activism_needs_introverts', '2017'], ['/talks/ilona_szabo_de_carvalho_4_lessons_i_learned_from_taking_a_stand_against_drugs_and_gun_violence', '2015']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+was+really+nervous+whenever+we+announced+it++and+i+felt+like+the+whole+world+was+on+my
found 1 videos: [['/talks/billie_jean_king_this_tennis_icon_paved_the_way_for_women_in_sports', '2015']]
selected: /talks/billie_jean_king_this_tennis_icon_paved_the_way_for_women_in_sports
sleep 4 seconds to avoid blocking
------<264>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BillJoy_2006.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+technology+can+we+really+apply
found 4 videos: [['/talks/bill_joy_what_i_m_worried_about_what_i_m_excited_about', '2008'], ['/talks/ray_kurzweil_the_accelerating_power_of_technology', '2006'], ['/talks/freeman_dyson_let_s_look_for_life_in_the_outer_solar_system', '2008'], ['/talks/jan_chipchase_the_anthropology_of_mobile_phones', '2007']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+reducing+global+poverty++and+what+i+found+was+quite+surprising++we+started+looking+at+things+like+death+rates+in+the+20th
found 1 videos: [['/talks/bill_joy_what_i_m_worried_about_what_i_m_excited_about', '2008']]
selected: /talks/bill_joy_what_i_m_worried_about_what_i_m_excited_about
sleep 2 seconds to avoid blocking
------<265>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BillStone_2007.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+to+take+you+is+what+many+believe+will+be+the+world+s+deepest+natural+abyss++and+i+say+believe+because+this+process+is+still+ongoing+right+now
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+are+major+expeditions+being+planned+for+next+year
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ll+talk+a+little+bit+about
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+the+things+that+s+changed+here++in+the+last+one+hundred+and+fifty+years+since+jules+verne+had+great+science+fiction+concepts+of+what+the+underworld+was+like+is+that
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=technology+has+enabled+us+to+go+to+these+places+that+were+previously+completely+unknown+and+speculated+about++we+can+now+descend+thousands+of+meters
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=into+the+earth+with+relative+impunity++along+the+way+we+ve+discovered
error: request timeout
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+chambers+so+large+that+you+can+see+for+hundreds+of+meters+without+a+break+in+the+line+of+sight
found 1 videos: [['/talks/bill_stone_inside_the_world_s_deepest_caves', '2007']]
selected: /talks/bill_stone_inside_the_world_s_deepest_caves
sleep 5 seconds to avoid blocking
------<266>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BillStrickland_2002.stm
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+great+honor+to+be+here+with+you+the+good+news+is+i+m+very+aware+of+my+responsibilities+to+get+you+out+of+here
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+i+m+the+only+thing+standing+between+you+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+learned+through+experience+that+people+remember+pictures+long+after+they+ve+forgotten+words+and+so+i+hope
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+ll+remember+some+of+the+pictures+i+m+going+to+share+with+you+for
error: request timeout
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=whole+story+really+starts+with+me+as+a+high+school+kid+in
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=pittsburgh+pennsylvania+in+a+tough+neighborhood+that+everybody+gave+up+on+for+dead
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+on+a+wednesday+afternoon+i+was+walking+down+the+corridor+of+my
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=vessel+and+i+happened+to+be+looking+in+the+door+of+the+art+room+and+if+you+ve+ever+seen+clay+done+it+s+magic
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+d+never+seen+anything+like+that+before+in+my+life
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+walked+in+the+art+room+and+i+said++what+is+that+and+he+said+ceramics+and+who+are+you+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+said+i+m+bill+strickland+i+want+you+to+teach+me+that+and+he+said+well
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=get+your+homeroom+teacher+to+sign+a+piece+of+paper+that+says+you+can
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+you+and+so+for+the+remaining+two+years+of+my+high+school+i+cut+all+my+classes
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+had+the+presence+of+mind+to+give+the+teachers++classes+that+i+cut+the+pottery+that+i+made
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+gave+me+passing+grades+and+that+s+how+i+got+out+of+high+school
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+leaving+this+school+and+i+m+taking+you+with+me+and+he+drove+me+out+to+the+university+of+pittsburgh+where+i+filled+out+a+college+application+and+got+in+on+probation
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+i+m+now+a+trustee+of+the+university++and+at+my+installation+ceremony+i+said+i+m+the+guy+who
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=came+from+the+neighborhood+who+got+into+the+place+on+probation+don+t+give+up+on+the+poor+kids+because+you+never+know+what+s+going+to+happen+to+those+children
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+life+what+i+m+going+to+show+you+for+a+couple+of+minutes+is+a
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=facility+that+i+built+in+the+toughest+neighborhood+in+pittsburgh+with+the+highest+crime+rate
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+is+called+bidwell+training+center++it+is+a+vocational+school+for+ex+steel+workers+and+single+parents+and+welfare+mothers
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=remember+we+used+to+make+steel+in+pittsburgh+well+we+don+t+make+any+steel+anymore+and+the+people+who+used+to+make+the+steel
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+having+a+very+tough+time+of+it+and+i+rebuild+them+and+give+them+new+life
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=manchester+craftsmen+s+guild+is+named+after+my+neighborhood+i
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+adopted+by+the+bishop+of+the+episcopal
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=house+i+started+manchester+craftsmen+s+guild+and+i+learned+very+quickly
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+wherever+there+are+episcopalians+there+s+money+in+very+close+proximity
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=adopted+me+as+his+kid++and+last+year+i+spoke+at+his+memorial+service+and+wished+him
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+went+out+and+hired+a+student+of+frank+lloyd+wright+the+architect+and+i+asked+him+to+build+me+a+world+class+center+in
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+worst+neighborhood+in+pittsburgh+and+my+building+was+a+scale+model+for+the+pittsburgh+airport+and+when+you+come+to+pittsburgh+and+you+re+all+invited
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+ll+be+flying+into+the+blown+up+version+of+my+building+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+building+built+in+a+tough+neighborhood+where+people+have+been+given+up+for+dead
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+view+is+that+if+you+want+to+involve+yourself+in+the+life+of+people+who+have+been+given+up+on+you
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+to+look+like+the+solution+and+not+the+problem+as+you+can+see+it+has+a+fountain+in+the+courtyard
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+got+put+on+the+board+of+the+carnegie+museum++at+a+reception+in+their+courtyard+i+noticed+that+they+had+a+fountain
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+they+think+that+the+people+who+go+to+the+museum+deserve+a+fountain+well+i+think+that+welfare+mothers
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=deserve+a+fountain+in+their+life+and+so+the+first+thing+that+you+see+in+my+center+in+the+springtime+is+water+that+greets+you+water+is+life+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=water+of+human+possibility+and+it+sets+an+attitude+and+expectation+about+how+you+feel+about+people
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=before+you+ever+give+them+a+speech+so+from
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+everywhere+your+eye+turns+there+s+something+beautiful
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+hired+a+japanese+cabinetmaker+from+kyoto+japan++and+commissioned+him+to+do+sixty+pieces+of+furniture+for+our+building
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+have+since+spun+him+off+into+his+own+business
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+s+making+a+ton+of+money
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=doing+custom+furniture+for+rich+people+and+i+got+sixty+pieces+out+of+it+for+my+school
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+i+felt+that+welfare+moms+and+ex+steel+workers+and+single+parents
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=deserved+to+come+to+a+school+where+there+was+handcrafted+furniture+that+greeted+them+every+day
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+it+sets+a+tone+and+an+attitude
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=long+before+you+give+them+the+speech++we+even+have+flowers+in+the+hallway+and+they+re+not+plastic+those+are+real
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+re+in+my+building+every+day
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+now+that+i+ve+given+lots+of+speeches+we+had+a+bunch+of+high+school+principals+come+and+see+me
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+said+mr+strickland+what+an+extraordinary+story+and+what+a+great+school
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+were+particularly+touched+by+the+flowers+and+we+were+curious+as+to+how+the+flowers+got
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=car+and+i+went+out+to+the+greenhouse+and+i+bought+them+and+i+brought+them+back+and+i+put+them+there+you+don+t+need+a+task+force+or+a+study+group
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+buy+flowers+for+your+kids
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+you+need+to+know+is+that+the+children+and+the+adults+deserve+flowers+in+their+life+the+cost+is
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+believe+in+hope+and+human+possibilities+that+happens+to+be+at+christmas+time
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+the+next+thing+you+ll+see+is+a+million+dollar+kitchen+that+was
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=had+heard+about+my+desire+to+build+a+new+building++because+i+had+a+cardboard+box+and+i+put+it+in+a+garbage+bag+and+i+walking+all+over+pittsburgh+trying+to+raise+money+for+this+site+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+called+me+into+his+office+which+is+the+equivalent+of+going+to+see+the+wizard+of+oz+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=john+heinz+had+six+hundred+million+dollars+and+at+the+time+i+had+about+sixty+cents+and+he+said
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+ve+heard+about+you+we+ve+heard+about+your+work+with+the+kids+and+the+ex+steel+workers+and+we+re+inclined+to+want+to+support+your+desire+to+build+a+new+building
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+could+do+us+a+great+service+if+you+would+add+a+culinary+program
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+your+program+because+back+then+we+were+building+a+trades+program+he+said
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+way+we+could+fulfill+our+affirmative+action+goals+for+the+heinz+company+i+said+senator
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+go+into+a+field+that+i+don+t+know+much+about+but+i+promise+you+that+if+you+ll+support+my+school+i+ll+get+it+built+and+in+a+couple+of+years+i+ll+come+back
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+weigh+out+that+program+that+you+desire+and+senator+heinz
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sat+very+quietly+and+he+said+well+what+would+your+reaction+be+if+i+said+i+d+give+you+a+million+dollars
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+john+heinz+did+give+me+a+million+bucks+and+most+importantly++he+loaned+me+the+head+of+research+for+the+heinz+company+and+we+kind+of+borrowed+the+curriculum+from+the
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=culinary+institute+of+america+which+in+their+mind+is+kind+of+the+harvard+of+cooking+schools++and+we+created+a+gourmet+cooks+program+for+welfare+mothers
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+middle+of+the+inner+city+and+we+ve+never+looked+back+i+would+like+to+show+you+now+some+of+the+food+that+these+welfare+mothers+do
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+this+million+dollar+kitchen+that+happens+to+be+our+cafeteria+line++that+s+puff+pastry+day++why+because+the+students+made+puff+pastry+and+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=school+ate+every+day++but+the+concept+was+that+i+wanted+to+take+the+stigma+out+of+food
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+good+food+s+not+for+rich+people+good+food+s+for+everybody+on+the+planet++and+there+s+no+excuse+why+we+all+can+t+be+eating+it+so+at+my+school
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+subsidize+a+gourmet+lunch+program+for+welfare+mothers+in+the+middle+of
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+inner+city+because+we+ve+discovered+that+it+s+good+for+their
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+wanted+to+let+them+know+every+day+of+their+life+that+they+have+value+at+this+place+i+call+my+center+we
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+students+who+sit+together+black+kids+and+white+kids+and+what+we+ve+discovered+is
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+solve+the+race+problem+by+creating
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+world+class+environment+because+people+will+have+a+tendency
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+show+you+world+class+behavior
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+treat+them+in+that+way+these+are+examples+of
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+food+that+welfare+mothers+are+doing+after+six+months
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=no+sophistication++no+class+no+dignity++no+history+what+we+ve+discovered+is+the+only+thing+wrong+with
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+any+money+which+happens+to+be+a+curable+condition+it+s+all+in+the+way+that+you+think+about+people+that+often+determines+their+behavior
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+was+done+by+a+student+after+seven+months+in+the+program
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=done+by+a+very+brilliant+young+woman+who+was+taught+by+our+pastry+chef+i+ve+actually+eaten+seven+of+those+baskets+and+they+re+very+good
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+looks+like+your+average+high+school+cafeteria+in+your+average+town+in+america+but+this+is+my
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=once+they+have+been+pushed+aside
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+train+pharmaceutical+technicians+for+the+pharmacy+industry++we+train+medical+technicians+for+the+medical+industry
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=technicians+for+companies+like+bayer+and+calgon+carbon+and+fisher+scientific+and+exxon++and+i+will+guarantee
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+that+if+you+come+to+my+center+in+pittsburgh+and+you+re+all+invited
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+ll+see+welfare+mothers+doing+analytical+chemistry+with+logarithmic+calculators
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ten+months+from+enrolling+in+the+program+there+is+absolutely+no+reason
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=poor+people+can+t+learn+world+class+technology+what+we+ve+discovered+is+you+have+to+give+them+flowers+and+sunlight+and+food
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+expectations+and+herbie+s+music
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+can+cure+a+spiritual+cancer
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=every+time+we+train+corporate+travel
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+have+children+with+high+school+diplomas+that+they+can+t+read++and+so+you+must+ask+yourself+the+question
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+we+graduate+children+from+schools+who+can+t+read+the+diplomas+that+they
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=reason+is+that+the+system+gets+reimbursed+for+the+kids+they+spit+out+the+other+end
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+can+take+these+children+and+in+twenty+weeks+demonstrated+aptitude++i+can+get+them+high+school+equivalent
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=life+saved+with+ceramics+well+i+went+out+and+decided+to+reproduce+my+experience+with+other+kids+in+the+neighborhood+the+theory+being
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+get+kids+flowers+and+you+give+them+food+and+you+give+them+sunshine+and+enthusiasm+you+can+bring+them+right+back+to+life+i+have+four+hundred
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=public+school+system+that+come+to+me+every+day+of+the+week
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+arts+education++and+these+are+children+who+are+flunking+out+of+public+school
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+last+year+i+put+eighty+eight+percent+of+those+kids+in+college+and+i+ve+averaged+over+eighty+percent+for
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fifteen+years+we+ve+made+a+fascinating+discovery+there+s+nothing+wrong
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+sunshine+and+food+and+enthusiasm+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=herbie+s+music+can+t+cure+for+that+i+won+a+big+old+plaque+man+of+the+year+in+education+i+beat+out+all
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+i+figured+that+if+you+treat+children+like+human+beings+it+increases+the+likelihood+they+re+going+to+behave+that+way
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+why+we+can+t+institute+that+policy
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+every+school+and+in+every+city+and+every+town
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+me+show+you+what+these+people+do+we+have+ceramics+and+photography+and+computer+imaging++and+these+are+all+kids+with+no+artistic+ability
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=no+talent+no+imagination++and+we+bring+in+the+world+s+greatest+artists+gordon+parks
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=chester+higgins+has+been+there+and+what+we+ve+learned+is
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+the+children+will+become+like+the+people+who+teach+them+in+fact+i+brought+in+a+mosaic+artist+from+the+vatican
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=woman+who+had+studied+the+old+vatican+mosaic+techniques++and+let+me+show+you+what+they+did+with+the+work
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+were+children+who+the+whole+world+had+given+up+on+who+were+flunking+out+of+public+school+and+that
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+affection+and+sunlight+and+food+and+good+music+and+confidence+we
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+these+are+examples+of+some+of+the+kids++work
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=class+gallery+because+we+believe+that+poor+kids+need+a+world+class+gallery
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+have+smoked+salmon+at+the+art+openings+we+have+a+formal+printed+invitation++and+i+even+have+figured+out+a+way+to+get+their+parents+to+come
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+couldn+t+buy+a+parent+fifteen+years+ago
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+hired+a+guy+who+got+off+on+the+jesus
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+dragging+guys+out+of+bars+and+saving+those+lives+for+the+lord+and+i+said+bill+i+want+to
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hire+you+man+you+have+to+tone+down+the+jesus+stuff+a+little+bit+but+keep+the+enthusiasm
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+can+t+get+these+parents+to+come+to+the+school+he+said+i+ll+get+them+to+come+to+the+school
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+he+jumped+in+the+van+he+went+to+miss+jones++house+and+said+miss+jones
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+you+probably+didn+t+have+a+ride+so+i+came+to+give+you+a+ride+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+got+ten+parents+and+then+twenty+parents+at+the+last+show+that+we+did+two+hundred+parents+showed+up
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+didn+t+pick+up+one+parent+because+now+it+s+become+socially+not+acceptable
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+to+show+up+to+support+your+children+at+the+manchester+craftsmen+s+guild+because+people
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+white+parents+and+the+black+parents+mothers+will+go
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=where+their+children+are+being+celebrated+every+time+every+town+every+city
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=wanted+you+to+see+this+gallery+because+it+s+as+good+as+it+gets+and+by+the+time+i+cut+these+kids+loose+from+high+school+they
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ve+got+four+shows+on+their+resume+before+they+apply+to+college+because+it+s+all+up+here
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+have+to+change+the+way+that+people+see+themselves+before
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+change+their+behavior+and+it+s+worked+out+pretty+good+up+to+this
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=another+room+on+the+building+which+i+d+like+to+show+you+this+is+brand+new++we+just+got+this+slide+done+in+time+for+the+ted+conference
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+gave+this+little+slide+show+at+a+place+called+the+silicon+valley
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+did+all+right+and+the+woman+came+out+of+the+audience+she+said+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+a+great+story+and+i+was+very+impressed+with+your+presentation+my+only+criticism+is+your+computers+are+getting+a+little+bit+old
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+an+easy+solution+to+that+problem+well+i+m+very+pleased+to+announce+to+you+that+hp
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+a+furniture+company+called+steelcase+have+adopted+us+as+a+demonstration+model+for+all+of+their+technology+and+all+their+furniture+for+the+united+states+of+america
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+got+it+just+done+in+time
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+show+you+so+it+s+kind+of+the+world+debut
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+our+digital+imaging+center+i+only
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+a+couple+more+slides+and+this+is+where+the+story+gets+kind+of+interesting
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+just+want+you+to+listen+up+for+a+couple+more+minutes
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=why+he+s+there+and+i+m+here+in+one+thousand+nine+hundred+and+eighty+six+i+had+the+presence+of+mind+to+stick+a+music+hall+on+the+north+end+of+the+building+while+i+was+building+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+a+guy+named+dizzy+gillespie+showed+up
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+play+there+because+he+knew+this+man+over+here++marty
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+stood+on+that+stage+with+dizzy+gillespie+on+sound+check
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+a+wednesday+afternoon+and+i+said+dizzy++why+would+you+come+to+a+black+run+center
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+middle+of+an+industrial+park+with+a
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=high+crime+rate+that+doesn+t+even+have+a+reputation+in+music+he+said+because+i+heard+you+built+the+center+and+i+didn+t+believe+that+you+did+it+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+wanted+to+see+for+myself+and+now+that+i+have
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+give+you+a+gift
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+m+going+to+allow+you+to+record+the+concert+and+i+m+going+to+give+you+the+music+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+ever+choose+to+sell+it+you+must+sign+an+agreement+that+says+the+money+will+come+back+and+support+the+school+and+i
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=recorded+dizzy++and+he+died+a+year+later++but+not+before+telling+a+fellow+named+mccoy+tyner
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=then+a+bass+player+named+ray+brown+and+a+fellow+named+stanley+turrentine
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+a+piano+player+named+herbie+hancock
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+band+called+the+count+basie+orchestra+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=carter+and+dakota+staton+and+nancy+wilson+all+have+come+to+this+center
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+middle+of+an+industrial+park+to+sold+out+audiences+in+the+middle+of+the+inner+city+and+i+m+very+pleased+to+tell+you+that+with
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=their+permission+i+have+now+accumulated+six+hundred+recordings
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+the+greatest+artists+in+the
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=joe+williams+came+up+to+me
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+he+put+his+hand+on+my+shoulder+and+he+said
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+worked+out+all+right+when+the+basie+band+came+the+band+got+so+excited+about+the+school+they+voted+to+give+me+the
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=rights+to+the+music+and+i+recorded+it+and+we+won+something+called+a+grammy+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+a+fool+i+didn+t+go
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=madison+square+garden+then+the+u+n
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=jazz+orchestra+dropped+by+and+we+recorded+them+and+got+nominated+for+a+second+grammy+back+to+back+so
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+ve+become+one+of+the+hot+young+jazz+recording+studios+in+the+united+states+of+america
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+middle+of+the+inner+city+with+a+high+crime
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+the+place+all+filled+up+with
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+there+s+dizzy++just+like+i+told+you+he+was+there+and+he+was+there+tito+puente+and+pat+metheny+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=jim+hall+were+there+and+they+recorded+with+us+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+was+our+first+recording+studio+which+was+the+broom+closet+we+put+the+mops+in+the+hallway+and+re+engineered
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thing+and+that+s+where+we+recorded+the+first+grammy
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+is+our+new+facility+which+is+all+video+technology+and+that+is+a+room+that+was+built+for+a+woman+named+nancy+wilson
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=recorded+that+album+at+our+school
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=last+christmas+and+any+of+you+who+happened+to+have+been+watching+oprah+winfrey+on+christmas+day++he+was+there+and+nancy
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+there+singing+excerpts+from+this+album+the+rights+to+which+she+donated+to+our+school+and+i+can+now+tell+you+with+absolute+certainty
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+an+appearance+on+oprah+winfrey+will+sell+ten+thousand+cds
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+currently+number+four+on+the+billboard+charts+right+behind+tony+bennett++and+i+think+we+re+going+to+be+fine+this+was+burned+out+during+the+riots+this+is
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+i+had+another+cardboard+box+built+and+i+walked+back+out+in+the+streets+again
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+s+the+building++and+that+s+the+model+and+on+the+right+s+a+high+tech+greenhouse+and+in+the+middle+s+the+medical+technology+building+and+i+m+very+pleased+to+tell+you
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+the+building+s+done+it+s+also+full+of+anchor+tenants+at+twenty+dollars+a+foot+triple+that+in+the+middle+of+the+inner+city++and
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+university+of+pittsburgh+medical+center+are+anchor+tenants+and+they+took+half+the+building++and+we+now+train+medical+technicians+through+all+their+system+and+mellon+bank+s+a+tenant+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+love+them+because+they+pay+the+rent+on+time
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+as+a+result+of+the+association+i+m+now+a+director+of+the+mellon+financial+corporation
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+is+in+the+process+of+being+built+as+we+speak+multiply+that+picture+times+four
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+will+see+the+greenhouse+that+s+going+to+open+in+october+this+year+because+we+re+going+to
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=grow+those+flowers+in+the+middle+of+the+inner+city+and+we+re+going+to+have+high+school+kids
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=phalaenopsis+orchids+in+the+middle+of+the+inner+city+and+we+have+a+handshake+with+one+of+the+large+retail+grocers+to+sell+our+orchids
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+all+two+hundred+and+forty+stores
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+our+partners+are+zuma+canyon+orchids+of+malibu+california++who+are+hispanic+so+the+hispanics+and+the+black+folks+have+formed+a+partnership
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+grow+high+technology+orchids+in+the+middle+of+the+inner+city
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+united+states+senator+that+there+was+a+very+high+probability
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+if+he+could+find+some+funding+for+this+we+would+become+a+left+hand+column+in+the+wall+street+journal+to+which+he+readily+agreed+and+we+got+the+funding+and+we+open+in+the+fall
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+big+mistake+i+had+a+chance+to+buy+this+whole+industrial+park+which+is+less+than+one+thousand+feet+from+the+riverfront
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+four+million+dollars+and+i+didn+t+do+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+built+the+first+building+and+guess+what+happened+i+appreciated+the+real+estate+values+beyond+everybody+s+expectations
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+owners+of+the+park+turned+me+down+for+eight+million+dollars
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+ought+to+get+the+civic+leader+of+the+year+award+because+you+ve+appreciated+our+property+values+beyond+our+wildest+expectations
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thank+you+very+much+for+that
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+moral+of+the+story+is+you+must+be+prepared+to+act+on+your+dreams++just+in+case+they+do+come+true
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+finally+there+s+this+picture
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+in+a+place+called+san+francisco
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+reason+this+picture+s+in+here+is
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+did+this+slide+show+a+couple+years+ago+at+a+big+economics+summit+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+was+a+fellow+in+the+audience+who+came+up+to+me+he+said+man+that+s+a+great+story++i+want
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+i+kind+of+accepted+the+flattery+and+the+praise+and+put+it+out+of+my+mind+and+that+weekend+i+was+going+back+home
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+herbie+hancock+was+playing+our+center+that+night+first+time+i+d+met+him+and+he+walked+in+and+he+says
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+matter+of+fact+he+did+know+willie
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+willie+brown+and+herbie+and+i
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=had+dinner+four+years+ago+and+we+started+drawing+out+that+center+on+the+tablecloth+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=willie+brown+said+as+sure+as+i+m+the+mayor+of+san+francisco++i+m+going+to+build+this+thing+as+a+legacy+to+the+poor+people
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+this+city+and+he+got+me+five+acres+of+land+on+san+francisco+bay
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+got+an+architect+and+we+got+a+general+contractor
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+got+herbie+on+the+board++and+our+friends+from+hp+and+our+friends+from+steelcase
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+our+friends+from+cisco+and+our+friends+from+wells+fargo+and+genentech+and+along+the+way+i+met+this+real+short+guy
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+my+slide+show+in+the+silicon+valley+he+came+up+to+me+afterwards+he+said+man+that+s+a+fabulous+story
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thanks+very+much+and+give+me+your+card+and+sometime+we+ll+talk+i+didn+t+know+ebay+from+that
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=jar+of+water+sitting+on+that+piano++but+i+had+the+presence+of+mind+to+go+back+and+talk+to+one+of+the+techie+kids+at+my+center+i+said
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+he+left+me+his+card+so+i+called+him+up+on+the+phone+and+i+said
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=come+to+have+a+much+deeper+appreciation+of+who+you+are
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+he+s+organized+a+team+of+people+and+we+re+going+to+build+this+center
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+went+down+into+the+neighborhood
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=called+bayview+hunters+point++and+i+said++the+mayor+sent+me+down+here+to+work+with+you
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+want+to+build+a+center+with+you+but+i+m+not+going+to+build+you+anything+if+you
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+i+stood+up+in+front+of+two+hundred+very+angry+very+disappointed+people+on+a+summer+night+and+the+air+conditioner+had+broken
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+was+one+hundred+degrees+outside
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+started+showing+these+pictures+and+after+about+ten+pictures+they+all+settled+down
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+in+the+back+of+the+room+a+woman+stood+up+and+she+said+in+thirty+five+years+of+living+in+this+god+forsaken+place+you
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=re+the+only+person+that+s+come+down+here+and+treated+us+with+dignity
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+with+you+man
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+she+turned+that+audience+around+on+a+pin+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+promised+these+people+that+i+was+going+to+build+this+thing+and+we+re+going+to+build+it+all+right+and+i+think+we+can+get+in+the+ground+this+year
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+the+first+replication+of+the+center+in+pittsburgh
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+guy+named+quincy+jones+along+the+way+and+i+showed+him+the+box+of+slides+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=quincy+said+i+want+to+help+you+man
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+ve+fallen+in+love+with+him+as+i+have+with+herbie+and+with+his+music+and+quincy+said+where+did+the+idea
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+centers+like+this+come+from+and+i+said+it+came+from+your+music+man
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+mr+ross+used+to+bring+in+your+albums+when+i+was+sixteen+years+old+in+the+pottery+class
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+the+world+was+all+dark+and+your+music+got
found 0 videos: []
sleep 1 seconds to avoid blocking
error: no video is found.
sleep 5 seconds to avoid blocking
------<267>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BillyCollins_2012.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+give+you+your+recommended+dietary+allowance+of+poetry
found 1 videos: [['/talks/billy_collins_everyday_moments_caught_in_time', '2012']]
selected: /talks/billy_collins_everyday_moments_caught_in_time
sleep 2 seconds to avoid blocking
------<268>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BillyCollins_2014.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+don+t+know+if+you+ve+noticed+but+there+s+been+a+spate+of+books+that+have+come+out+lately+contemplating+or+speculating+on
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+cognition+and+emotional+life+of+dogs+do+they+think
found 5 videos: [['/talks/billy_collins_two_poems_about_what_dogs_think_probably', '2014'], ['/talks/kevin_kelly_how_ai_can_bring_on_a_second_industrial_revolution', '2016'], ['/talks/david_anderson_your_brain_is_more_than_a_bag_of_chemicals', '2013'], ['/talks/read_montague_what_we_re_learning_from_5_000_brains', '2012'], ['/talks/judson_brewer_a_simple_way_to_break_a_bad_habit', '2016']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=do+they+feel+and+if+so+how+so+this+afternoon+in+my+limited+time+i+wanted+to+take
found 2 videos: [['/talks/mia_birdsong_the_story_we_tell_about_poverty_isn_t_true', '2015'], ['/talks/billy_collins_two_poems_about_what_dogs_think_probably', '2014']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+guesswork+out+of+a+lot+of+that+by+introducing+you+to+two+dogs
found 1 videos: [['/talks/billy_collins_two_poems_about_what_dogs_think_probably', '2014']]
selected: /talks/billy_collins_two_poems_about_what_dogs_think_probably
sleep 5 seconds to avoid blocking
------<269>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BillyGraham_1998.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+maybe+an+owl+out+of+the+air
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+preaching+in+san+jose+some+time+ago
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+my+friend+mark+kvamme+who+helped+introduce+me
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+this+conference+brought+several+ceos
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+leaders+of+some+of+the+companies+here+in+the+silicon+valley+to+have+breakfast+with+me+or+i+with+them
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+the+world+that+is+yet+to+come
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+know+that+we+re+near+the+end+of+this+conference++and+some+of+you+may+be+wondering
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=why+they+have+a+speaker+from+the+field+of+religion
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=richard+can+answer+that++because+he+made+that+decision
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+some+years+ago+i+was+on+an+elevator+in+philadelphia+coming
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=down+i+was+to+address+a+conference
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+on+that+elevator+a+man+said+i+hear+billy+graham+is+staying+in+this+hotel+and+another+man+looked+in+my+direction+and+said
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+he+is+he+s+on+this+elevator+with+us
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+man+looked+me+up+and+down+for+about+ten+seconds++and+he+said+my+what+an+anticlimax
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+hope+that+you+won+t+feel+that+these+few+moments+with+me+is+not+a+is+an+anticlimax++after+all+these+tremendous
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=talks+that+you+ve+heard+and+addresses+which+i+intend+to+listen+to+every+one+of+them++but+i+was
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+an+airplane+in+the+east+some+years+ago
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+man+sitting+across+the+aisle+from+me+was+the+mayor+of+charlotte+north+carolina+his+name+was+john+belk+some+of+you+will+probably+know+him
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+there+was+a+drunk+man+on+there++and+he+got+up+out+of+his+seat+two+or+three+times+and+he+was+making+everybody+upset+by
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+he+was+trying+to+do+and+he+was+slapping+the+stewardess+and+pinching+her+as+she+went+by+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=everybody+was+upset+with+him++and+finally++john+belk+said+do+you+know+who+s+sitting+here+and+the+man
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+he+turned+to+me+and+he+said+put+her+there+he+said+your+sermons+have+certainly+helped+me
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+suppose+that+that+that+s+true+with+thousands+of+people
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+know+that+as+you+have+been+peering+into+the+future++and+as+we+ve+heard+some+of+it+here+tonight
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+would+like+to+live+in+that+age
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+see+what+is+going+to+be
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+won+t+because+i+m+eighty+years+old+this+is+my+eightieth+year++and+i+know+that+my+time+is+brief
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+phlebitis+at+the+moment+in+both+legs
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+s+the+reason+that+i+had+to+have+a+little+help+in+getting+up+here+because+i+have+parkinson+s+disease+in+addition+to+that+and+some+other+problems+that+i+won+t+talk+about
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+not+the+first+time+that+we+ve+had+a+technological+revolution+we+ve+had+others++and+there+s+one+that+i+want+to+talk+about
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+one+generation++the+nation+of+the+people+of+israel
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=had+a+tremendous+and+dramatic+change+that+made+them+a+great+power
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+man+by+the+name+of+david+came+to+the+throne++and+king+david+became+one+of+the+great+leaders
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+was+a+man+of+tremendous+leadership++he+had+the+favor+of+god+with+him
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=poet+philosopher++writer++soldier+with+strategies+in+battle+and+conflict+that+people+study
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+about+two+centuries+before+david+the+hittites
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=had+discovered+the+secret+of+smelting
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+processing+of+iron+and+slowly+that+skill+spread++but+they+wouldn+t+allow+the+israelis
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+look+into+it+or+to+have+any++but+david+changed+all+of+that
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+he+introduced+the+iron+age+to+israel
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+bible+says+that+david+laid+up+great+stores+of+iron
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+which+archaeologists+have+found+that+in+present+day+palestine+there+are+evidences+of+that+generation
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=made+of+sticks+and+stones+israel+now+had+iron+plows+and+sickles+and+hoes+and
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+in+the+course+of+one+generation++israel+was+completely+changed
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+introduction+of+iron+in+some+ways+had+an+impact
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+little+bit+like+the+microchip+has+had+on+our+generation
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+there+were+many+problems+that+technology+could+not+solve+there+were+many+problems
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=still+left++and+they+re+still+with+us++and+you+haven+t+solved+them++and+i+haven+t+heard+anybody+here+speak
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+that++how+do+we+solve+these+three+problems+that+i+d+like+to+mention+the+first+one
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+david+saw+was+human+evil
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=where+does+it+come+from++how+do+we+solve+it+over+again
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+again+in+the+psalms++which+gladstone+said+was+the+greatest+book+in+the+world
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=david+describes+the+evils+of+the+human+race++and+yet+he+says+he+restores
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+you+ever+thought+about+what+a+contradiction+we+are
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+one+hand+we+can+probe+the+deepest+secrets+of+the+universe+and+dramatically+push+back+the+frontiers+of+technology
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=demonstrates+we+ve+seen+under+the+sea+three+miles+down+or+galaxies
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hundreds+of+billions+of+years+out+in+the+future++but+on+the+other+hand
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=our+soldiers+are+on+a+frontier+now++almost+ready+to+go+to+war
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+iraq++now+what+causes+this
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=why+do+we+have+these+wars+in+every+generation++and+in+every+part+of+the+world++and+revolutions
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+can+t+get+along+with+other+people+even+in+our+own+families+we+find+ourselves+in+the+paralyzing+grip+of+self+destructive+habits+we+can+t+break
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+injustice+and+violence+sweep+our+world+bringing+a+tragic+harvest+of+heartache+and+death
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=even+the+most+sophisticated+among+us
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=seem+powerless+to+break+this+cycle
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+would+like+to+see+oracle+take+up+that+or
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=geniuses+work+on+this+how+do+we+change+man+so+that+he+doesn+t+lie+and+cheat
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=our+newspapers+are+not+filled+with+stories+of+fraud
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+business+or+labor+or+athletics+or+wherever
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+bible+says+the+problem+is+within+us++within+our+hearts+and+our+souls
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=our+problem+is+that+we+are+separated+from+our+creator
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+we+call+god+and+we+need+to+have+our+souls+restored
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=do+jesus+said+for+out+of+the+heart
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=come+evil+thoughts++murders++sexual+immorality++theft++false+testimonies++slander
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+british+philosopher+bertrand+russell+was+not+a+religious+man++but+he+said+it+s+in+our+hearts+that+the
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+s+from+our+hearts+that+it+must+be+plucked+out+albert+einstein
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+just+talking+to+someone+when+i+was+speaking+at+princeton
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=mr+einstein+he+didn+t+have+a+doctor+s+degree+because+he+said+nobody+was+qualified+to+give+him+one
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+easier+to+denature+plutonium+than+to+denature+the+evil+spirit+of+man+and+many+of+you+i+m+sure+have+thought+about+that
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+puzzled+over+it+you+ve+seen+people
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=take+beneficial+technological+advances+such+as+the+internet+we+ve+heard+about+tonight++and+twist+them+into+something
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=corrupting+you+ve+seen+brilliant+people+devise+computer+viruses+that+bring+down+whole+systems++the+oklahoma+city
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=bombing+was+simple+technology++horribly+used
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+problem+is+not+technology++the+problem+is+the+person+or+persons+using+it
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+he+knew+the+depths+of+his+own+soul+he+couldn+t+free+himself+from+personal+problems+and+personal+evils
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=yet+king+david+sought+god+s+forgiveness+and+said+you+can+restore+my+soul+you+see+the+bible+teaches
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+we+re+more+than+a+body+and+a+mind
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+are+a+soul++and+there+s+something+inside+of+us+that+is+beyond
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=our+understanding+that+s+the+part+of+us+that+yearns
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=your+soul+is+that+part+of+you+that+yearns+for+meaning+in+life
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+which+seeks+for+something+beyond+this+life++it+s+the+part+of+you+that+yearns+really+for+god++i+find+[+that+]+young+people+all+over+the+world+are+searching+for+something
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+don+t+know+what+it+is+i+speak+at+many+universities++and+i+have+many+questions+and+answer+periods+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=whether+it+s+cambridge+or+harvard+or
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=oxford+i+ve+spoken+at+all+of+those+universities+i+m+going+to+harvard+in+about+three+or+four+no+it+s+about+two+months+from+now
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+give+a+lecture+and+i+ll+be+asked+the+same+questions+that+i+was+asked+the+last+few+times+i+ve+been+there+and+it+ll+be
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=where+did+i+come+from+why+am+i+here++where+am+i+going+what+s+life+all+about+why+am+i+here
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=even+if+you+have+no+religious+belief+there+are+times+when+you+wonder+that+there+s+something+else
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thomas+edison+also+said+when+you+see+everything+that+happens+in+the+world+of+science+and+in+the+working+of+the+universe+you+cannot+deny
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+there+s+a+captain+on+the+bridge
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+remember+once+i+sat+beside+mrs+gorbachev
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+a+white+house+dinner++i+went+to+ambassador+dobrynin+whom+i+knew+very+well+and+i+d+been+to+russia+several+times
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=under+the+communists++and+they+d+given+me+marvelous+freedom+that+i+didn+t+expect
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+knew+mr+dobrynin+very+well+and+i+said+i+m+going+to+sit+beside
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+shall+i+talk+to+her+about+and+he+surprised+me+with+the+answer+he+said+talk+to+her+about+religion
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+philosophy+that+s+what+she+s+really+interested+in+i+was+a+little+bit+surprised+but+that+evening
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+what+we+talked+about++and+it+was+a+stimulating+conversation
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+afterward+she+said+you+know+i+m+an+atheist++but+i+know+that+there+s+something+up+there
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+second+problem+that+king+david+realized+he+could+not+solve
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+the+problem+of+human+suffering
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=writing+the+oldest+book+in+the+world+was+job++and+he+said+man+is+born+unto+trouble+as+the+sparks+fly+upward
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=yes+to+be+sure+science+has+done+much+to+push+back+certain+types+of+human
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=be+eighty+years+of+age+i+admit+that+i+m+very+grateful+for+all+the+medical+advances
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+have+kept+me+in+relatively+good+health+all+these+years+my+doctors+at+the+mayo+clinic+urged+me+not+to+take+this+trip+out+here+to+this
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+be+here+i+haven+t+given+a+talk+in+nearly
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+when+you+speak+as+much+as+i+do+three+or+four+times+a+day
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=get+rusty+that+s+the+reason+i+m+using+this+podium+and+using+these+notes
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=every+time+you+ever+hear+me+on+the+television+or+somewhere+i+m+ad+libbing+i
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=m+not+reading+i+never+read+an+address++i+never+read+a+speech+or+a+talk+or+a+lecture
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=got+some+notes+here+so+that+if
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+begin+to+forget++which+i+do+sometimes
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+got+something+i+can+turn+to+but+even+here+among+us
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+most+advanced+society+in+the+world++we+have+poverty
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=friends+that+betray+us+unbearable+psychological+pressures+bear+down+on+us++i+ve+never+met+a+person+in+the+world+that+didn+t+have+a+problem
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+a+worry++why+do+we+suffer++it+s+an+age+old+question
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+we+haven+t+answered++yet+david+again+and+again+said
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+he+would+turn+to+god+he+said+the+lord+is+my+shepherd
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=problem+that+david+knew+he+could+not+solve+was+death
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=many+commentators+have+said+that+death+is+the+forbidden+subject+of+our+generation++most+people+live+as+if
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+re+never+going+to+die++technology+projects+the+myth+of+control+over+our+mortality
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=see+people+on+our+screens++marilyn+monroe+is+just+as+beautiful+on+the+screen+as+she+was+in+person++and+our+many+young+people+think+she+s+still+alive
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+don+t+know+that+she+s+dead++or+clark+gable+or+whoever+it+is+the+old+stars+they+come+to+life
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+re+just+as+great+on+that+screen+as+they+were+in+person
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+death+is+inevitable++i+spoke+some+time+ago+to
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+joint+session+of+congress+last+year
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+were+meeting+in+that+room++the+statue+room+about+three+hundred+of+them+were+there
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+said+there+s+one+thing+that+we+have+in+common+in+this+room+all+of+us+together+whether+republican+or+democrat
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+said+we+re+all+going+to+die++and+we+have+that+in+common+with+all+these+great+men+of+the+past+that+are+staring+down+at+us
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+s+often+difficult+for+young+people+to+understand+that+it
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+difficult+for+them+to+understand+that+they+re+going+to+die++as+the+ancient+writer+of+ecclesiastes+wrote+he+said
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+every+activity+under+heaven+there+s+a+time+to+be+born+and+there+s+a+time+to+die
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+stood+at+the+deathbed
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+several+famous+people++whom+you+would+know
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+talked+to+them++i+ve+seen+them+in+those+agonizing+moments+when+they+were+scared+to+death++and+yet+a+few+years+earlier
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=death+never+crossed+their+mind++i+talked+to+a+woman+this+past+week
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+a+famous+doctor+she+said+he
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=never+thought+of+god+never+talked+about+god+didn+t+believe+in+god+he+was+an+atheist
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+he+came+to+die++he+sat+up+on+the+side+of+the+bed+one+day+and+he+asked+the+nurse+if+he+could+see+the+chaplain
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+he+said+for+the+first+time+in+his+life+he+d+thought+about
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+inevitable+and+about+god+was+there+a+god
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+few+years+ago+a+university+student+asked+me
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=surprise+in+your+life+and+i+said+the+greatest+surprise+in+my+life+is+the+brevity+of+life+it+passes+so+fast
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+it+does+not+need+to+have+to+be+that+way++wernher+von+braun
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+aftermath+of+world+war+ii+concluded+quote+science+and+religion+are+not+antagonists+on+the+contrary
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+put+it+on+a+personal+basis+i+knew+dr+von+braun+very+well
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+he+said+speaking+for+myself++i+can+only+say+that+the+grandeur+of+the+cosmos+serves+only+to+confirm+a+belief+in+the+certainty+of+a+creator
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+our+search+to+know+god++i+ve+come+to+believe+that+the+life+of+jesus+christ
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=should+be+the+focus+of+our+efforts+and+inspiration++the+reality+of+this+life+and+his+resurrection+is+the+hope+of+mankind
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+done+a+lot+of+speaking+in+germany
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+in+france++and+in+different+parts+of+the+world+one+hundred+and+five+countries+it+s+been+my+privilege+to+speak+in
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+was+invited+one+day+to+visit+chancellor+adenauer
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+was+looked+upon+as+sort+of+the+founder+of+modern+germany+since+the+war
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+he+once+and+he+said+to+me+he+said+young+man+he+said+do+you+believe+in+the+resurrection+of+jesus+christ
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+said+sir+i+do+he+said+so+do+i+he+said+when+i+leave
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+spend+my+time+writing+a+book
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+why+jesus+christ+rose+again+and+why+it+s+so+important+to+believe+that
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+one+of+his+plays++alexander+solzhenitsyn
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=depicts+a+man+dying++who+says+to+those+gathered+around+his+bed+the+moment+when+it+s+terrible+to
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=feel+regret+is+when+one+is+dying+how+should+one+live+in+order+not+to+feel+regret+when+one+is+dying
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=asked+exactly+that+question+in+seventeenth+century+france++pascal+has+been+called+the+architect+of+modern
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=scientist+at+the+frontiers+of+mathematics+even+as+a+teenager+he+is+viewed+by+many+as+the+founder+of+the+probability+theory
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+a+creator+of+the+first+model+of+a+computer
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+of+course+you+are+all+familiar+with+the+computer+language+named+for+him
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=pascal+explored+in+depth+our+human+dilemmas+of+evil+suffering+and+death
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+was+astounded+at+the+phenomenon+we+ve+been+considering
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+people+can+achieve+extraordinary+heights+in+science+the+arts+and+human+enterprise
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=yet+they+also+are+full+of+anger+hypocrisy+and+have+and++self+hatreds
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=pascal+saw+us+as+a+remarkable+mixture+of+genius+and
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=absolutely+to+jesus+christ+my+redeemer+a+french+historian+said
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=seldom+has+so+mighty+an+intellect
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=pascal+came+to+believe+not+only+the+love+and+the+grace+of+god+could+bring+us+back+into+harmony
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+his+own+sins+and+failures+could+be+forgiven+and+that+when+he+died+he+would+go+to+a+place+called+heaven
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+experienced+it+in+a+way+that+went+beyond+scientific+observation+and+reason
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+he+who+penned+the+well+known+words+the+heart+has+its+reasons++which+reason+knows+not+of
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=equally+well+known+is+pascal+s+wager++essentially+he+said+this+if+you+bet+on+god
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+open+yourself+to+his+love+you+lose+nothing++even+if+you+re+wrong
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+if+instead+you+bet+that+there+is+no+god++then+you+can+lose+it+all+in+this+life+and+the+life+to+come
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=pascal+scientific+knowledge+paled+beside+the+knowledge+of+god++the+knowledge+of+god+was+far+beyond
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=anything+that+ever+crossed+his+mind++he+was+ready+to+face+him
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+he+died+at+the+age+of+thirty+nine+king+david
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=lived+to+be+seventy+a+long+time+in+his+era++yet+he+too+had+to+face+death++and+he+wrote+these+words
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+walk+through+the+valley+of+the+shadow+of+death++i+will+fear+no+evil+for+you+are+with+me
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+was+david+s+answer+to+three+dilemmas+of+evil++suffering+and+death++it+can+be+yours
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+well+as+you+seek+the+living+god
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+allow+him+to+fill+your+life+and+give+you+hope+for+the
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+was+seventeen+years+of+age
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+born+and+reared+on+a+farm+in+north+carolina++i+milked+cows+every+morning+and+i+had+to+milk+the+same+cows+every+evening+when+i+came+home+from+school
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+there+were+twenty+of+them+that+i+had+that+i+was+responsible+for
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+worked+on+the+farm
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+tried+to+keep+up+with+my+studies
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+didn+t+make+good+grades+in+high+school++i+didn+t+make+them+in+college+until
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=something+happened+in+my+heart+one+day+i+was+faced
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+christ+he+said+i+am+the+way+the+truth+and+the+life+can+you+imagine
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+embodiment+of+all+truth+he+was+a+liar
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+he+was+what+he+claimed+to+be+which+was+he
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+had+to+make+that+decision++i+couldn+t+prove+it++i+couldn+t+take+it+to+a+laboratory
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+experiment+with+it++but+by
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+believe+him++and+he+came+into+my+heart
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+changed+my+life+and+now
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+ready+when+i+hear+that+call+to+go+into+the+presence+of+god++thank+you+and+god+bless+all+of+you
found 0 videos: []
error: no video is found.
sleep 3 seconds to avoid blocking
------<270>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BirkeBaehr_2010X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+name+is+birke+baehr+and+i+m+eleven+years+old++i+came+here+today+to+talk+about+what+s+wrong+with+our+food+system
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=first+of+all+i+would+like+to+say+that+i+m+really+amazed+at+how+easily+kids+are+led+to+believe+all+the+marketing+and+advertising+on+tv+at+public+schools+and+pretty+much+everywhere
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=else+you+look+it+seems+to+me+like+corporations+are+always+trying+to+get+kids+like+me+to+get+their+parents+to+buy+stuff+that+really+isn+t+good+for+us+or+the+planet
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=little+kids+especially+are+attracted+by+colorful+packaging+and+plastic+toys++i+must+admit++i+used+to+be+one+of+them
found 1 videos: [['/talks/birke_baehr_what_s_wrong_with_our_food_system', '2010']]
selected: /talks/birke_baehr_what_s_wrong_with_our_food_system
sleep 3 seconds to avoid blocking
------<271>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BjarkeIngels_2009G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+public+debate+about+architecture+quite+often+just+stays+on+contemplating+the+final+result+the+architectural+object+is+the+latest+tower+in+london
found 1 videos: [['/talks/bjarke_ingels_3_warp_speed_architecture_tales', '2009']]
selected: /talks/bjarke_ingels_3_warp_speed_architecture_tales
sleep 3 seconds to avoid blocking
------<272>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BJMiller_2015.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+all+need+a+reason+to+wake+up
found 18 videos: [['/talks/bill_gates_the_next_outbreak_we_re_not_ready', '2015'], ['/talks/clint_smith_how_to_raise_a_black_son_in_america', '2015'], ['/talks/sebastian_bortnik_the_conversation_we_re_not_having_about_digital_child_abuse', '2017'], ['/talks/tiffany_watt_smith_the_history_of_human_emotions', '2017'], ['/talks/adam_grant_the_surprising_habits_of_original_thinkers', '2016'], ['/talks/j_d_vance_america_s_forgotten_working_class', '2016'], ['/talks/bj_miller_what_really_matters_at_the_end_of_life', '2015'], ['/talks/michael_kimmel_why_gender_equality_is_good_for_everyone_men_included', '2015'], ['/talks/alexander_betts_our_refugee_system_is_failing_here_s_how_we_can_fix_it', '2016'], ['/talks/johann_hari_everything_you_think_you_know_about_addiction_is_wrong', '2015'], ['/talks/alyson_mcgregor_why_medicine_often_has_dangerous_side_effects_for_women', '2015'], ['/talks/john_searle_our_shared_condition_consciousness', '2013'], ['/talks/amy_adkins_why_do_we_dream', '2015'], ['/talks/jennifer_granick_how_the_us_government_spies_on_people_who_protest_including_you', '2017'], ['/talks/ge_wang_the_diy_orchestra_of_the_future', '2014'], ['/talks/barbara_natterson_horowitz_what_veterinarians_know_that_physicians_don_t', '2014'], ['/talks/stacy_smith_the_data_behind_hollywood_s_sexism', '2017'], ['/talks/scott_dinsmore_how_to_find_work_you_love', '2015']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+me+it+just+took+eleven+thousand+volts
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+know+you+re+too+polite+to+ask+so+i+will+tell+you+one+night++sophomore+year+of+college+just
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=back+from+thanksgiving+holiday+a+few+of+my+friends+and+i+were
found 1 videos: [['/talks/bj_miller_what_really_matters_at_the_end_of_life', '2015']]
selected: /talks/bj_miller_what_really_matters_at_the_end_of_life
sleep 1 seconds to avoid blocking
------<273>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BjornLomborg_2005.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+i+d+like+to+talk+about+is+really
found 2 videos: [['/talks/john_doerr_salvation_and_profit_in_greentech', '2007'], ['/talks/erin_mckean_the_joy_of_lexicography', '2007']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+biggest+problems+in+the+world+i+m+not+going+to+talk+about+the+skeptical+environmentalist+probably+that+s+also+a+good+choice
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+am+going+talk+about+what+are+the+big+problems+in+the+world++and+i+must+say++before+i+go+on++i+should+ask+every+one+of+you+to+try+and+get+out
found 6 videos: [['/talks/jane_goodall_what_separates_us_from_chimpanzees', '2007'], ['/talks/anna_deavere_smith_four_american_characters', '2007'], ['/talks/bjorn_lomborg_global_priorities_bigger_than_climate_change', '2007'], ['/talks/sir_ken_robinson_do_schools_kill_creativity', '2006'], ['/talks/ngozi_okonjo_iweala_aid_versus_trade', '2007'], ['/talks/chris_abani_telling_stories_from_africa', '2007']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=pen+and+paper+because+i+m+actually+going+to+ask+you+to
found 1 videos: [['/talks/john_maeda_designing_for_simplicity', '2007']]
selected: /talks/john_maeda_designing_for_simplicity
sleep 2 seconds to avoid blocking
------<274>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BLACK_2013.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+was+fourteen+years+old++i+had
found 5 videos: [['/talks/shaka_senghor_why_your_worst_deeds_don_t_define_you', '2014'], ['/talks/guy_winch_why_we_all_need_to_practice_emotional_first_aid', '2015'], ['/talks/alice_goffman_how_we_re_priming_some_kids_for_college_and_others_for_prison', '2015'], ['/talks/ray_laurence_four_sisters_in_ancient_rome', '2013'], ['/talks/jeff_speck_the_walkable_city', '2013']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+felt+i+was+not+talented
found 12 videos: [['/talks/ismael_nazario_what_i_learned_as_a_kid_in_jail', '2015'], ['/talks/hetain_patel_who_am_i_think_again', '2013'], ['/talks/parul_sehgal_an_ode_to_envy', '2013'], ['/talks/black_my_journey_to_yo_yo_mastery', '2013'], ['/talks/mia_birdsong_the_story_we_tell_about_poverty_isn_t_true', '2015'], ['/talks/bran_ferren_to_create_for_the_ages_let_s_combine_art_and_engineering', '2014'], ['/talks/laura_snyder_the_philosophical_breakfast_club', '2013'], ['/talks/angela_lee_duckworth_grit_the_power_of_passion_and_perseverance', '2013'], ['/talks/jarrett_j_krosoczka_how_a_boy_became_an_artist', '2013'], ['/talks/tali_sharot_the_optimism_bias', '2012'], ['/talks/becci_manson_re_touching_lives_through_photos', '2012'], ['/talks/brene_brown_listening_to_shame', '2012']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+anything+one+day++i+bought+a+yo+yo
found 1 videos: [['/talks/black_my_journey_to_yo_yo_mastery', '2013']]
selected: /talks/black_my_journey_to_yo_yo_mastery
sleep 5 seconds to avoid blocking
------<275>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BlaiseAguerayArcas_2010.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+a+year+and+a+half+ago++stephen+lawler++who+also+gave+a+talk+here+at+ted+in+two+thousand+and+seven+on+virtual+earth+brought+me+over
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+become+the+architect+of+bing+maps+which+is+microsoft+s
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+past+two+and+a+half+we+ve+been+very+hard+at+work+on+redefining+the+way+maps+work+online
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+really+are+seeing+this+in+very+different+terms+from+the+kind+of+mapping+and+direction+site+that+that+one+is+used+to
found 1 videos: [['/talks/blaise_aguera_y_arcas_augmented_reality_maps', '2010']]
selected: /talks/blaise_aguera_y_arcas_augmented_reality_maps
sleep 2 seconds to avoid blocking
------<276>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BlaiseAguerayArcas_2016S.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+lead+a+team+at+google+that+works+on+machine+intelligence++in+other+words++the+engineering+discipline+of+making+computers+and+devices+able+to+do+some+of+the+things+that+brains+do
found 1 videos: [['/talks/blaise_aguera_y_arcas_how_computers_are_learning_to_be_creative', '2016']]
selected: /talks/blaise_aguera_y_arcas_how_computers_are_learning_to_be_creative
sleep 5 seconds to avoid blocking
------<277>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BoazAlmog_2012G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+phenomenon+you+saw+here+for+a+brief+moment+is+called+quantum+levitation+and+quantum
found 1 videos: [['/talks/boaz_almog_the_levitating_superconductor', '2012']]
selected: /talks/boaz_almog_the_levitating_superconductor
sleep 1 seconds to avoid blocking
------<278>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BobbyGhosh_2012X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=m+going+to+talk+about+the+power+of+a+word+jihad
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+the+vast+majority+of+practicing+muslims+jihad+is+an+internal+struggle
found 1 videos: [['/talks/bobby_ghosh_why_global_jihad_is_losing', '2012']]
selected: /talks/bobby_ghosh_why_global_jihad_is_losing
sleep 3 seconds to avoid blocking
------<279>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BobMankoff_2013S.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=talking+about+designing+humor+which+is+sort+of+an+interesting+thing+but+it+goes+to+some+of+the
found 1 videos: [['/talks/bob_mankoff_anatomy_of_a_new_yorker_cartoon', '2013']]
selected: /talks/bob_mankoff_anatomy_of_a_new_yorker_cartoon
sleep 5 seconds to avoid blocking
------<280>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BobThurman_2006S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+feel+like+this+whole+evening+has+been+very
found 8 videos: [['/talks/robert_thurman_we_can_be_buddhas', '2007'], ['/talks/thomas_barnett_let_s_rethink_america_s_military_strategy', '2007'], ['/talks/frank_gehry_my_days_as_a_young_rebel', '2008'], ['/talks/jane_goodall_how_humans_and_animals_can_live_together', '2008'], ['/talks/arthur_ganson_moving_sculpture', '2008'], ['/talks/karen_armstrong_my_wish_the_charter_for_compassion', '2008'], ['/talks/billy_graham_on_technology_and_faith', '2008'], ['/talks/tim_brown_tales_of_creativity_and_play', '2008']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=amazing+to+me+i+feel+it+s+sort+of+like+the+vimalakirti+sutra
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=an+ancient+work+from+ancient+india
found 6 videos: [['/talks/robert_thurman_we_can_be_buddhas', '2007'], ['/talks/larry_brilliant_the_case_for_optimism', '2007'], ['/talks/peter_hirshberg_the_web_is_more_than_better_tv', '2008'], ['/talks/william_mcdonough_cradle_to_cradle_design', '2007'], ['/talks/helen_fisher_why_we_love_why_we_cheat', '2006'], ['/talks/juan_enriquez_the_life_code_that_will_reshape_the_future', '2007']]
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+the+beginning+and+a+whole+bunch+of+people+come+to+see+him+from+the+biggest+city+in+the+area+vaisali
found 1 videos: [['/talks/robert_thurman_we_can_be_buddhas', '2007']]
selected: /talks/robert_thurman_we_can_be_buddhas
sleep 2 seconds to avoid blocking
------<281>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BoghumaKabisenTitanji_2012X.stm
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+story+of+one+of+my+patients+called+celine+celine+is+a+housewife+and+lives+in+a+rural+district+of+cameroon+in+west+central+africa
found 1 videos: [['/talks/boghuma_kabisen_titanji_ethical_riddles_in_hiv_research', '2013']]
selected: /talks/boghuma_kabisen_titanji_ethical_riddles_in_hiv_research
sleep 3 seconds to avoid blocking
------<282>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BonifaceMwangi_2014U.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+back+home+call+me+a+heckler+a+troublemaker+an+irritant+a+rebel+an+activist+the+voice+of+the+people
found 1 videos: [['/talks/boniface_mwangi_the_day_i_stood_up_alone', '2015']]
selected: /talks/boniface_mwangi_the_day_i_stood_up_alone
sleep 5 seconds to avoid blocking
------<283>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BonnieBassler_2009.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=bacteria+are+the+oldest+living+organisms+on+the+earth+they+ve+been+here+for+billions+of+years++and+what+they+are+are
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=microscopic+organisms++so+they+are+one+cell+and+they+have+this+special+property+that+they+only+have+one+piece+of+dna+they+have+very+few+genes+and+genetic+information+to+encode
found 1 videos: [['/talks/bonnie_bassler_how_bacteria_talk', '2009']]
selected: /talks/bonnie_bassler_how_bacteria_talk
sleep 1 seconds to avoid blocking
------<284>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/Bono_2005.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=alexander+graham+bell+famously+said+on+his+first+successful+telephone+call+hello+is+that+domino+s+pizza
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=another+famous+man+jerry+garcia+said+what+a+strange++long+trip+and+he
found 1 videos: [['/talks/bono_my_wish_three_actions_for_africa', '2006']]
selected: /talks/bono_my_wish_three_actions_for_africa
sleep 5 seconds to avoid blocking
------<285>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/Bono_2013.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=anderson+asked+me+if+i+could+put+the+last+twenty+five+years+of+anti+poverty+campaigning+into+ten+minutes+for+ted
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+an+englishman+asking+an+irishman+to+be+succinct
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+be+a+good+use+of+your+messianic+complex
found 1 videos: [['/talks/bono_the_good_news_on_poverty_yes_there_s_good_news', '2013']]
selected: /talks/bono_the_good_news_on_poverty_yes_there_s_good_news
sleep 5 seconds to avoid blocking
------<286>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BoydVarty_2013W.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=trying+to+live+from+his+heart++and+so+just+before+i+get+going+i+wanted+to+tell+you+as+a+south+african
found 9 videos: [['/talks/boyd_varty_what_i_learned_from_nelson_mandela', '2013'], ['/talks/bryan_stevenson_we_need_to_talk_about_an_injustice', '2012'], ['/talks/neil_pasricha_the_3_a_s_of_awesome', '2011'], ['/talks/steven_wise_chimps_have_feelings_and_thoughts_they_should_also_have_rights', '2015'], ['/talks/jacqueline_novogratz_inspiring_a_life_of_immersion', '2011'], ['/talks/alice_dreger_is_anatomy_destiny', '2011'], ['/talks/natalie_warne_being_young_and_making_an_impact', '2011'], ['/talks/sarah_jones_what_does_the_future_hold_11_characters_offer_quirky_answers', '2014'], ['/talks/martine_rothblatt_my_daughter_my_wife_our_robot_and_the_quest_for_immortality', '2015']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+one+of+the+men+who+has+inspired+me+most+passed+away+a+few+hours+ago++nelson+mandela
found 1 videos: [['/talks/boyd_varty_what_i_learned_from_nelson_mandela', '2013']]
selected: /talks/boyd_varty_what_i_learned_from_nelson_mandela
sleep 3 seconds to avoid blocking
------<287>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BranFerren_2014.stm
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+was+a+little+boy++i+had+an+experience+that+changed+my+life+and+is+in+fact+why+i+m+here+today
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+one+moment+one+moment+profoundly+affected+how+i+think+about+art+design+and+engineering
found 1 videos: [['/talks/bran_ferren_to_create_for_the_ages_let_s_combine_art_and_engineering', '2014']]
selected: /talks/bran_ferren_to_create_for_the_ages_let_s_combine_art_and_engineering
sleep 3 seconds to avoid blocking
------<288>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BrendaBrathwaite_2011X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+we+think+of+games+there+s+all+kinds+of+things+maybe+you+re+ticked+off+or+maybe+you+re+looking+forward+to+a+new+game+you+ve+been+up+too+late+playing+a+game+all+these+things+happen+to+me
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+when+we+think+about+games+a+lot+of+times+we+think+about+stuff+like+this+first+person+shooters+or+the
found 1 videos: [['/talks/brenda_romero_gaming_for_understanding', '2012']]
selected: /talks/brenda_romero_gaming_for_understanding
sleep 2 seconds to avoid blocking
------<289>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BrendaLaurel_1998.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+started+working+for+a+company+called+interval+research+which+was+just+then+being+founded+by+david+lidell+and+paul+allen
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+a+for+profit+research+enterprise+in+silicon+valley
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+met+with+david+to+talk+about+what+i+might+do+in+his+company
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+just+coming+out+of+a+failed+virtual+reality+business+and+supporting+myself+by+being+on+the+speaking+circuit+and+writing+books
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=after+twenty+years+or+so+in+the+computer+game+industry
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ideas+that+people+didn+t+think+they+could+sell
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+david+and+i+discovered+that+we+had+a+question+in+common+that+we+really+wanted+the+answer+to+and+that+was+why+hasn+t+anybody+built+any+computer+games+for+little
error: request timeout
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+can+t+just+be+a+giant+sexist+conspiracy+these+people+aren+t+that+smart+there+s+six+billion+dollars+on+the+table
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+would+go+for+it+if+they+could+figure+out+how+so+what+is+the+deal+here+and+as+we+thought+about+our+our+goals
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+should+say+that+interval+is+really+a+humanistic+institution+in+the+classical
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sense+that+humanism+at+its+best+finds+a+way+to+combine
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=clear+eyed+empirical+research+with+a+set+of+core+values+that+fundamentally+love+and+respect+people
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+basic+idea+of+humanism+is+the+improvable
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=quality+of+life+that+we+can+do+good+things+that+there+are+things+worth+doing+because+they+re+good+things+to+do
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+clear+eyed+empiricism+can+help+us+figure+out+how+to+do+them
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so++contrary+to+popular+belief+there+is+not+a+conflict+of+interest+between+empiricism+and+values
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+interval+research+is+kind+of+the+living+example+of+how+that+can+be+true+so+david+and+i+decided+to+go+find+out+through+the+best+research+we+could+muster
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+it+would+take+to+get+a+little+girl+to+put+her+hands
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hands+on+a+computer+to+achieve+the+level+of+comfort+and+ease+with+the+technology+that+little+boys+have+because+they+play+video+games
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+spent+two+and+a+half+years+conducting+research+we+spent+another+year+and+a+half+in+advance+development
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=then+we+formed+a+spin+off+company
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+research+phase+of+the+of+the+project+at+interval+we+partnered+with+a+company+called+cheskin+research++and+these
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=davis+masten+and+christopher+ireland+changed+my+mind+entirely+about+what+market+research+was+and+what+it+could+be
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+taught+me+how+to+look+and+see
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+did+not+do+the+incredibly+stupid+thing+of+saying+to+a+child+of+all+these+things+we+already+make+you+which+do+you+like+best
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+gives+you+zero+answers+that+are+usable
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+we+did+for+the+first+two+and+a+half+years+was+was+four+things
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+did+an+extensive+review+of+the+literature+in+related+fields+like+cognitive+psychology+spatial+cognition+gender+studies+play+theory+sociology+primatology+thank+you+frans
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=de+waal+wherever+you+are+i+love+you+and+i+d+give+anything+to+meet+you
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=after+we+had+done+that+with+a+pretty+large+team+of+people+and+discovered+what+we+thought+the+salient+issues+were+with+girls+and+boys+and+playing+because+after
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+that+s+really+what+this+is+about+we+moved+to+the+second+phase+of+our+work+where+we+interviewed+adult+experts
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+academia+some+of+the+people+who+d+produced+the+literature+that+we+found+relevant+also+we+did+focus+groups+with+people+who+were+on+the+ground+with+kids+every+day+like+playground+supervisors+we+talked+to+them
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=confirmed+some+hypotheses+and+identified+some+serious+questions+about+gender+difference+and+play
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=then+we+did+what+i+consider+to+be+the+heart+of+the+work
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+hundred+children+boys+and+girls+ages+seven+to+twelve+all+over+the+united+states+except+for+silicon+valley+boston+and+austin+because+we+knew+that+their+little+families
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=would+have+millions+of+computers+in+them+and+they+wouldn+t+be+a+representative+representative+sample
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+pulled+together+some+survey+data+from+another+ten+thousand+children
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=drew+up+a+set+up+of+what+we+thought+were+the+key+findings+of+our+research+and+spent+another+year+transforming+them+into+design+heuristics+for+designing
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=products+and+in+fact+any+kind+of+products+for+little+girls+ages+eight+to+twelve
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+spent+that+time+designing+interactive+prototypes+for+computer+software+and+testing+them+with+little+girls
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+one+thousand+nine+hundred+and+ninety+six+in+november+we+formed+the+company+purple+moon+which+was+a+spinoff+of+interval+research+and+our+chief+investors+were+interval+research+vulcan+northwest
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=institutional+venture+partners+and+allen+and+company++we+launched+a+website+on+september+2nd+that+has+now
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+visit+an+average+of+one+and+a+half+times+a+day++spend+an+average+of+thirty+five+minutes+a+visit+and+look+at+fifty+pages+a+visit+so+we+feel+that+we+ve
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=formed+a+successful+online+community+with+girls++we+launched+two+titles+in+october+rockett+s+new+school+the+first+of+a+series+of
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+a+character+called+rockett+beginning+her+first+day+of+school+in+eighth+grade+at+a+brand+new+place+with+a+blank+slate+which+allows+girls+to+play+with
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+question+of+what+will+i+be+like+when+i+m+older+what+s+it+going+to+be+like+to+be+in+high+school+or+junior+high+school+who+are+my+friends+to+exercise+the+the+love+of+social+complexity+and+the+narrative+intelligence+that+drives+most+of+their+play+behavior
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+which+embeds+in+it+values+about+noticing+that+we+have+lots+of+choices+in+our+lives
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+ways+that+we+conduct+ourselves
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+other+title+that+we+launched+is+called+secret+paths+in+the+forest+which+addresses+the+more+fantasy+oriented+inner+lives+of+girls
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+two+titles+both+showed+up+in+the+top+fifty+entertainment+titles+in+pc+data+entertainment+titles+in+pc+data
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+december++right+up+there+with+john+madden+football+which
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=several+hundreds+of+thousands+of+little+girls+we+ve+made+half+a+billion+impressions+with+marketing+and+pr+for+this+brand+purple+moon
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ninety+six+percent+of+them+roughly+have+been+positive+four+percent+of+them+have+been+other
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+talk+about+the+other+because+the+politics+of+this+enterprise+in+a+way+have+been+the+most+fascinating+part+of+it+for+me
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+are+really+two+kinds+of+negative
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=reviews+that+we+ve+received+one+kind+of+reviewer+is+a+male+gamer+who+thinks+he+knows+what+games+ought+to+be+and+won+t+show+the+product+to+little+girls
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+other+kind+of+reviewer+is+a+certain+flavor+of+feminist+who+thinks+they+know+what+little+girls+ought+to+be
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+it+s+funny+to+me+that+these+interesting++odd+bedfellows+have+one+thing+in+common
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+don+t+listen+to+little+girls
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+haven+t+looked+at+children
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+re+certainly+not+demonstrating+any+love+for+them
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+d+like+to+play+you+some+voices+of+little+girls+from+the+two+and+a+half+years+of+research+that+we+did+actually+some+of+the+voices+are+more+recent
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+these+voices+will+be+accompanied+by+photographs+that+they+took+for+us+of+their+lives+of+the+things+that+they+value+and+care
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+these+are+pictures+the+girls+themselves+never+saw+but+they+gave+to+us
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+the+stuff+those+reviewers+don+t+know+about+and+aren+t+listening+to+and+this+is+the+kind+of+research+i+recommend+to+those+who+want+to+do+humanistic+work+girl+one+yeah+my+character+is+usually+a+tomboy++hers+is+more+into+boys+girl+two+uh
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=yeah+girl+one+we+have+in+the+very+beginning+of+the+whole+game+always+we
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+were+really+adventurous+and+a+real+big+tomboy+you+would+think+that+girls++games+were+kinda+sissy
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+vacation+like+when+i+get+mondays+and+all+those+days
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sometimes+it+gets+annoying+when+your+brothers+and+sisters+or+brother+or+sister+when+they+copy+you+and+you+get+your+idea+first+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=show+you+real+quickly+just+a+minute+of+rockett+s+tricky+decision+which+went+gold+two+days+ago+let+s+hope+it+s+really+stable
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+the+second+day+in+rockett+s+life+the+reason+i+m+showing+you+this+is+i+m+hoping+that+the+scene+that+i+m+going+to+show+you+will+look+familiar+and+sound+familiar+now+that+you+ve+listened+to+some+girls++voices
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=did+you+hear+about+nakilia+s+big+halloween+party+this+weekend+she+asked+me+to+make+sure+you+knew+about+it+nakilia+invited+reuben+too+but
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=rockett+but+what+isn+t+he+coming+miko+i+don+t+think+so++i+mean++i+heard+his+band+is+playing+at+another+party+the+same+night
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=max+s+party+is+going+to+be+so+cool+whitney+he+s+invited+all+the+best+people+bl+i+m
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=going+to+fast+forward+to+the+decision+point+because+i+know+i+don+t+have+a+lot+of+time+after+this+awful+event+occurs+rocket+gets+to+decide+how+she+feels+about+it+rockett+who+d+want
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+show+up+at+that+party+anyway++i+could+get+invited+to+that+party+any+day+if+i+wanted+to+gee
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ll+make+max+s+best+people+list+bl+ok
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+we+re+going+to+emotionally+navigate+if+we+were+playing+the+game+that+s+what+we+d+do+if+at+any+time+during+the+game+we+want+to+learn+more+about+the+characters+we+can+go+into+this+hidden+hallway
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+ll+quickly+just+show+you+the+interface+we+can+for+example+go+find
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+get+some+more+information+about+her+oops+i+turned+the+wrong+way+but+you+get+the
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+wanted+to+show+you+the+ways+innocuous+as+they+seem+in+which+we+re+incorporating+what+we+ve+learned+about+girls+their+desires+to
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=experience+greater+emotional+flexibility+and+to+play+around+with
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+social+complexity+of+their+lives++i+want+to+make+the+point+that+what+we+re+giving+girls+i+think+through+this+effort
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+a+kind+of+validation+a+sense+of+being+seen+and+a+sense+of+the+choices+that+are+available+in+their+lives++we+love+them
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=re+not+trying+to+tell+them+who+they+ought+to+be++but+we+re+really+really+happy+about+who+they+are+it+turns+out+they+re+really+great
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+close+by+showing+you
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+videotape+that+s+a+version+of+a+future+game
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+our+graphic+artists+and+design+people+put+together+that+we+feel+would+please+that+four+percent+of+reviewers
found 0 videos: []
error: no video is found.
sleep 3 seconds to avoid blocking
------<290>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BreneBrown_2010X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+couple+years+ago++an+event+planner+called+me+because+i+was+going+to+do+a+speaking+event++and+she+called+and+she+said+i+m+really+struggling+with+how+to+write+about+you+on+the+little+flyer
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+a+researcher+i+think+but+i+m+afraid+if+i+call+you+a+researcher+no+one+will+come+because+they+ll+think+you+re+boring+and+irrelevant
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=okay+and+she+said+but+the+thing+i+liked+about+your+talk+is+you+re+a+storyteller+so+i+think+what+i+ll+do+is+just+call+you+a+storyteller
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+of+course+the+academic+insecure+part+of+me+was+like
found 1 videos: [['/talks/brene_brown_the_power_of_vulnerability', '2010']]
selected: /talks/brene_brown_the_power_of_vulnerability
sleep 3 seconds to avoid blocking
------<291>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BreneBrown_2012.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+little+bit+about+my+tedxhouston+talk+i+woke+up+the+morning+after+i+gave+that+talk
found 1 videos: [['/talks/brene_brown_listening_to_shame', '2012']]
selected: /talks/brene_brown_listening_to_shame
sleep 3 seconds to avoid blocking
------<292>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BrewsterKahle_2007P.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+really+need+to+put+the+best+we+have+to+offer+within+reach+of+our+children++if+we+don+t+do+that+we+re+going+to+get
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+generation+we+deserve++they+re+going+to+learn+from+whatever+it+is+they+have+around+them+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+bunch+of+our+activities+are+in+fact+in+trying+to+get+the+best+we+have+to+offer+within+reach+of+those+around+us+or+as+broadly+as+we+can+i+m+going+to+start+and+end+this+talk+with+a+couple+things+that+are+carved+in+stone
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+is+what+s+on+the+boston+public+library
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=carved+above+their+door+is+free+to+all+it+s+kind+of+an+inspiring+statement+and+i+ll+go+back+at
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+end+of+this+i+m+a+librarian
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+what+i+m+trying+to+do+is+bring+all+of+the+works+of+knowledge
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+as+many+people+as+want+to+read+it+and+the+idea+of+using+technology+is+perfect+for+us+i+think+we+have+the+opportunity+to+one+up+the+greeks+it
found 1 videos: [['/talks/brewster_kahle_a_free_digital_library', '2008']]
selected: /talks/brewster_kahle_a_free_digital_library
sleep 1 seconds to avoid blocking
------<293>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BrianCox_2008.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+the+large+hadron+collider+it
found 6 videos: [['/talks/brian_cox_cern_s_supercollider', '2008'], ['/talks/charles_leadbeater_education_innovation_in_the_slums', '2010'], ['/talks/marcus_du_sautoy_symmetry_reality_s_riddle', '2009'], ['/talks/garrett_lisi_an_8_dimensional_model_of_the_universe', '2008'], ['/talks/patricia_burchat_shedding_light_on_dark_matter', '2008'], ['/talks/brian_greene_making_sense_of_string_theory', '2008']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+twenty+seven+kilometers+in+circumference+it+s+the+biggest+scientific+experiment+ever+attempted+over+ten+thousand+physicists+and+engineers+from
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=countries+around+the+world+have+come+together
found 4 videos: [['/talks/nic_marks_the_happy_planet_index', '2010'], ['/talks/sheryl_wudunn_our_century_s_greatest_injustice', '2010'], ['/talks/billy_graham_on_technology_and_faith', '2008'], ['/talks/jane_goodall_what_separates_us_from_chimpanzees', '2007']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=over+several+decades+to+build+this+machine+what+we+do+is+we+accelerate+protons+so++hydrogen+nuclei+around+ninety+nine+point+nine+nine+nine+nine+nine+nine+percent+the+speed+of+light+right+at
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+speed+they+go+around+that+twenty+seven+kilometers
found 2 videos: [['/talks/peter_diamandis_our_next_giant_leap', '2008'], ['/talks/al_gore_new_thinking_on_the_climate_crisis', '2008']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=eleven+thousand+times+a+second++and+we+collide+them+with+another+beam+of+protons+going+in+the+opposite
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+collide+them+inside+giant+detectors+they+re+essentially+digital+cameras++and+this+is+the+one+that+i+work+on+atlas++you+get+some+sense+of+the+size+you+can+just+see+these
found 1 videos: [['/talks/brian_cox_cern_s_supercollider', '2008']]
selected: /talks/brian_cox_cern_s_supercollider
sleep 5 seconds to avoid blocking
------<294>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BrianCox_2010S.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+live+in+difficult+and+challenging+economic+times+of+course++and+one+of+the+first
found 3 videos: [['/talks/brian_cox_why_we_need_the_explorers', '2010'], ['/talks/gordon_brown_wiring_a_web_for_global_good', '2009'], ['/talks/hector_ruiz_the_thinking_behind_50x15', '2008']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=victims+of+difficult+economic+times+i+think+is+public+spending+of+any+kind+but+certainly+in+the+firing+line+at+the+moment+is+public+spending+for+science+and+particularly
found 1 videos: [['/talks/brian_cox_why_we_need_the_explorers', '2010']]
selected: /talks/brian_cox_why_we_need_the_explorers
sleep 5 seconds to avoid blocking
------<295>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BrianDettmer_2014Y.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+an+artist+and+i+cut+books+this+is+one+of+my+first+book+works+it+s+called+alternate+route+to+knowledge++i+wanted+to+create+a+stack+of+books+so+that+somebody+could+come+into+the+gallery+and+think+they+re+just+looking+at+a+regular+stack+of+books+but+then+as+they
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=see+this+rough+hole+carved+into+it+and+wonder+what+was+happening+wonder+why+and+think+about+the+material+of+the+book
found 1 videos: [['/talks/brian_dettmer_old_books_reborn_as_art', '2015']]
selected: /talks/brian_dettmer_old_books_reborn_as_art
sleep 5 seconds to avoid blocking
------<296>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BrianGoldman_2011X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+think+it+starts+with+one+physician+and+that+s+me+and+maybe+i+ve+been+around+long+enough+that+i+can+afford+to+give+away+some+of+my+false+prestige+to+be+able+to+do+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=before+i+actually+begin+the+meat+of+my+talk+let+s+begin+with+a+bit+of+baseball+hey+why+not+we+re+near+the+end+we+re+getting+close+to+to+the+world+series+we+all+love+baseball
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=baseball+is+filled+with+some+amazing+statistics+and
found 1 videos: [['/talks/brian_goldman_doctors_make_mistakes_can_we_talk_about_that', '2012']]
selected: /talks/brian_goldman_doctors_make_mistakes_can_we_talk_about_that
sleep 2 seconds to avoid blocking
------<297>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BrianGreene_2005.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+virtually+unknown+german+mathematician+named+theodor+kaluza+suggested+a+very+bold
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=bold+and+in+some+ways+a+very+bizarre+idea+he+proposed+that+our+universe+might+actually+have+more+than+the+three+dimensions
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+we+are+all+aware+of+that+is+in+addition+to+left+right+back+forth+and+up+down+kaluza+proposed+that+there+might+be+additional+dimensions+of+space+that+for+some+reason
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+don+t+yet+see+now+when+someone+makes+a+bold+and+bizarre+idea+sometimes+that+s+all+it+is+bold+and+bizarre+but+it+has+nothing+to+do+with
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+world+around+us++this+particular+idea+however+although+we+don+t+yet+know+whether+it+s+right+or+wrong+and+at+the+end+i+ll+discuss+experiments+which+in+the+next+few+years+may+tell+us+whether
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+right+or+wrong+this+idea+has+had+a+major+impact+on+physics+in+the+last+century+and+continues+to+inform+a+lot+of+cutting+edge+research+so+i+d+like+to+tell+you+something+about+the+story+of+these+extra+dimensions
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+back+story+go+to+one+thousand+nine+hundred+and+seven+this+is+a+year+when+einstein+is+basking+in+the+glow+of+having+discovered+the+special+theory+of+relativity+and+decides
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+take+on+a+new+project+to+try+to+understand+fully
found 4 videos: [['/talks/robert_full_the_sticky_wonder_of_gecko_feet', '2007'], ['/talks/patrick_awuah_how_to_educate_leaders_liberal_arts', '2007'], ['/talks/bill_stone_inside_the_world_s_deepest_caves', '2007'], ['/talks/martin_rees_is_this_our_final_century', '2007']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+are+many+people+around+who+thought+that+that
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=project+had+already+been+resolved+newton+had+given+the+world+a+theory+of+gravity+in+the+late++1600s+that+works+well++describes+the+motion+of+planets+the+motion+of+the+moon+and+so+forth
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+motion+of+apocryphal+of+apples+falling+from+trees+hitting+people+on+the+head+all+of+that+could+be+described+using+newton+s+work+but+einstein+realized+that+newton+had+left+something+out+of+the+story+because+even+newton+had+written+that+although
error: request timeout
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+calculate+the+effect+of+gravity+he+d+been+unable+to+figure+out+how+it+really+works+how+is+it+that+the+sun+ninety+three+million+miles+away+[+that+]+somehow+it+affects+the+motion
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+the+earth+how+does+the+sun+reach+out+across+empty+inert+space+and+exert+influence++and+that+is+a+task+to+which+einstein+set+himself+to+figure+out+how+gravity+works+and+let+me+show+you+what
error: request timeout
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+einstein+found+that+the+medium+that+transmits+gravity+is+space+itself+the+idea+goes+like+this++imagine+space+is+a+substrate+of+all+there+is+einstein
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=said+space+is+nice+and+flat+if+there+s+no+matter+present++but+if+there+is+matter+in+the+environment+such+as+the+sun+it+causes+the+fabric+of+space+to+warp+to+curve++and+that+communicates+the+force+of+gravity
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=even+the+earth+warps+space+around+it+now+look+at+the+moon+the+moon+is+kept+in+orbit+according+to+these+ideas+because+it+rolls+along+a+valley+in+the+curved+environment
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+the+sun+and+the+moon+and+the+earth+can+all+create+by+virtue+of+their+presence+we+go+to
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=view+of+this+the+earth+itself+is
found 4 videos: [['/talks/carolyn_porco_this_is_saturn', '2007'], ['/talks/robert_wright_progress_is_not_a_zero_sum_game', '2007'], ['/talks/david_deutsch_chemical_scum_that_dream_of_distant_quasars', '2006'], ['/talks/larry_brilliant_the_case_for_optimism', '2007']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=kept+in+orbit+because+it+rolls+along+a+valley+in+the+environment+that+s+curved+because+of+the+sun+s+presence++that+is+this+new+idea+about+how+gravity+actually+works+now
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+idea+was+tested+in+one+thousand+nine+hundred+and+nineteen+nineteen+through+astronomical+observations+it+really+works+it+describes+the+data+and+this+gained+einstein+prominence+around+the+world++and+that+is+what
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+einstein+was+in+search+of+what+we+call+a+unified+theory+that+s+one+theory+that+might+be+able+to+describe+all+of+nature+s+forces+from+one+set+of+ideas
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+set+of+principles+one+master+equation+if+you+will+so+kaluza+said+to+himself+einstein+has+been+able+to+describe+gravity+in+terms+of+warps+and+curves+in+space
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+fact+space+and+time+to+be+more+precise+maybe+i+can+play+the+same+game+with
found 2 videos: [['/talks/ze_frank_nerdcore_comedy', '2006'], ['/talks/maira_kalman_the_illustrated_woman', '2007']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+other+known+force+which+was+at+that+time+known+as+the+electromagnetic+force+we+know+of+others+today+but+at+that+time+that+was+the+only+other+one+people+were+thinking+about+you+know
found 1 videos: [['/talks/richard_dawkins_why_the_universe_seems_so_strange', '2006']]
selected: /talks/richard_dawkins_why_the_universe_seems_so_strange
sleep 3 seconds to avoid blocking
------<298>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BrianGreene_2012.stm
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+nobel+prize+in+physics+was+awarded+to+two+teams+of+astronomers+for+a+discovery+that+has+been+hailed+as+one+of+the+most+important+astronomical+observations+ever+and+today+after+briefly+describing+what+they+found++i+m+going+to+tell+you
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=controversial+framework+for+explaining+their+discovery+namely+the+possibility+that+way+beyond+the+earth
found 1 videos: [['/talks/brian_greene_is_our_universe_the_only_universe', '2012']]
selected: /talks/brian_greene_is_our_universe_the_only_universe
sleep 3 seconds to avoid blocking
------<299>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BrianLittle_2016.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+an+intriguing+group+of+individuals+you+are+to+a+psychologist
found 1 videos: [['/talks/brian_little_who_are_you_really_the_puzzle_of_personality', '2016']]
selected: /talks/brian_little_who_are_you_really_the_puzzle_of_personality
sleep 3 seconds to avoid blocking
------<300>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BrianSkerry_2010Z.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+to+share+with+you+this+morning+some+stories+about+the+ocean+through+my+work+as+a
found 8 videos: [['/talks/brian_skerry_the_ocean_s_glory_and_horror', '2010'], ['/talks/steven_johnson_where_good_ideas_come_from', '2010'], ['/talks/jim_toomey_learning_from_sherman_the_shark', '2010'], ['/talks/jeremy_jackson_how_we_wrecked_the_ocean', '2010'], ['/talks/jonathan_harris_the_web_as_art', '2008'], ['/talks/rob_hopkins_transition_to_a_world_without_oil', '2009'], ['/talks/eve_ensler_embrace_your_inner_girl', '2010'], ['/talks/david_holt_the_joyful_tradition_of_mountain_music', '2008']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=still+photographer+for+national+geographic+magazine
found 1 videos: [['/talks/brian_skerry_the_ocean_s_glory_and_horror', '2010']]
selected: /talks/brian_skerry_the_ocean_s_glory_and_horror
sleep 1 seconds to avoid blocking
------<301>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BrittaRiley_2011X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+many+of+you++am+one+of+the+two+billion+people+on+earth
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+live+in+cities++and+there+are+days+i+don+t+know+about+the+rest+of+you+but+there+are+days
error: request timeout
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+much+i+rely+on+other+people+for+pretty+much+everything+in+my+life++and+some+days+that+can+even+be+a+little+scary
found 1 videos: [['/talks/britta_riley_a_garden_in_my_apartment', '2011']]
selected: /talks/britta_riley_a_garden_in_my_apartment
sleep 4 seconds to avoid blocking
------<302>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BrittneyCooper_2016W.stm
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=has+a+race+a+race+in+the+contemporary+way+that+we+understand+race+in+the+united+states++typically++we+talk+about+race+in+terms
found 1 videos: [['/talks/brittney_cooper_the_racial_politics_of_time', '2017']]
selected: /talks/brittney_cooper_the_racial_politics_of_time
sleep 3 seconds to avoid blocking
------<303>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BruceAylward_2011.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+share+with+you+over+the+next+eighteen+minutes
found 2 videos: [['/talks/philippe_petit_the_journey_across_the_high_wire', '2012'], ['/talks/nancy_duarte_the_secret_structure_of_great_talks', '2012']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+pretty+incredible+idea+actually+it+s+a+really+big+idea+but+to+get+us+started+i+want+to+ask+if+everyone+could+just+close+your+eyes+for+two
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=two+seconds+and+try+and+think+of+a+technology+or+a+bit+of+science+that+you+think+has+changed+the+world
found 15 videos: [['/talks/bruce_aylward_how_we_ll_stop_polio_for_good', '2011'], ['/talks/simon_lewis_don_t_take_consciousness_for_granted', '2011'], ['/talks/david_agus_a_new_strategy_in_the_war_on_cancer', '2010'], ['/talks/gregory_stock_to_upgrade_is_human', '2009'], ['/talks/stephen_wolfram_computing_a_theory_of_all_knowledge', '2010'], ['/talks/sendhil_mullainathan_solving_social_problems_with_a_nudge', '2010'], ['/talks/geoffrey_canada_our_failing_schools_enough_is_enough', '2013'], ['/talks/stuart_firestein_the_pursuit_of_ignorance', '2013'], ['/talks/beau_lotto_amy_o_toole_science_is_for_everyone_kids_included', '2012'], ['/talks/paul_sereno_digging_up_dinosaurs', '2009'], ['/talks/kevin_kelly_technology_s_epic_story', '2010'], ['/talks/paul_root_wolpe_it_s_time_to_question_bio_engineering', '2011'], ['/talks/bill_gates_innovating_to_zero', '2010'], ['/talks/geoff_mulgan_post_crash_investing_in_a_better_world', '2009'], ['/talks/jamais_cascio_tools_for_a_better_world', '2009']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+i+bet+in+this+audience+you+re+thinking+of+some+really+incredible+technology+some+stuff+that+i+i+haven+t+even+heard+of+i+m+absolutely+sure++but
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+also+sure+pretty+sure+that+absolutely+nobody+is+thinking+of+this
found 1 videos: [['/talks/james_randi_homeopathy_quackery_and_fraud', '2010']]
selected: /talks/james_randi_homeopathy_quackery_and_fraud
sleep 5 seconds to avoid blocking
------<304>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BruceAylward_2014X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+give+this+talk+a+couple+of+months+ago++we+discussed+a+number+of+titles+with+the+organizers+and+a+lot+of+different+items+were+kicked+around+and+were+discussed
found 1 videos: [['/talks/bruce_aylward_humanity_vs_ebola_how_we_could_win_a_terrifying_war', '2015']]
selected: /talks/bruce_aylward_humanity_vs_ebola_how_we_could_win_a_terrifying_war
sleep 3 seconds to avoid blocking
------<305>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BruceBuenodeMesquita_2009.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+i+m+going+to+try+to+do+is+explain+to+you+quickly+how+to+predict+and+illustrate+it+with+some+predictions+about+what+iran+is+going+to+do+in+the+next+couple+of+years
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+reason+that+we+need+to+use+science+is+because+then+we+can+reproduce+what+we+re+doing+it+s+not+just+wisdom+or+guesswork
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+if+we+can+predict++then+we+can+engineer+the+future+so+if
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+are+concerned+to+influence+energy+policy
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+you+are+concerned+to+influence+national+security+policy++or+health+policy+or+education
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=science+and+a+particular+branch+of+science+is+a+way+to+do+it+not+the+way+we+ve+been+doing+it+which+is++seat+of+the+pants+wisdom
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+before+i+get+into+how+to+do+it+let+me
found 3 videos: [['/talks/shea_hembrey_how_i_became_100_artists', '2011'], ['/talks/james_cameron_before_avatar_a_curious_boy', '2010'], ['/talks/hasan_elahi_fbi_here_i_am', '2011']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=give+you+a+little+truth+in+advertising+because+i+m+not+engaged+in+the+business+of+magic+there+are+lots+of+thing+that+the+approach+i+take+can+predict
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+there+are+some+that+it+can+t+it+can+predict
found 4 videos: [['/talks/peter_ward_a_theory_of_earth_s_mass_extinctions', '2009'], ['/talks/martin_rees_is_this_our_final_century', '2007'], ['/talks/svante_paabo_dna_clues_to_our_inner_neanderthal', '2011'], ['/talks/craig_venter_sampling_the_ocean_s_dna', '2007']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=complex+negotiations+or+situations+involving+coercion+that+is+in+essence+everything+that+has+to+do+with+politics+much+of+what+has+to+do+with+business
found 1 videos: [['/talks/bruce_bueno_de_mesquita_a_prediction_for_the_future_of_iran', '2009']]
selected: /talks/bruce_bueno_de_mesquita_a_prediction_for_the_future_of_iran
sleep 3 seconds to avoid blocking
------<306>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BruceFeiler_2010P.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=actually+began+when+i+was+four+years+old+and+my+family+moved+to+a+new+neighborhood+in+our+hometown+of+savannah+georgia
found 1 videos: [['/talks/bruce_feiler_the_council_of_dads', '2011']]
selected: /talks/bruce_feiler_the_council_of_dads
sleep 1 seconds to avoid blocking
------<307>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BruceFeiler_2013S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+here+s+the+good+news+about+families
found 3 videos: [['/talks/bruce_feiler_the_council_of_dads', '2011'], ['/talks/nancy_frates_meet_the_mom_who_started_the_ice_bucket_challenge', '2014'], ['/talks/karima_bennoune_when_people_of_muslim_heritage_challenge_fundamentalism', '2014']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+last+fifty+years+have+seen+a+revolution+in+what+it+means+to+be+a+family
found 1 videos: [['/talks/charmian_gooch_my_wish_to_launch_a_new_era_of_openness_in_business', '2014']]
selected: /talks/charmian_gooch_my_wish_to_launch_a_new_era_of_openness_in_business
sleep 4 seconds to avoid blocking
------<308>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BruceMcCall_2008P.stm
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+born+in+a+scots+presbyterian+ghetto+in+canada++and+dropped+out+of+high+school+i+don+t+own+a+cell+phone
error: request timeout
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=using+gouache+which+hasn+t+changed+in+six+hundred+years
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+about+three+years+ago+i+had+an+art+show+in+new+york+and+i+titled+it+serious+nonsense
found 1 videos: [['/talks/bruce_mccall_what_is_retro_futurism', '2009']]
selected: /talks/bruce_mccall_what_is_retro_futurism
sleep 2 seconds to avoid blocking
------<309>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BruceSchneier_2010X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=security+is+two+different+things++it+s+a+feeling+and+it+s+a+reality+and+they+re+different+you+could+feel+secure
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=even+if+you+re+not++and+you+can+be+secure+even+if+you+don+t+feel+it
found 1 videos: [['/talks/frank_gehry_my_days_as_a_young_rebel', '2008']]
selected: /talks/frank_gehry_my_days_as_a_young_rebel
sleep 5 seconds to avoid blocking
------<310>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BrunoTorturra_2014G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=has+anyone+among+you+ever+been+exposed+to+tear+gas++tear+gas+anyone
found 1 videos: [['/talks/bruno_torturra_got_a_smartphone_start_broadcasting', '2014']]
selected: /talks/bruno_torturra_got_a_smartphone_start_broadcasting
sleep 2 seconds to avoid blocking
------<311>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BryanStevenson_2012.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=really+extraordinary+honor+for+me+i+spend+most+of+my+time+in+jails+in+prisons+on+death+row
found 1 videos: [['/talks/bryan_stevenson_we_need_to_talk_about_an_injustice', '2012']]
selected: /talks/bryan_stevenson_we_need_to_talk_about_an_injustice
sleep 3 seconds to avoid blocking
------<312>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BunkerRoy_2011G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=love+story+with+the+poor++living+on+less+than+one+dollar+a+day
found 13 videos: [['/talks/jessica_jackley_poverty_money_and_love', '2010'], ['/talks/paul_snelgrove_a_census_of_the_ocean', '2012'], ['/talks/jacqueline_novogratz_a_third_way_to_think_about_aid', '2009'], ['/talks/bunker_roy_learning_from_a_barefoot_movement', '2011'], ['/talks/majora_carter_3_stories_of_local_eco_entrepreneurship', '2010'], ['/talks/paul_bloom_the_origins_of_pleasure', '2011'], ['/talks/jacqueline_novogratz_inspiring_a_life_of_immersion', '2011'], ['/talks/josette_sheeran_ending_hunger_now', '2011'], ['/talks/daniel_goldstein_the_battle_between_your_present_and_future_self', '2011'], ['/talks/mike_rowe_learning_from_dirty_jobs', '2009'], ['/talks/stewart_brand_4_environmental_heresies', '2009'], ['/talks/bryan_stevenson_we_need_to_talk_about_an_injustice', '2012'], ['/talks/niall_ferguson_the_6_killer_apps_of_prosperity', '2011']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+went+to+a+very+elitist++snobbish+expensive+education
found 1 videos: [['/talks/bunker_roy_learning_from_a_barefoot_movement', '2011']]
selected: /talks/bunker_roy_learning_from_a_barefoot_movement
sleep 4 seconds to avoid blocking
------<313>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/BurtRutan_2006.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+start+off+by+saying+houston+we+have+a+problem
found 3 videos: [['/talks/burt_rutan_the_real_future_of_space_exploration', '2006'], ['/talks/anna_deavere_smith_four_american_characters', '2007'], ['/talks/william_mcdonough_cradle_to_cradle_design', '2007']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+re+entering+a+second+generation+of+no+progress+in+terms+of
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=human+flight+in+space+in+fact+we+ve+regressed
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+stand+a+very+big+chance+of+losing+our
found 6 videos: [['/talks/doris_kearns_goodwin_lessons_from_past_presidents', '2008'], ['/talks/freeman_dyson_let_s_look_for_life_in_the_outer_solar_system', '2008'], ['/talks/burt_rutan_the_real_future_of_space_exploration', '2006'], ['/talks/steven_levitt_the_freakonomics_of_crack_dealing', '2006'], ['/talks/ben_saunders_why_did_i_ski_to_the_north_pole', '2006'], ['/talks/dan_gilbert_the_surprising_science_of_happiness', '2006']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ability+to+inspire+our+youth+to+go+out+and+continue+this+very+important+thing+that+we+as+a+species+have+always+done+and+that+is+instinctively+we+ve+gone+out+and+climbed+over
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=difficult+places+went+to+more+hostile+places++and+found+out+later
found 2 videos: [['/talks/burt_rutan_the_real_future_of_space_exploration', '2006'], ['/talks/philip_zimbardo_the_psychology_of_evil', '2008']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=maybe+to+our+surprise+that+that+s+the+reason+we+survived++and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+feel+very+strongly+that+it+s
found 2 videos: [['/talks/dan_gilbert_the_surprising_science_of_happiness', '2006'], ['/talks/bjorn_lomborg_global_priorities_bigger_than_climate_change', '2007']]
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+us+to+have+generations+of+kids+that+think+that+it+s+ok+to+look+forward+to+a+better+version+of+a+cell+phone+with+a+video+in+it+they+need+to+look+forward+to
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=exploration+they+need+to+look+forward+to+colonization+they+need+to+look+forward+to+breakthroughs
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+particularly+troubled+that+what+nasa+s+doing+right+now+with+this+new+bush+doctrine+to
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+this+next+decade+and+a+half
found 3 videos: [['/talks/eleni_gabre_madhin_a_commodities_exchange_for_ethiopia', '2007'], ['/talks/dean_kamen_to_invent_is_to_give', '2007'], ['/talks/peter_diamandis_our_next_giant_leap', '2008']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=oh+shoot+i+screwed+up+we+have+real+specific+instructions+here+not+to+talk+about+politics+what+we+re+looking+forward+to
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+we+re+looking+forward+to
found 9 videos: [['/talks/chris_anderson_ted_s_nonprofit_transition', '2008'], ['/talks/michael_shermer_why_people_believe_weird_things', '2006'], ['/talks/alex_steffen_the_route_to_a_sustainable_future', '2007'], ['/talks/ngozi_okonjo_iweala_aid_versus_trade', '2007'], ['/talks/jacqueline_novogratz_patient_capitalism', '2007'], ['/talks/edward_burtynsky_my_wish_manufactured_landscapes_and_green_education', '2006'], ['/talks/norman_foster_my_green_agenda_for_architecture', '2008'], ['/talks/brian_cox_cern_s_supercollider', '2008'], ['/talks/peter_hirshberg_the_web_is_more_than_better_tv', '2008']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+not+only+the+inspiration+of+our+children++but+the+current+plan+right+now+is
found 2 videos: [['/talks/burt_rutan_the_real_future_of_space_exploration', '2006'], ['/talks/ross_lovegrove_organic_design_inspired_by_nature', '2006']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+not+really+even+allowing+the+most+creative+people+in+this+country+the+boeing+s+and+lockheed+s+space+engineers+to+go+out+and+take+risks+and+try+new+stuff
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+re+going+to+go+back+to+the+moon
found 4 videos: [['/talks/penelope_boston_there_might_just_be_life_on_mars', '2008'], ['/talks/norman_foster_my_green_agenda_for_architecture', '2008'], ['/talks/john_q_walker_great_piano_performances_recreated', '2008'], ['/talks/irwin_redlener_how_to_survive_a_nuclear_attack', '2008']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=do+it+very+specifically+planned+to+not+learn+anything+new
found 2 videos: [['/talks/burt_rutan_the_real_future_of_space_exploration', '2006'], ['/talks/jonathan_harris_the_web_as_art', '2008']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+really+troubled+by+that+but+anyway+that+s+the+basis+of+the+thing+that+i+want+to+share+with+you+today+though+is
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+right+back+to+where+we+inspire+people+who+will+be+our+great+leaders+later+that+s+the
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+they+look+at+is+the+most+important+thing+let+s+take+a+snapshot+at+aviation+and+there+was+a+wonderful+little
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=short+four+year+time+period+when+marvelous+things+happened+it+started+in+one+thousand+nine+hundred+and+eight+when+the+wright+brothers+flew+in+paris+and+everybody+said
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+only+a+few+people+that+have+flown+in+early+one+thousand+nine+hundred+and+eight
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+four+years+thirty+nine+countries+had+hundreds+of+airplanes+thousand+of+pilots+airplanes+were+invented+by+natural+selection+now+you+can+say+that+intelligent+design+designs
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=our+airplanes+of+today++but+there+was+no+intelligent+design+really+designing+those+early+airplanes++there+were+probably+at+least+thirty+thousand+different+things+tried
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+crash+and+kill+the+pilot+don+t+try+that+again
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+ones+that+flew+and+landed+ok+because+there+were+no+trained+pilots+who+had+good+flying+qualities+by+definition
found 1 videos: [['/talks/burt_rutan_the_real_future_of_space_exploration', '2006']]
selected: /talks/burt_rutan_the_real_future_of_space_exploration
sleep 4 seconds to avoid blocking
------<314>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CaitlinDoughty_2016P.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+would+like+for+my+body+to+be+laid+out+to+be+eaten+by+animals
found 1 videos: [['/talks/caitlin_doughty_a_burial_practice_that_nourishes_the_planet', '2017']]
selected: /talks/caitlin_doughty_a_burial_practice_that_nourishes_the_planet
sleep 4 seconds to avoid blocking
------<315>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CaitriaONeill_2012X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+was+me+in+front+of+our+house+in+monson+massachusetts+last
found 1 videos: [['/talks/caitria_morgan_o_neill_how_to_step_up_in_the_face_of_disaster', '2012']]
selected: /talks/caitria_morgan_o_neill_how_to_step_up_in_the_face_of_disaster
sleep 4 seconds to avoid blocking
------<316>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CalebBarlow_2016S.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+everywhere+we+hear+about+it+every+single+day++this
found 2 videos: [['/talks/karima_bennoune_when_people_of_muslim_heritage_challenge_fundamentalism', '2014'], ['/talks/paul_greenberg_the_four_fish_we_re_overeating_and_what_to_eat_instead', '2015']]
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+last+year+one+hundred+million+of+us++mostly+americans++lost+our+health+insurance+data
found 1 videos: [['/talks/madhumita_murgia_how_data_brokers_sell_your_identity', '2018']]
selected: /talks/madhumita_murgia_how_data_brokers_sell_your_identity
sleep 1 seconds to avoid blocking
------<317>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CalebChung_2007P.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+kind+of+am+a+toy+designer++and+before+i+was+a+toy+designer++oh++i+was
found 16 videos: [['/talks/caleb_chung_playtime_with_pleo_your_robotic_dinosaur_friend', '2008'], ['/talks/tim_brown_tales_of_creativity_and_play', '2008'], ['/talks/eames_demetrios_the_design_genius_of_charles_ray_eames', '2009'], ['/talks/paola_antonelli_treat_design_as_art', '2008'], ['/talks/paula_scher_great_design_is_serious_not_solemn', '2009'], ['/talks/isaac_mizrahi_fashion_and_creativity', '2008'], ['/talks/ross_lovegrove_organic_design_inspired_by_nature', '2006'], ['/talks/aimee_mullins_changing_my_legs_and_my_mindset', '2009'], ['/talks/david_pogue_simplicity_sells', '2006'], ['/talks/graham_hawkes_a_flight_through_the_ocean', '2008'], ['/talks/mena_trott_meet_the_founder_of_the_blog_revolution', '2006'], ['/talks/seyi_oyesola_a_hospital_tour_in_nigeria', '2008'], ['/talks/david_pogue_cool_tricks_your_phone_can_do', '2009'], ['/talks/stuart_brown_play_is_more_than_just_fun', '2009'], ['/talks/jeff_hawkins_how_brain_science_will_change_computing', '2007'], ['/talks/steven_strogatz_the_science_of_sync', '2008']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+mime+a+street+mime+actually++and+then+i+was+an+entertainer
found 1 videos: [['/talks/caleb_chung_playtime_with_pleo_your_robotic_dinosaur_friend', '2008']]
selected: /talks/caleb_chung_playtime_with_pleo_your_robotic_dinosaur_friend
sleep 1 seconds to avoid blocking
------<318>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CalebHarper_2015G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+news+every+day+but+what+is+it+some+places+in+the+world+it+s+too+little+food++maybe+too+much+other+places+gmo+is+saving+the+world
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=too+much+agricultural+runoff+creating+bad+oceans
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=toxic+oceans+attenuation+of+nutrition++they+go+on+and+on
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+find+the+current+climate+of+this+discussion+incredibly+disempowering++so+how+do+we+bring+that
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+something+that+we+understand++how+is+this+apple+food+crisis+you+ve+all+eaten+an+apple+in+the+last+week
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+old+do+you+think+it+was+from+when+it+was+picked++two+weeks+two+months
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=eleven+months+the+average+age+of+an+apple+in+a+grocery+store+in+the+united+states+and+i+don+t+expect+it+to+be+much+different+in+europe+or+anywhere+else+in+the+world
error: request timeout
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+put+them+in+cold+storage+we+gas+the+cold+storage+there+s+actually+documented+proof+of+workers+trying+to+go+into+these+environments+to+retrieve+an+apple
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+atmosphere+that+they+slow+down+the+process+of+the+apple+with+is+also+toxic+to+humans
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+is+it+that+none+of+you+knew+this+why+didn+t+i+know+this
found 15 videos: [['/talks/josh_luber_why_sneakers_are_a_great_investment', '2015'], ['/talks/christopher_bell_bring_on_the_female_superheroes', '2016'], ['/talks/bob_mankoff_anatomy_of_a_new_yorker_cartoon', '2013'], ['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013'], ['/talks/matthew_carter_my_life_in_typefaces', '2014'], ['/talks/johann_hari_everything_you_think_you_know_about_addiction_is_wrong', '2015'], ['/talks/keren_elazari_hackers_the_internet_s_immune_system', '2014'], ['/talks/macinley_butson_how_ancient_technology_inspired_my_award_winning_inventions', '2017'], ['/talks/elizabeth_wayne_we_can_hack_our_immune_cells_to_fight_cancer', '2017'], ['/talks/leila_hoteit_3_lessons_on_success_from_an_arab_businesswoman', '2016'], ['/talks/ashton_applewhite_let_s_end_ageism', '2017'], ['/talks/heather_barnett_what_humans_can_learn_from_semi_intelligent_slime', '2014'], ['/talks/kenneth_cukier_big_data_is_better_data', '2014'], ['/talks/roxane_gay_confessions_of_a_bad_feminist', '2015'], ['/talks/skylar_tibbits_the_emergence_of_4d_printing', '2013']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ninety+percent+of+the+quality+of+that+apple+all+of+the+antioxidants+are+gone+by+the+time+we+get+it
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+basically+a+little+ball+of+sugar
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+did+we+get+so+information+poor
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+how+can+we+do+better++i+think+what+s+missing
error: request timeout
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+know+platforms+i+know+computers+they+put+me+on+the+internet+when+i+was+young+i+did+very+weird+things
error: request timeout
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+met+people+and+i+could+express+myself+how+do+you+express+yourself+in+food++if+we+had+a+platform+we+might+feel+empowered
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+question+what+if+for+me+i+questioned
found 12 videos: [['/talks/vincent_cochetel_i_was_held_hostage_for_317_days_here_s_what_i_thought_about', '2015'], ['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013'], ['/talks/dalia_mogahed_what_it_s_like_to_be_muslim_in_america', '2016'], ['/talks/daniel_h_cohen_for_argument_s_sake', '2013'], ['/talks/alec_soth_and_stacey_baker_this_is_what_enduring_love_looks_like', '2015'], ['/talks/monica_byrne_a_sci_fi_vision_of_love_from_a_318_year_old_hologram', '2016'], ['/talks/michael_metcalfe_we_need_money_for_aid_so_let_s_print_it', '2014'], ['/talks/salil_dudani_how_jails_extort_the_poor', '2017'], ['/talks/susan_pinker_the_secret_to_living_longer_may_be_your_social_life', '2017'], ['/talks/peter_attia_is_the_obesity_crisis_hiding_a_bigger_problem', '2013'], ['/talks/charmian_gooch_my_wish_to_launch_a_new_era_of_openness_in_business', '2014'], ['/talks/elizabeth_loftus_how_reliable_is_your_memory', '2013']]
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+this+is+a+map+of+climate+in+the+world+the+most+productive+areas+in+green+the+least+productive+in+red
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+shift+and+they+change+and+californian+farmers+now+become+mexican+farmers++china+picks+up+land+in+brazil+to+grow+better+food+and+we+re+a+slave+to+climate
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+if+each+country+had+its+own+productive+climate+what+would+that+change+about+how+we+live++what+would+that+change+about+quality+of+life+and+nutrition
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=last+generation+s+problem+was+we+need+more+food+and+we+need+it+cheap
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=welcome+to+your+global+farm++we+built+a+huge+analog+farm+all+these+traces+these+are+cars+planes+trains+and+automobiles
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+a+miracle+that+we+feed+seven+billion+people+with+just+a+few+of+us+involved+in+the+production+of+food
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=built+a+digital+farm+a+digital+world+farm++what+if
found 9 videos: [['/talks/don_tapscott_how_the_blockchain_is_changing_money_and_business', '2016'], ['/talks/alex_kipman_a_futuristic_vision_of_the_age_of_holograms', '2016'], ['/talks/abha_dawesar_life_in_the_digital_now', '2013'], ['/talks/haley_van_dyck_how_a_start_up_in_the_white_house_is_changing_business_as_usual', '2016'], ['/talks/neha_narula_the_future_of_money', '2016'], ['/talks/maurice_conti_the_incredible_inventions_of_intuitive_ai', '2017'], ['/talks/ole_scheeren_why_great_architecture_should_tell_a_story', '2016'], ['/talks/sebastian_guo_why_we_need_to_pay_attention_to_chinese_millennials', '2017'], ['/talks/nizar_ibrahim_how_we_unearthed_the_spinosaurus', '2015']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+could+take+this+apple+digitize+it+somehow+send+it+through+particles+in+the+air
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+reconstitute+it+on+the+other+side++what+if
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=going+through+some+of+these+quotes+you+know+they+inspire+me+to+do+what+i+do+first+one+[+japanese+farming+has+no+youth++no+water+no+land+and+no+future
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+i+landed+to+the+day+that+i+went+to+minamisanriku+one+stop+south+of+fukushima+after+the+disaster
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+kids+have+headed+to+sendai+and+tokyo++the+land+is+contaminated+they+already+import+seventy+percent+of+their+own+food+but+it+s+not+unique
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+japan++two+percent+of+the+american+population+is+involved+in+farming+what+good+answer+comes+from+two+percent+of+any+population
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=go+around+the+world++fifty+percent+of+the+african+population+is+under+eighteen
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=eighty+percent+don+t+want+to+be+farmers+farming+is+hard+the+life+of+a+small+shareholder+farmer
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+miserable++they+go+into+the+city+in+india
found 1 videos: [['/talks/shah_rukh_khan_thoughts_on_humanity_fame_and_love', '2017']]
selected: /talks/shah_rukh_khan_thoughts_on_humanity_fame_and_love
sleep 2 seconds to avoid blocking
------<319>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CameronHerold_2009X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=be+willing+to+bet+that+i+m+the+dumbest+guy+in+the+room
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+i+couldn+t+get+through+school+i+struggled+with+school
found 2 videos: [['/talks/eve_ensler_what_security_means_to_me', '2008'], ['/talks/frank_gehry_my_days_as_a_young_rebel', '2008']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+what+i+knew+at+a+very+early+age+was+that+i+loved+money+and+i+loved+business+and+i+loved+this+entrepreneurial+thing
found 4 videos: [['/talks/cameron_herold_let_s_raise_kids_to_be_entrepreneurs', '2010'], ['/talks/richard_branson_life_at_30_000_feet', '2007'], ['/talks/jacqueline_novogratz_patient_capitalism', '2007'], ['/talks/peter_hirshberg_the_web_is_more_than_better_tv', '2008']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+was+raised+to+be+an+entrepreneur++and+what+i+ve+been+really+passionate+about+ever+since+and+i+ve+never+spoken+about+this+ever
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=until+now+so+this+is+the+first+time+anyone+s+ever+heard+it+except+my+wife+three+days+ago+because+she+said+what+are+you+talking+about+and+i+told+her
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+that+i+think+we+miss+an+opportunity+to+find+these+kids+who+have+the+entrepreneurial+traits+and+to+groom+them+or+show+them+that+being+an+entrepreneur+is+actually+a+cool+thing
found 1 videos: [['/talks/cameron_herold_let_s_raise_kids_to_be_entrepreneurs', '2010']]
selected: /talks/cameron_herold_let_s_raise_kids_to_be_entrepreneurs
sleep 3 seconds to avoid blocking
------<320>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CameronRussell_2012X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+name+is+cameron+russell++and+for+the+last
found 1 videos: [['/talks/cameron_russell_looks_aren_t_everything_believe_me_i_m_a_model', '2013']]
selected: /talks/cameron_russell_looks_aren_t_everything_believe_me_i_m_a_model
sleep 5 seconds to avoid blocking
------<321>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CameronSinclair_2006.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=take+you+on+a+journey+very+quickly+to+explain+the+wish++i+m+going+to+have+to+take+you+somewhere+where+many+people+haven+t+been+and+that+s+around+the+world
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+was+about+twenty+four+years+old
found 7 videos: [['/talks/mena_trott_meet_the_founder_of_the_blog_revolution', '2006'], ['/talks/moshe_safdie_building_uniqueness', '2008'], ['/talks/john_maeda_designing_for_simplicity', '2007'], ['/talks/a_j_jacobs_my_year_of_living_biblically', '2008'], ['/talks/peter_diamandis_our_next_giant_leap', '2008'], ['/talks/richard_branson_life_at_30_000_feet', '2007'], ['/talks/peter_hirshberg_the_web_is_more_than_better_tv', '2008']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=kate+stohr+and+myself+started+an+organization+to+get+architects+and+designers+involved+in+humanitarian+work+not+only+about+responding+to+natural+disasters
found 1 videos: [['/talks/cameron_sinclair_my_wish_a_call_for_open_source_architecture', '2006']]
selected: /talks/cameron_sinclair_my_wish_a_call_for_open_source_architecture
sleep 2 seconds to avoid blocking
------<322>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CameronSinclair_2009G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+few+years+ago+my+eyes+were+opened+to+the+dark+side+of+the+construction+industry
found 1 videos: [['/talks/cameron_sinclair_the_refugees_of_boom_and_bust', '2009']]
selected: /talks/cameron_sinclair_the_refugees_of_boom_and_bust
sleep 4 seconds to avoid blocking
------<323>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CamilleBrown_2016V.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+bop+is+a+type+of+social
found 13 videos: [['/talks/camille_a_brown_a_visual_history_of_social_dance_in_25_moves', '2016'], ['/talks/chetan_bhatt_dare_to_refuse_the_origin_myths_that_claim_who_you_are', '2017'], ['/talks/susan_etlinger_what_do_we_do_with_all_this_big_data', '2014'], ['/talks/martin_reeves_how_to_build_a_business_that_lasts_100_years', '2016'], ['/talks/wendy_troxel_why_school_should_start_later_for_teens', '2017'], ['/talks/jonathan_haidt_can_a_divided_america_heal', '2016'], ['/talks/dave_troy_social_maps_that_reveal_a_city_s_intersections_and_separations', '2014'], ['/talks/zachariah_mampilly_how_protest_is_redefining_democracy_around_the_world', '2018'], ['/talks/leila_takayama_what_s_it_like_to_be_a_robot', '2018'], ['/talks/julia_shaw_how_memory_science_can_help_fight_harassment', '2018'], ['/talks/chelsea_shields_how_i_m_working_for_change_inside_my_church', '2015'], ['/talks/susan_emmett_this_simple_test_can_help_kids_hear_better', '2018'], ['/talks/julia_shaw_a_memory_scientist_s_advice_on_reporting_harassment_and_discrimination', '2018']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=dance+dance+is+a+language+and+social+dance+is+an+expression+that+emerges
found 1 videos: [['/talks/camille_a_brown_a_visual_history_of_social_dance_in_25_moves', '2016']]
selected: /talks/camille_a_brown_a_visual_history_of_social_dance_in_25_moves
sleep 3 seconds to avoid blocking
------<324>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CamilleSeaman_2011U.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=connection+is+very+important+to+me+through+my+work+i+m+trying+to+articulate+that+humans+are+not+separate+from+nature
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+everything+is+interconnected+i+first+went+to+antarctica+almost+ten+years+ago+where+i+saw+my+first
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+heart+beat+fast+my+head+was+dizzy+trying+to+comprehend+what+it+was+that+stood+in+front+of+me+the+icebergs+around+me+were+almost+two+hundred+feet+out+of+the+water
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+could+only+help+but+wonder
found 6 videos: [['/talks/sebastian_seung_i_am_my_connectome', '2010'], ['/talks/peter_singer_the_why_and_how_of_effective_altruism', '2013'], ['/talks/ethan_zuckerman_listening_to_global_voices', '2010'], ['/talks/daniel_dulek_how_big_is_a_mole_not_the_animal_the_other_one', '2012'], ['/talks/sarah_kay_if_i_should_have_a_daughter', '2011'], ['/talks/boyd_varty_what_i_learned_from_nelson_mandela', '2013']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+this+was+one+snowflake+on+top+of+another+snowflake+year+after+year+icebergs+are+born+when+they+calve
found 1 videos: [['/talks/camille_seaman_haunting_photos_of_polar_ice', '2011']]
selected: /talks/camille_seaman_haunting_photos_of_polar_ice
sleep 3 seconds to avoid blocking
------<325>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CamilleSeaman_2013.stm
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+a+shinnecock+indian+i+was+raised+to+know+this
found 1 videos: [['/talks/camille_seaman_photos_from_a_storm_chaser', '2013']]
selected: /talks/camille_seaman_photos_from_a_storm_chaser
sleep 4 seconds to avoid blocking
------<326>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CandyChang_2012G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+are+a+lot+of+ways+the+people+around+us+can+help+improve+our+lives+we+don+t+bump+into+every+neighbor+so+a+lot+of+wisdom+never+gets+passed+on
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=though+we+do+share+the+same+public
found 10 videos: [['/talks/janette_sadik_khan_new_york_s_streets_not_so_mean_any_more', '2013'], ['/talks/carl_safina_the_oil_spill_s_unseen_villains_and_victims', '2010'], ['/talks/bill_ford_a_future_beyond_traffic_gridlock', '2011'], ['/talks/candy_chang_before_i_die_i_want_to', '2012'], ['/talks/sheryl_sandberg_so_we_leaned_in_now_what', '2014'], ['/talks/michael_nielsen_open_science_now', '2011'], ['/talks/david_damberger_what_happens_when_an_ngo_admits_failure', '2011'], ['/talks/paddy_ashdown_the_global_power_shift', '2012'], ['/talks/alex_steffen_the_shareable_future_of_cities', '2011'], ['/talks/margaret_gould_stewart_how_giant_websites_design_for_you_and_a_billion_others_too', '2014']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+over+the+past+few+years+i+ve+tried+ways+to+share+more+with+my+neighbors+in+public+space+using+simple+tools+like+stickers+stencils+and+chalk
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+these+projects+came+from+questions+i+had+like
found 11 videos: [['/talks/adam_spencer_why_i_fell_in_love_with_monster_prime_numbers', '2013'], ['/talks/amy_webb_how_i_hacked_online_dating', '2013'], ['/talks/romulus_whitaker_the_real_danger_lurking_in_the_water', '2010'], ['/talks/diana_reiss_peter_gabriel_neil_gershenfeld_and_vint_cerf_the_interspecies_internet_an_idea_in_progress', '2013'], ['/talks/candy_chang_before_i_die_i_want_to', '2012'], ['/talks/peter_saul_let_s_talk_about_dying', '2012'], ['/talks/jake_barton_the_museum_of_you', '2013'], ['/talks/shyam_sankar_the_rise_of_human_computer_cooperation', '2012'], ['/talks/stephen_wolfram_computing_a_theory_of_all_knowledge', '2010'], ['/talks/charles_leadbeater_education_innovation_in_the_slums', '2010'], ['/talks/afra_raymond_three_myths_about_corruption', '2013']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+much+are+my+neighbors+paying+for+their+apartments
found 1 videos: [['/talks/candy_chang_before_i_die_i_want_to', '2012']]
selected: /talks/candy_chang_before_i_die_i_want_to
sleep 4 seconds to avoid blocking
------<327>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CarinBondar_2013G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=anyone+in+the+room+thought+about+sex+today
found 11 videos: [['/talks/carin_bondar_the_birds_and_the_bees_are_just_the_beginning', '2014'], ['/talks/esther_perel_rethinking_infidelity_a_talk_for_anyone_who_has_ever_loved', '2015'], ['/talks/lz_granderson_the_myth_of_the_gay_agenda', '2012'], ['/talks/monica_lewinsky_the_price_of_shame', '2015'], ['/talks/johann_hari_everything_you_think_you_know_about_addiction_is_wrong', '2015'], ['/talks/scott_dinsmore_how_to_find_work_you_love', '2015'], ['/talks/paul_bloom_the_origins_of_pleasure', '2011'], ['/talks/elyn_saks_a_tale_of_mental_illness_from_the_inside', '2012'], ['/talks/bunker_roy_learning_from_a_barefoot_movement', '2011'], ['/talks/mellody_hobson_color_blind_or_color_brave', '2014'], ['/talks/tony_fadell_the_first_secret_of_design_is_noticing', '2015']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=yeah+you+did+thank+you+for+putting+your+hand+up+over+there
found 10 videos: [['/talks/jimmy_nelson_gorgeous_portraits_of_the_world_s_vanishing_people', '2015'], ['/talks/marla_spivak_why_bees_are_disappearing', '2013'], ['/talks/edward_snowden_here_s_how_we_take_back_the_internet', '2014'], ['/talks/carin_bondar_the_birds_and_the_bees_are_just_the_beginning', '2014'], ['/talks/sheryl_sandberg_so_we_leaned_in_now_what', '2014'], ['/talks/anas_aremeyaw_anas_how_i_named_shamed_and_jailed', '2013'], ['/talks/joshua_foer_feats_of_memory_anyone_can_do', '2012'], ['/talks/adam_spencer_why_i_fell_in_love_with_monster_prime_numbers', '2013'], ['/talks/ed_boyden_a_light_switch_for_neurons', '2011'], ['/talks/brene_brown_listening_to_shame', '2012']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+i+m+here+to+provide+you+with+some+biological+validation+for+your+sordid+daydreams++i+m+here+to+tell+you+a+few+things+that+you+might+not+have+known+about+wild+sex
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+when+humans+think+about+sex+male+and+female+forms+are+generally+what+come+to+mind
found 2 videos: [['/talks/carin_bondar_the_birds_and_the_bees_are_just_the_beginning', '2014'], ['/talks/jonathan_drori_the_beautiful_tricks_of_flowers', '2011']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+for+many+millions+of+years++such+specific+categories+didn+t+even+exist+sex+was+a+mere+fusion+of+bodies+or+a+trickle+of+dna+shared+between+two+or+more+beings+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=wasn+t+until+about+five+hundred+million+years+ago+that+we+start+to+see+structures+akin+to+a+penis+or+a+thing+that+gives+dna+out
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+a+vagina++something+that+receives+it
found 4 videos: [['/talks/carin_bondar_the_birds_and_the_bees_are_just_the_beginning', '2014'], ['/talks/al_vernacchio_sex_needs_a_new_metaphor_here_s_one', '2013'], ['/talks/rob_knight_how_our_microbes_make_us_who_we_are', '2015'], ['/talks/shereen_el_feki_a_little_told_tale_of_sex_and_sensuality', '2014']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+invariably+you+re+probably+thinking+about+what+belongs+to+our+own+species+these+very+familiar+structures+but+the+diversity+that+we+see+in+sexual+structures+in+the+animal
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=kingdom+that+has+evolved+in+response+to+the+multitude+of+factors+surrounding+reproduction
found 1 videos: [['/talks/carin_bondar_the_birds_and_the_bees_are_just_the_beginning', '2014']]
selected: /talks/carin_bondar_the_birds_and_the_bees_are_just_the_beginning
sleep 1 seconds to avoid blocking
------<328>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CarlHonore_2005G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=start+off+with+is+an+observation+which+is+that+if+i+ve+learned+anything+over+the+last+year+it+s+that+the+the+supreme+irony+of+publishing+a+book+about+slowness+is+that+you+have+to+go+around+promoting+it+really+fast
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+seem+to+spend+most+of+my+time+these+days
found 1 videos: [['/talks/carl_honore_in_praise_of_slowness', '2007']]
selected: /talks/carl_honore_in_praise_of_slowness
sleep 4 seconds to avoid blocking
------<329>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CarloRatti_2011.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+got+something+to+show+you
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=think+about+this+as+a+pixel+a+flying+pixel
found 3 videos: [['/talks/carlo_ratti_architecture_that_senses_and_responds', '2011'], ['/talks/lian_pin_koh_a_drone_s_eye_view_of_conservation', '2013'], ['/talks/garth_lenz_the_true_cost_of_oil', '2012']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+what+we+call++in+our+lab+sensible+design+let+me+tell+you+a+bit+about+it
found 1 videos: [['/talks/carlo_ratti_architecture_that_senses_and_responds', '2011']]
selected: /talks/carlo_ratti_architecture_that_senses_and_responds
sleep 3 seconds to avoid blocking
------<330>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CarlSafina_2010X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+the+ocean+as+i+used+to+know+it+and
found 13 videos: [['/talks/enric_sala_glimpses_of_a_pristine_ocean', '2010'], ['/talks/edith_widder_glowing_life_in_an_underwater_world', '2010'], ['/talks/brian_skerry_the_ocean_s_glory_and_horror', '2010'], ['/talks/robert_ballard_the_astonishing_hidden_world_of_the_deep_ocean', '2008'], ['/talks/john_delaney_wiring_an_interactive_ocean', '2010'], ['/talks/sylvia_earle_my_wish_protect_our_oceans', '2009'], ['/talks/roz_savage_why_i_m_rowing_across_the_pacific', '2010'], ['/talks/jeremy_jackson_how_we_wrecked_the_ocean', '2010'], ['/talks/dianna_cohen_tough_truths_about_plastic_pollution', '2010'], ['/talks/melissa_garren_the_sea_we_ve_hardly_seen', '2012'], ['/talks/barbara_block_tagging_tuna_in_the_deep_ocean', '2010'], ['/talks/peter_tyack_the_intriguing_sound_of_marine_mammals', '2010'], ['/talks/mike_degruy_hooked_by_an_octopus', '2012']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+find+that+since+i+ve+been+in+the+gulf+a+couple+of+times+i+really+kind+of+am+traumatized+because+whenever+i+look+at+the+ocean+now+no+matter+where+i+am
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=even+where+i+know+that+none+of+the+oil+has+gone
found 15 videos: [['/talks/carl_safina_the_oil_spill_s_unseen_villains_and_victims', '2010'], ['/talks/clifford_stoll_the_call_to_learn', '2008'], ['/talks/paul_snelgrove_a_census_of_the_ocean', '2012'], ['/talks/matt_ridley_when_ideas_have_sex', '2010'], ['/talks/ann_cooper_what_s_wrong_with_school_lunches', '2008'], ['/talks/michael_specter_the_danger_of_science_denial', '2010'], ['/talks/danny_hillis_back_to_the_future_of_1994', '2012'], ['/talks/ben_goldacre_battling_bad_science', '2011'], ['/talks/rob_hopkins_transition_to_a_world_without_oil', '2009'], ['/talks/diana_nyad_extreme_swimming_with_the_world_s_most_dangerous_jellyfish', '2012'], ['/talks/edith_widder_glowing_life_in_an_underwater_world', '2010'], ['/talks/bill_gross_a_solar_energy_system_that_tracks_the_sun', '2009'], ['/talks/george_dyson_the_birth_of_the_computer', '2008'], ['/talks/bertrand_piccard_my_solar_powered_adventure', '2010'], ['/talks/jon_ronson_strange_answers_to_the_psychopath_test', '2012']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+sort+of+see+slicks+and+i+m+finding+that+i+m+very+much+haunted
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+what+i+want+to+talk+to+you+about+today+is+a+lot+of+things+that+try+to+put+all+of+this+in+context+not+just+about+the+oil+eruption+but
found 1 videos: [['/talks/carl_safina_the_oil_spill_s_unseen_villains_and_victims', '2010']]
selected: /talks/carl_safina_the_oil_spill_s_unseen_villains_and_victims
sleep 2 seconds to avoid blocking
------<331>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CarlSafina_2015Z.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+you+ever+wondered+what+animals+think+and+feel+let+s+start+with+a+question
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=does+my+dog+really+love+me+or+does+she+just+want+a+treat
found 12 videos: [['/talks/amy_webb_how_i_hacked_online_dating', '2013'], ['/talks/carl_safina_what_are_animals_thinking_and_feeling', '2015'], ['/talks/paul_bloom_can_prejudice_ever_be_a_good_thing', '2014'], ['/talks/tiq_milan_and_kim_katrin_milan_a_queer_vision_of_love_and_marriage', '2016'], ['/talks/peter_attia_is_the_obesity_crisis_hiding_a_bigger_problem', '2013'], ['/talks/deeyah_khan_what_we_don_t_know_about_europe_s_muslim_kids', '2017'], ['/talks/simon_sinek_why_good_leaders_make_you_feel_safe', '2014'], ['/talks/parul_sehgal_an_ode_to_envy', '2013'], ['/talks/jorge_soto_the_future_of_early_cancer_detection', '2014'], ['/talks/andrew_pelling_this_scientist_makes_ears_out_of_apples', '2016'], ['/talks/scott_galloway_how_amazon_apple_facebook_and_google_manipulate_our_emotions', '2017'], ['/talks/david_whyte_a_lyrical_bridge_between_past_present_and_future', '2017']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well++it+s+easy+to+see
found 9 videos: [['/talks/stephen_burt_why_people_need_poetry', '2014'], ['/talks/tim_smith_big_data', '2013'], ['/talks/jason_pontin_can_technology_solve_our_big_problems', '2013'], ['/talks/enrique_penalosa_why_buses_represent_democracy_in_action', '2013'], ['/talks/jonathan_haidt_can_a_divided_america_heal', '2016'], ['/talks/gretchen_carlson_david_brooks_political_common_ground_in_a_polarized_united_states', '2017'], ['/talks/tasos_frantzolas_everything_you_hear_on_film_is_a_lie', '2016'], ['/talks/ioannis_papachimonas_how_computers_translate_human_language', '2015'], ['/talks/jeff_dekofsky_the_infinite_hotel_paradox', '2014']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+our+dog+really+loves+us
found 16 videos: [['/talks/marc_raibert_meet_spot_the_robot_dog_that_can_run_hop_and_open_doors', '2017'], ['/talks/carl_safina_what_are_animals_thinking_and_feeling', '2015'], ['/talks/esther_perel_rethinking_infidelity_a_talk_for_anyone_who_has_ever_loved', '2015'], ['/talks/leslie_morgan_steiner_why_domestic_violence_victims_don_t_leave', '2013'], ['/talks/ashley_judd_how_online_abuse_of_women_has_spiraled_out_of_control', '2017'], ['/talks/shah_rukh_khan_thoughts_on_humanity_fame_and_love', '2017'], ['/talks/martine_rothblatt_my_daughter_my_wife_our_robot_and_the_quest_for_immortality', '2015'], ['/talks/andrew_solomon_love_no_matter_what', '2013'], ['/talks/christopher_bell_bring_on_the_female_superheroes', '2016'], ['/talks/dave_isay_everyone_around_you_has_a_story_the_world_needs_to_hear', '2015'], ['/talks/tiq_milan_and_kim_katrin_milan_a_queer_vision_of_love_and_marriage', '2016'], ['/talks/pico_iyer_the_beauty_of_what_we_ll_never_know', '2016'], ['/talks/justin_baldoni_why_i_m_done_trying_to_be_man_enough', '2017'], ['/talks/taiye_selasi_don_t_ask_where_i_m_from_ask_where_i_m_a_local', '2015'], ['/talks/brad_troeger_what_is_love', '2013'], ['/talks/mac_barnett_why_a_good_book_is_a_secret_door', '2014']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=easy+to+see+right+what+s+going+on
found 7 videos: [['/talks/stephen_burt_why_people_need_poetry', '2014'], ['/talks/gretchen_carlson_david_brooks_political_common_ground_in_a_polarized_united_states', '2017'], ['/talks/tasos_frantzolas_everything_you_hear_on_film_is_a_lie', '2016'], ['/talks/enrique_penalosa_why_buses_represent_democracy_in_action', '2013'], ['/talks/elon_musk_the_future_we_re_building_and_boring', '2017'], ['/talks/jonathan_haidt_can_a_divided_america_heal', '2016'], ['/talks/robert_muggah_the_biggest_risks_facing_cities_and_some_solutions', '2017']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+that+fuzzy+little+head+what+is+going+on
found 10 videos: [['/talks/carl_safina_what_are_animals_thinking_and_feeling', '2015'], ['/talks/chris_downey_design_with_the_blind_in_mind', '2013'], ['/talks/daniel_kish_how_i_use_sonar_to_navigate_the_world', '2015'], ['/talks/jon_mooallem_how_the_teddy_bear_taught_us_compassion', '2014'], ['/talks/jim_al_khalili_how_quantum_biology_might_explain_life_s_biggest_questions', '2015'], ['/talks/marla_spivak_why_bees_are_disappearing', '2013'], ['/talks/chetan_bhatt_dare_to_refuse_the_origin_myths_that_claim_who_you_are', '2017'], ['/talks/kristen_marhaver_how_we_re_growing_baby_corals_to_rebuild_reefs', '2015'], ['/talks/elizabeth_loftus_how_reliable_is_your_memory', '2013'], ['/talks/steven_pinker_and_rebecca_newberger_goldstein_the_long_reach_of_reason', '2014']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=something+s+going+on+but+why+is+the+question+always
found 7 videos: [['/talks/adam_driver_my_journey_from_marine_to_actor', '2016'], ['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013'], ['/talks/elon_musk_the_mind_behind_tesla_spacex_solarcity', '2013'], ['/talks/gretchen_carlson_david_brooks_political_common_ground_in_a_polarized_united_states', '2017'], ['/talks/karina_galperin_should_we_simplify_spelling', '2017'], ['/talks/freeman_hrabowski_4_pillars_of_college_success_in_science', '2013'], ['/talks/jonathan_haidt_can_a_divided_america_heal', '2016']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=do+they+love+us+why+is+it+always+about+us+why+are+we+such
found 16 videos: [['/talks/russell_foster_why_do_we_sleep', '2013'], ['/talks/parul_sehgal_an_ode_to_envy', '2013'], ['/talks/esther_perel_rethinking_infidelity_a_talk_for_anyone_who_has_ever_loved', '2015'], ['/talks/rob_knight_how_our_microbes_make_us_who_we_are', '2015'], ['/talks/his_holiness_pope_francis_why_the_only_future_worth_building_includes_everyone', '2017'], ['/talks/tara_winkler_why_we_need_to_end_the_era_of_orphanages', '2017'], ['/talks/stephen_burt_why_people_need_poetry', '2014'], ['/talks/chetan_bhatt_dare_to_refuse_the_origin_myths_that_claim_who_you_are', '2017'], ['/talks/sophie_scott_why_we_laugh', '2015'], ['/talks/adam_spencer_why_i_fell_in_love_with_monster_prime_numbers', '2013'], ['/talks/paul_tudor_jones_ii_why_we_need_to_rethink_capitalism', '2015'], ['/talks/sara_seager_the_search_for_planets_beyond_our_solar_system', '2015'], ['/talks/carrie_poppy_a_scientific_approach_to_the_paranormal', '2017'], ['/talks/carl_safina_what_are_animals_thinking_and_feeling', '2015'], ['/talks/giulia_enders_the_surprisingly_charming_science_of_your_gut', '2017'], ['/talks/robert_sapolsky_the_biology_of_our_best_and_worst_selves', '2017']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+found+a+different+question+to+ask+animals
found 10 videos: [['/talks/sebastian_junger_our_lonely_society_makes_it_hard_to_come_home_from_war', '2016'], ['/talks/carl_safina_what_are_animals_thinking_and_feeling', '2015'], ['/talks/paula_johnson_his_and_hers_health_care', '2014'], ['/talks/tristram_wyatt_the_smelly_mystery_of_the_human_pheromone', '2014'], ['/talks/genevieve_von_petzinger_why_are_these_32_symbols_found_in_ancient_caves_all_over_europe', '2015'], ['/talks/ed_yong_zombie_roaches_and_other_parasite_tales', '2014'], ['/talks/moshe_szyf_how_early_life_experience_is_written_into_dna', '2017'], ['/talks/michael_archer_how_we_ll_resurrect_the_gastric_brooding_frog_the_tasmanian_tiger', '2013'], ['/talks/roger_stein_a_bold_new_way_to_fund_drug_research', '2014'], ['/talks/andrew_pelling_this_scientist_makes_ears_out_of_apples', '2016']]
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+are+capacities+of+the+human+mind+that+we+tend+to+think+are+capacities
found 1 videos: [['/talks/carl_safina_what_are_animals_thinking_and_feeling', '2015']]
selected: /talks/carl_safina_what_are_animals_thinking_and_feeling
sleep 2 seconds to avoid blocking
------<332>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CarlSchoonover_2012U.stm
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+a+diagram+of+the+visual+system++and+some+things+look+very+familiar+today++two+eyes+at+the+bottom++optic+nerve+flowing+out+from+the+back
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+a+very+large+nose+that+doesn+t+seem+to+be+connected+to+anything+in+particular
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+if+we+compare+this+to+more+recent+representations+of+the+visual+system+you+ll+see+that+things+have+gotten+substantially+more+complicated+over+the+intervening+thousand+years++and+that+s+because+today+we+can+see+what+s+inside+of+the+brain+rather+than+just+looking+at+its+overall+shape
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=imagine+you+wanted+to+understand+how+a+computer+works
found 17 videos: [['/talks/john_graham_cumming_the_greatest_machine_that_never_was', '2012'], ['/talks/jeremy_howard_the_wonderful_and_terrifying_implications_of_computers_that_can_learn', '2014'], ['/talks/carl_schoonover_how_to_look_inside_the_brain', '2012'], ['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013'], ['/talks/david_mackay_a_reality_check_on_renewables', '2012'], ['/talks/deborah_rhodes_a_test_that_finds_3x_more_breast_tumors_and_why_it_s_not_available_to_you', '2011'], ['/talks/hannah_fry_is_life_really_that_complex', '2012'], ['/talks/lee_cronin_making_matter_come_alive', '2011'], ['/talks/joshua_foer_feats_of_memory_anyone_can_do', '2012'], ['/talks/jer_thorp_make_data_more_human', '2012'], ['/talks/roger_stein_a_bold_new_way_to_fund_drug_research', '2014'], ['/talks/dennis_hong_making_a_car_for_blind_drivers', '2011'], ['/talks/stephen_ritz_a_teacher_growing_green_in_the_south_bronx', '2012'], ['/talks/cynthia_breazeal_the_rise_of_personal_robots', '2011'], ['/talks/andrew_mcafee_what_will_future_jobs_look_like', '2013'], ['/talks/carlo_ratti_architecture_that_senses_and_responds', '2011'], ['/talks/david_mccandless_the_beauty_of_data_visualization', '2010']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+all+you+could+see+was+a+keyboard
found 18 videos: [['/talks/jay_silver_hack_a_banana_make_a_keyboard', '2013'], ['/talks/avi_rubin_all_your_devices_can_be_hacked', '2012'], ['/talks/ian_ritchie_the_day_i_turned_down_tim_berners_lee', '2011'], ['/talks/denise_herzing_could_we_speak_the_language_of_dolphins', '2013'], ['/talks/diana_reiss_peter_gabriel_neil_gershenfeld_and_vint_cerf_the_interspecies_internet_an_idea_in_progress', '2013'], ['/talks/carl_schoonover_how_to_look_inside_the_brain', '2012'], ['/talks/jinha_lee_reach_into_the_computer_and_grab_a_pixel', '2013'], ['/talks/mark_applebaum_the_mad_scientist_of_music', '2012'], ['/talks/rajesh_rao_a_rosetta_stone_for_a_lost_language', '2011'], ['/talks/derek_paravicini_and_adam_ockelford_in_the_key_of_genius', '2013'], ['/talks/charles_limb_your_brain_on_improv', '2011'], ['/talks/beardyman_the_polyphonic_me', '2013'], ['/talks/matthew_carter_my_life_in_typefaces', '2014'], ['/talks/john_maeda_how_art_technology_and_design_inform_creative_leaders', '2012'], ['/talks/peter_molyneux_meet_milo_the_virtual_boy', '2010'], ['/talks/catarina_mota_play_with_smart_materials', '2013'], ['/talks/john_mcwhorter_txtng_is_killing_language_jk', '2013'], ['/talks/keren_elazari_hackers_the_internet_s_immune_system', '2014']]
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+really+would+be+kind+of+out+of+luck+you+want+to+be+able+to+open+it+up+crack+it+open+look+at+the+wiring+inside+and+up+until+a+little+more+than+a+century+ago++nobody+was+able+to+do+that+with
found 1 videos: [['/talks/carl_schoonover_how_to_look_inside_the_brain', '2012']]
selected: /talks/carl_schoonover_how_to_look_inside_the_brain
sleep 5 seconds to avoid blocking
------<333>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CarmenAgraDeedy_2005.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+knew+i+was+going+to+come+and+speak+to+you+i+thought
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+got+to+call+my+mother+i+have+a+little+cuban+mother+she+s+about+that+big+four+feet+nothing+larger+than+the+sum+of+her+figurative+parts+you+still+with+me
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+called+her+up+hello+how+re+you+doing+baby
found 1 videos: [['/talks/bono_my_wish_three_actions_for_africa', '2006']]
selected: /talks/bono_my_wish_three_actions_for_africa
sleep 5 seconds to avoid blocking
------<334>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CarneRoss_2009P.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+story+is+a+little+bit+about+war++it+s+about+disillusionment++it+s+about
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=death++and+it+s+about+rediscovering+idealism
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+a+lesson+about+how+to+deal+with+our+screwed+up+fragmenting+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=dangerous+world+of+the+21st+century
found 7 videos: [['/talks/martin_rees_is_this_our_final_century', '2007'], ['/talks/bertrand_piccard_my_solar_powered_adventure', '2010'], ['/talks/joseph_nye_global_power_shifts', '2010'], ['/talks/bill_clinton_my_wish_rebuilding_rwanda', '2007'], ['/talks/noreena_hertz_how_to_use_experts_and_when_not_to', '2011'], ['/talks/dan_pink_the_puzzle_of_motivation', '2009'], ['/talks/carne_ross_an_independent_diplomat', '2010']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+don+t+believe+in+straightforward+narratives++i+don+t+believe+in+a+life+or+history+written+as+decision+a+led+to+consequence+b+led+to+consequence+c
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+neat+narratives+that+we+re+presented+with+and+that+perhaps+we+encourage+in+each+other+i+believe+in+randomness+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=reasons+i+believe+that+is+because+me+becoming+a+diplomat+was+random++i+m+colorblind+i+was+born+unable+to+see+most+colors+this+is+why+i+wear
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=gray+and+black+most+of+the+time++and+i+have+to+take+my+wife+with+me+to+to+chose+clothes++and
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+d+always+wanted+to+be+a+fighter+pilot+when+i+was+a+boy+i+loved+watching+planes+barrel+over+our+holiday+home+in+the+countryside
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=boyhood+dream+to+be+a+fighter+pilot+and+i+did+the+tests+in+the+royal+air+force
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+become+a+pilot+and+sure+enough+i+failed+i+couldn+t+see+all+the+blinking+different+lights+and+i+can+t+distinguish+color
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+had+to+choose+another+career++and+this+was+in+fact+relatively+easy+for+me+because+i+had
found 1 videos: [['/talks/carne_ross_an_independent_diplomat', '2010']]
selected: /talks/carne_ross_an_independent_diplomat
sleep 4 seconds to avoid blocking
------<335>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CarolDweck_2014X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+heard+about+a+high+school+in+chicago+where+students+had+to+pass+a+certain+number+of+courses+to+graduate++and+if+they+didn+t+pass+a+course+they+got+the
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+thought+that+was+fantastic+because+if+you+get+a+failing+grade+you+think+i+m+nothing+i+m+nowhere++but+if+you+get+the+grade+not+yet+you+understand
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+you+re+on+a+learning+curve+it+gives+you+a+path+into+the+future
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+see+how+children+coped+with+challenge
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+difficulty+so+i+gave++10+year+olds+problems+that+were+slightly+too+hard+for+them
found 6 videos: [['/talks/carol_dweck_the_power_of_believing_that_you_can_improve', '2014'], ['/talks/stephen_petranek_your_kids_might_live_on_mars_here_s_how_they_ll_survive', '2016'], ['/talks/romaine_seguin_when_goods_cross_borders_armies_stay_home', '2016'], ['/talks/eddie_obeng_smart_failure_for_a_fast_changing_world', '2012'], ['/talks/adam_driver_my_journey_from_marine_to_actor', '2016'], ['/talks/paddy_ashdown_the_global_power_shift', '2012']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+of+them+reacted+in+a+shockingly+positive+way+they+said+things
found 1 videos: [['/talks/carol_dweck_the_power_of_believing_that_you_can_improve', '2014']]
selected: /talks/carol_dweck_the_power_of_believing_that_you_can_improve
sleep 5 seconds to avoid blocking
------<336>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CarolFishmanCohen_2015X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+returning+to+work+after+a+career+break
found 1 videos: [['/talks/carol_fishman_cohen_how_to_get_back_to_work_after_a_career_break', '2016']]
selected: /talks/carol_fishman_cohen_how_to_get_back_to_work_after_a_career_break
sleep 5 seconds to avoid blocking
------<337>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CarolineCasey_2010W.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+want+to+be+when+you
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+they+were+all+about+being+free+the+wind+in+your+hair+just+to+be+free
found 6 videos: [['/talks/bruce_feiler_the_council_of_dads', '2011'], ['/talks/caroline_casey_looking_past_limits', '2011'], ['/talks/dan_barber_a_foie_gras_parable', '2008'], ['/talks/isabel_allende_tales_of_passion', '2008'], ['/talks/neil_pasricha_the_3_a_s_of_awesome', '2011'], ['/talks/aimee_mullins_changing_my_legs_and_my_mindset', '2009']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+on+my+seventeenth+birthday+my+parents+knowing+how+much+i+loved+speed++gave+me+one+driving+lesson+for+my+seventeenth+birthday
found 1 videos: [['/talks/caroline_casey_looking_past_limits', '2011']]
selected: /talks/caroline_casey_looking_past_limits
sleep 1 seconds to avoid blocking
------<338>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CarolineLavelleFARTHERTHANTHESUN_2005.stm
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+arrived+off+the+plane+after+a+very+long+journey+from+the+west+of+england+my+computer+my+beloved+laptop
found 1 videos: [['/talks/caroline_lavelle_casting_a_spell_on_the_cello', '2007']]
selected: /talks/caroline_lavelle_casting_a_spell_on_the_cello
sleep 5 seconds to avoid blocking
------<339>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CarolineLavelle_FartherthantheSun_2005.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=got+a+story+for+you+when+i+arrived+off+the+plane+after+a+very+long+journey
found 3 videos: [['/talks/caroline_lavelle_casting_a_spell_on_the_cello', '2007'], ['/talks/eve_ensler_happiness_in_body_and_soul', '2006'], ['/talks/carolyn_porco_this_is_saturn', '2007']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=from+the+west+of+england+my+computer+my+beloved+laptop+had+gone+mad+and+had
found 1 videos: [['/talks/caroline_lavelle_casting_a_spell_on_the_cello', '2007']]
selected: /talks/caroline_lavelle_casting_a_spell_on_the_cello
sleep 3 seconds to avoid blocking
------<340>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CarolinePaul_2016W.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+was+a+kid+i+was+obsessed+with+the+guinness+book+of+world+records++and+i+really+wanted+to+set+a+world+record+myself
found 1 videos: [['/talks/caroline_paul_to_raise_brave_girls_encourage_adventure', '2017']]
selected: /talks/caroline_paul_to_raise_brave_girls_encourage_adventure
sleep 5 seconds to avoid blocking
------<341>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CarolinePhillips_2010G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=since+this+is+tedglobal+who+can+tell+me+what+this+is+called+in+french+i+see+you+re+all+up+on+the+history+of
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=kinds+and+shapes+of+the+hurdy+gurdy+the+hurdy+gurdy+is+the+only+musical+instrument
found 1 videos: [['/talks/caroline_phillips_hurdy_gurdy_for_beginners', '2010']]
selected: /talks/caroline_phillips_hurdy_gurdy_for_beginners
sleep 4 seconds to avoid blocking
------<342>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CarolynJones_2016P.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=usually+remember+the+names+of+our+doctors++but+often+we+forget+the+names+of+our+nurses
found 1 videos: [['/talks/carolyn_jones_a_tribute_to_nurses', '2017']]
selected: /talks/carolyn_jones_a_tribute_to_nurses
sleep 4 seconds to avoid blocking
------<343>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CarolynPorco_2007.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+next+eighteen+minutes+i+m+going+to+take+you+on+a+journey++and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+a+journey+that+you+and+i+have+been+on+for+many+years+now+and+it+began+some+fifty+years+ago+when+humans+first+stepped+off
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+in+those+fifty+years+not+only+did+we+literally+physically+set+foot+set+foot+on+the+moon++but+we+have+dispatched+robotic
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=spacecraft+to+all+the+planets+all+eight+of+them
found 2 videos: [['/talks/carolyn_porco_this_is_saturn', '2007'], ['/talks/jill_tarter_join_the_seti_search', '2009']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+have+landed+on+asteroids+we+have+rendezvoused+with+comets+and+at+this+point+in+time+we+have+a+spacecraft
found 1 videos: [['/talks/carolyn_porco_this_is_saturn', '2007']]
selected: /talks/carolyn_porco_this_is_saturn
sleep 3 seconds to avoid blocking
------<344>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CarolynPorco_2009U.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=two+years+ago+here+at+ted+i+reported
found 10 videos: [['/talks/chris_anderson_how_web_video_powers_global_innovation', '2010'], ['/talks/carolyn_porco_could_a_saturn_moon_harbor_life', '2009'], ['/talks/wade_davis_the_worldwide_web_of_belief_and_ritual', '2008'], ['/talks/daniel_kahneman_the_riddle_of_experience_vs_memory', '2010'], ['/talks/shashi_tharoor_why_nations_should_pursue_soft_power', '2009'], ['/talks/wadah_khanfar_a_historic_moment_in_the_arab_world', '2011'], ['/talks/paul_bloom_the_origins_of_pleasure', '2011'], ['/talks/roger_ebert_remaking_my_voice', '2011'], ['/talks/julian_assange_why_the_world_needs_wikileaks', '2010'], ['/talks/jean_baptiste_michel_erez_lieberman_aiden_what_we_learned_from_5_million_books', '2011']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+we+had+discovered+at+saturn+with+the+cassini+spacecraft+an+anomalously+warm+and+geologically+active+region+at+the+southern+tip+of+the+small
found 1 videos: [['/talks/carolyn_porco_could_a_saturn_moon_harbor_life', '2009']]
selected: /talks/carolyn_porco_could_a_saturn_moon_harbor_life
sleep 2 seconds to avoid blocking
------<345>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CarolynSteel_2009G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+one+of+the+great+questions+of+our+time++yet+it+s+one+that+s+rarely+asked
found 2 videos: [['/talks/dan_gilbert_why_we_make_bad_decisions', '2008'], ['/talks/emily_levine_a_theory_of_everything', '2009']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+take+it+for+granted+that+if+we+go+into+a+shop+or+or+restaurant++or+indeed+into+this+theater+s+foyer+in+about+an+hour+s+time+there+is+going+to+be+food+there+waiting+for+us
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+when+you+think+that+every+day+for+a+city+the+size+of+london+enough+food+has+to+be+produced
found 1 videos: [['/talks/carolyn_steel_how_food_shapes_our_cities', '2009']]
selected: /talks/carolyn_steel_how_food_shapes_our_cities
sleep 5 seconds to avoid blocking
------<346>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CarrieNugent_2016U.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+am+holding+something+remarkably+old
found 3 videos: [['/talks/carrie_nugent_adventures_of_an_asteroid_hunter', '2017'], ['/talks/dave_isay_everyone_around_you_has_a_story_the_world_needs_to_hear', '2015'], ['/talks/ben_cort_what_commercialization_is_doing_to_cannabis', '2018']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+is+older+than+any+human+artifact++older+than+life+on+earth++older+than+the+continents+and+the+oceans+between+them
found 1 videos: [['/talks/carrie_nugent_adventures_of_an_asteroid_hunter', '2017']]
selected: /talks/carrie_nugent_adventures_of_an_asteroid_hunter
sleep 4 seconds to avoid blocking
------<347>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CarriePoppy_2016X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+living+in+a+tiny+house+behind+someone+else+s+house+in+los+angeles+it+was+this+guest+house+it+had
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=kind+of+been+dilapidated+not+taken+care+of+for+a+long+time++and+one+night+i+was+sitting+there+and+i
found 1 videos: [['/talks/carrie_poppy_a_scientific_approach_to_the_paranormal', '2017']]
selected: /talks/carrie_poppy_a_scientific_approach_to_the_paranormal
sleep 5 seconds to avoid blocking
------<348>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CarterEmmart_2010.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+a+great+honor+today+to+share+with+you+the+digital+universe++which+was+created+for+humanity+to+really+see
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=where+we+are+in+the+universe++and+so
found 7 videos: [['/talks/stephen_hawking_questioning_the_universe', '2008'], ['/talks/chris_anderson_why_can_t_we_see_evidence_of_alien_life', '2012'], ['/talks/janna_levin_the_sound_the_universe_makes', '2011'], ['/talks/brian_greene_is_our_universe_the_only_universe', '2012'], ['/talks/honor_harger_a_history_of_the_universe_in_sound', '2011'], ['/talks/george_smoot_the_design_of_the_universe', '2008'], ['/talks/sean_carroll_distant_time_and_the_hint_of_a_multiverse', '2011']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+flat+horizon+that+we+ve+evolved+with+has+been+a+metaphor+for+the+infinite++unbounded+resources
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+unlimited+capacity+for+disposal+of+waste+it+wasn+t+until+we+really
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=left+earth++got+above+the+atmosphere
found 9 videos: [['/talks/phil_plait_how_to_defend_earth_from_asteroids', '2011'], ['/talks/charles_elachi_the_story_behind_the_mars_rovers', '2008'], ['/talks/carter_emmart_a_3d_atlas_of_the_universe', '2010'], ['/talks/james_balog_time_lapse_proof_of_extreme_ice_loss', '2009'], ['/talks/brian_cox_why_we_need_the_explorers', '2010'], ['/talks/rob_dunbar_discovering_ancient_climates_in_oceans_and_ice', '2010'], ['/talks/paul_maccready_nature_vs_humans', '2008'], ['/talks/joel_levine_why_we_need_to_go_back_to_mars', '2010'], ['/talks/yann_arthus_bertrand_a_wide_angle_view_of_fragile_earth', '2009']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+had+seen+the+horizon+bend+back+on+itself
found 4 videos: [['/talks/carter_emmart_a_3d_atlas_of_the_universe', '2010'], ['/talks/jacqueline_novogratz_a_third_way_to_think_about_aid', '2009'], ['/talks/stewart_brand_the_long_now', '2008'], ['/talks/dan_barber_how_i_fell_in_love_with_a_fish', '2010']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+we+could+understand+our+planet+as+a+limited+condition
found 6 videos: [['/talks/carter_emmart_a_3d_atlas_of_the_universe', '2010'], ['/talks/rory_stewart_time_to_end_the_war_in_afghanistan', '2011'], ['/talks/jamais_cascio_tools_for_a_better_world', '2009'], ['/talks/annie_murphy_paul_what_we_learn_before_we_re_born', '2011'], ['/talks/sean_carroll_distant_time_and_the_hint_of_a_multiverse', '2011'], ['/talks/dennis_vanengelsdorp_a_plea_for_bees', '2008']]
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=has+been+built+at+the+american+museum+of+natural+history
found 2 videos: [['/talks/carter_emmart_a_3d_atlas_of_the_universe', '2010'], ['/talks/robert_ballard_the_astonishing_hidden_world_of_the_deep_ocean', '2008']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=over+the+past+twelve+years++we+maintain
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=put+that+together+as+a+project+to+really+chart+the+universe+across+all+scales
found 1 videos: [['/talks/carter_emmart_a_3d_atlas_of_the_universe', '2010']]
selected: /talks/carter_emmart_a_3d_atlas_of_the_universe
sleep 2 seconds to avoid blocking
------<349>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CaryFowler_2009G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+been+fascinated+with+with+crop+diversity+for+about+thirty+five+years+from+now++ever+since+i+stumbled+across+a+fairly+obscure
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=academic+article+by+a+guy+named+jack+harlan++and+he+described+the+diversity+within+crops+all+the+different+kinds+of+wheat+and+rice+and+such+as+a
found 1 videos: [['/talks/cary_fowler_one_seed_at_a_time_protecting_the_future_of_food', '2009']]
selected: /talks/cary_fowler_one_seed_at_a_time_protecting_the_future_of_food
sleep 4 seconds to avoid blocking
------<350>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CaseyBrown_2015X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=no+one+will+ever+pay+you+what+you+re+worth
found 3 videos: [['/talks/dame_stephanie_shirley_why_do_ambitious_women_have_flat_heads', '2015'], ['/talks/alice_goffman_how_we_re_priming_some_kids_for_college_and_others_for_prison', '2015'], ['/talks/alessandra_orofino_it_s_our_city_let_s_fix_it', '2014']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=no+one+will+ever+pay+you+what+you+re+worth
found 3 videos: [['/talks/dame_stephanie_shirley_why_do_ambitious_women_have_flat_heads', '2015'], ['/talks/alice_goffman_how_we_re_priming_some_kids_for_college_and_others_for_prison', '2015'], ['/talks/alessandra_orofino_it_s_our_city_let_s_fix_it', '2014']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+ll+only+ever+pay+you+what+they+think+you+re+worth++and+you+control+their+thinking
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+like+this+although+that+would+be+cool
found 11 videos: [['/talks/chris_downey_design_with_the_blind_in_mind', '2013'], ['/talks/emma_marris_nature_is_everywhere_we_just_need_to_learn_to_see_it', '2016'], ['/talks/katie_bouman_how_to_take_a_picture_of_a_black_hole', '2017'], ['/talks/michael_green_why_we_should_build_wooden_skyscrapers', '2013'], ['/talks/maya_penn_meet_a_young_entrepreneur_cartoonist_designer_activist', '2014'], ['/talks/ted_halstead_a_climate_solution_where_all_sides_can_win', '2017'], ['/talks/david_baron_you_owe_it_to_yourself_to_experience_a_total_solar_eclipse', '2017'], ['/talks/dave_brain_what_a_planet_needs_to_sustain_life', '2016'], ['/talks/lidia_yuknavitch_the_beauty_of_being_a_misfit', '2016'], ['/talks/harry_baker_a_love_poem_for_lonely_prime_numbers', '2015'], ['/talks/casey_brown_know_your_worth_and_then_ask_for_it', '2017']]
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=clearly+defining+and+communicating+your+value+are+essential+to+being+paid+well+for+your+excellence
found 1 videos: [['/talks/casey_brown_know_your_worth_and_then_ask_for_it', '2017']]
selected: /talks/casey_brown_know_your_worth_and_then_ask_for_it
sleep 4 seconds to avoid blocking
------<351>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CaseyGerald_2016.stm
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=souls+and+bodies+packed+into+a+texas+church+on+the+last+night+of+our+lives
found 1 videos: [['/talks/casey_gerald_the_gospel_of_doubt', '2016']]
selected: /talks/casey_gerald_the_gospel_of_doubt
sleep 4 seconds to avoid blocking
------<352>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CatarinaMota_2012G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+have+a+friend+in+portugal+whose+grandfather+built+a+vehicle+out+of+a+bicycle+and+a+washing+machine+so+he+could+transport+his+family
found 1 videos: [['/talks/catarina_mota_play_with_smart_materials', '2013']]
selected: /talks/catarina_mota_play_with_smart_materials
sleep 2 seconds to avoid blocking
------<353>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CatherineBracy_2013Z.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=m+going+to+talk+about+hackers+and+the+image+that+comes+to+your+mind+when+i+say+that+word+is+probably+not
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+benjamin+franklin++but+i+m+going+to+explain+to+you+why+it+should+be
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+image+that+comes+to+your+mind+is+probably+more+likely+of+a+pasty+kid+sitting+in+a+basement+doing+something+mischievous
found 1 videos: [['/talks/catherine_bracy_why_good_hackers_make_good_citizens', '2014']]
selected: /talks/catherine_bracy_why_good_hackers_make_good_citizens
sleep 1 seconds to avoid blocking
------<354>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CatherineCrump_2014G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+shocking+police+crackdown+on+protestors+in+ferguson+missouri+in+the+wake+of+the+police+shooting+of+michael+brown++underscored+the+extent+to+which+advanced+military+weapons+and+equipment++designed+for+the+battlefield+are+making+their+way+to
found 1 videos: [['/talks/catherine_crump_the_small_and_surprisingly_dangerous_detail_the_police_track_about_you', '2014']]
selected: /talks/catherine_crump_the_small_and_surprisingly_dangerous_detail_the_police_track_about_you
sleep 2 seconds to avoid blocking
------<355>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CatherineMohr_2009.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+talk+about+surgical+robots+is+also+a+talk+about+surgery++and
found 1 videos: [['/talks/catherine_mohr_surgery_s_past_present_and_robotic_future', '2009']]
selected: /talks/catherine_mohr_surgery_s_past_present_and_robotic_future
sleep 4 seconds to avoid blocking
------<356>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CatherineMohr_2010U.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=robotic+surgery+geek++and+i+really+want+to+build+green++but+i+m+very+suspicious+of+all+of+these
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=moral+authority+and+short+on+data+telling+me+how+to+do+these+kinds+of+things++and+so+i+have+to+figure+this+out+for+myself
found 1 videos: [['/talks/catherine_mohr_the_tradeoffs_of_building_green', '2010']]
selected: /talks/catherine_mohr_the_tradeoffs_of_building_green
sleep 3 seconds to avoid blocking
------<357>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CedricVillani_2016.stm
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+french+people+do+better+than+all+the+others
found 15 videos: [['/talks/anders_fjellberg_two_nameless_bodies_washed_up_on_the_beach_here_are_their_stories', '2015'], ['/talks/jonathan_tepperman_the_risky_politics_of_progress', '2016'], ['/talks/karina_galperin_should_we_simplify_spelling', '2017'], ['/talks/gaston_acurio_can_home_cooking_change_the_world', '2018'], ['/talks/david_miliband_the_refugee_crisis_is_a_test_of_our_character', '2017'], ['/talks/steven_pinker_and_rebecca_newberger_goldstein_the_long_reach_of_reason', '2014'], ['/talks/tim_leberecht_4_ways_to_build_a_human_company_in_the_age_of_machines', '2016'], ['/talks/dk_osseo_asare_what_a_scrapyard_in_ghana_can_teach_us_about_innovation', '2018'], ['/talks/suzanne_talhouk_don_t_kill_your_language', '2014'], ['/talks/michel_laberge_how_synchronized_hammer_strikes_could_generate_nuclear_fusion', '2014'], ['/talks/esther_perel_rethinking_infidelity_a_talk_for_anyone_who_has_ever_loved', '2015'], ['/talks/nina_fedoroff_a_secret_weapon_against_zika_and_other_mosquito_borne_diseases', '2017'], ['/talks/ryan_gravel_how_an_old_loop_of_railroads_is_changing_the_face_of_a_city', '2016'], ['/talks/tiffany_watt_smith_the_history_of_human_emotions', '2017'], ['/talks/gabby_giffords_and_mark_kelly_be_passionate_be_courageous_be_your_best', '2014']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+would+take+polls++the+top+three+answers+might+be+love++wine
found 4 videos: [['/talks/cedric_villani_what_s_so_sexy_about_math', '2016'], ['/talks/susan_colantuono_the_career_advice_you_probably_didn_t_get', '2014'], ['/talks/kristin_poinar_what_s_hidden_under_the_greenland_ice_sheet', '2017'], ['/talks/alex_edmans_what_to_trust_in_a_post_truth_world', '2018']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+let+me+suggest+a+fourth+one
found 10 videos: [['/talks/wendy_freedman_this_telescope_might_show_us_the_beginning_of_the_universe', '2015'], ['/talks/cedric_villani_what_s_so_sexy_about_math', '2016'], ['/talks/alexander_betts_our_refugee_system_is_failing_here_s_how_we_can_fix_it', '2016'], ['/talks/stephen_webb_where_are_all_the_aliens', '2018'], ['/talks/jim_yong_kim_doesn_t_everyone_deserve_a_chance_at_a_good_life', '2017'], ['/talks/lera_boroditsky_how_language_shapes_the_way_we_think', '2018'], ['/talks/justin_davidson_why_glass_towers_are_bad_for_city_life_and_what_we_need_instead', '2017'], ['/talks/martin_ford_how_we_ll_earn_money_in_a_future_without_jobs', '2017'], ['/talks/alexander_betts_why_brexit_happened_and_what_to_do_next', '2016'], ['/talks/alison_ledgerwood_a_simple_trick_to_improve_positive_thinking', '2018']]
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=did+you+know+that+paris+has+more+mathematicians+than+any+other+city+in+the+world+and+more+streets+with+mathematicians++names+too
found 1 videos: [['/talks/cedric_villani_what_s_so_sexy_about_math', '2016']]
selected: /talks/cedric_villani_what_s_so_sexy_about_math
sleep 1 seconds to avoid blocking
------<358>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CelesteHeadlee_2015X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+see+a+show+of+hands+how+many+of+you+have+unfriended+someone+on+facebook+because+they+said+something+offensive+about+politics+or+religion+childcare
found 1 videos: [['/talks/celeste_headlee_10_ways_to_have_a_better_conversation', '2016']]
selected: /talks/celeste_headlee_10_ways_to_have_a_better_conversation
sleep 3 seconds to avoid blocking
------<359>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CesarHarada_2012S.stm
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+the+top+line+this+is+the+bp+oil+spill++billions+of+barrels+of+oil+gushing+in+the+gulf+of+mexico
found 1 videos: [['/talks/cesar_harada_a_novel_idea_for_cleaning_up_oil_spills', '2012']]
selected: /talks/cesar_harada_a_novel_idea_for_cleaning_up_oil_spills
sleep 4 seconds to avoid blocking
------<360>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CesarHarada_2015F.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+was+a+kid+my+parents+would+tell+me+you+can+make+a+mess++but+you+have+to+clean+up+after+yourself
found 3 videos: [['/talks/cesar_harada_how_i_teach_kids_to_love_science', '2015'], ['/talks/laurel_braitman_depressed_dogs_cats_with_ocd_what_animal_madness_means_for_us_humans', '2014'], ['/talks/eleanor_longden_the_voices_in_my_head', '2013']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+freedom+came+with+responsibility++but+my+imagination+would+take+me+to+all+these+wonderful+places+where+everything+was+possible
found 1 videos: [['/talks/cesar_harada_how_i_teach_kids_to_love_science', '2015']]
selected: /talks/cesar_harada_how_i_teach_kids_to_love_science
sleep 3 seconds to avoid blocking
------<361>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CesarKuriyama_2012.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+new+york+and+i+ve+been+working+in+advertising+for+ever+since+i+left+school+so+about+seven+eight+years+now++and+it+was+draining++i+worked+a+lot+of+late+nights++i+worked+a+lot+of
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+found+myself+never+having+time+for+all+the+projects+that+i+wanted+to+work+on+on+my+own
found 11 videos: [['/talks/adam_spencer_why_i_fell_in_love_with_monster_prime_numbers', '2013'], ['/talks/jer_thorp_make_data_more_human', '2012'], ['/talks/cesar_kuriyama_one_second_every_day', '2013'], ['/talks/morgan_spurlock_the_greatest_ted_talk_ever_sold', '2011'], ['/talks/bruce_feiler_agile_programming_for_your_family', '2013'], ['/talks/bruce_feiler_the_council_of_dads', '2011'], ['/talks/larry_page_where_s_google_going_next', '2014'], ['/talks/jarrett_j_krosoczka_how_a_boy_became_an_artist', '2013'], ['/talks/glenn_greenwald_why_privacy_matters', '2014'], ['/talks/diana_laufenberg_how_to_learn_from_mistakes', '2010'], ['/talks/antony_gormley_sculpted_space_within_and_without', '2012']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+one+day+i+was+at+work+and+i+saw+a+talk+by+stefan+sagmeister+on+ted+and+it+was+called+the+power+of+time+off+and+he+spoke+about+how
found 1 videos: [['/talks/cesar_kuriyama_one_second_every_day', '2013']]
selected: /talks/cesar_kuriyama_one_second_every_day
sleep 1 seconds to avoid blocking
------<362>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ChadeMengTan_2010Z.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=does+the+happiest+man+in+the+world+look+like+he+certainly+doesn+t+look+like+me+he+looks+like+this
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=his+name+is+matthieu+ricard+so
found 3 videos: [['/talks/chade_meng_tan_everyday_compassion_at_google', '2011'], ['/talks/wade_davis_the_worldwide_web_of_belief_and_ritual', '2008'], ['/talks/paola_antonelli_treat_design_as_art', '2008']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+do+you+get+to+be+the+happiest+man+in+the+world
found 14 videos: [['/talks/nic_marks_the_happy_planet_index', '2010'], ['/talks/chade_meng_tan_everyday_compassion_at_google', '2011'], ['/talks/bill_doyle_treating_cancer_with_electric_fields', '2012'], ['/talks/nancy_etcoff_happiness_and_its_surprises', '2009'], ['/talks/jonathan_harris_the_web_as_art', '2008'], ['/talks/jenna_mccarthy_what_you_don_t_know_about_marriage', '2012'], ['/talks/richard_preston_the_mysterious_lives_of_giant_trees', '2008'], ['/talks/woody_norris_hypersonic_sound_and_other_inventions', '2009'], ['/talks/yoav_medan_ultrasound_surgery_healing_without_cuts', '2011'], ['/talks/ariel_garten_know_thyself_with_a_brain_scanner', '2011'], ['/talks/mike_rowe_learning_from_dirty_jobs', '2009'], ['/talks/cary_fowler_one_seed_at_a_time_protecting_the_future_of_food', '2009'], ['/talks/martin_seligman_the_new_era_of_positive_psychology', '2008'], ['/talks/melinda_gates_let_s_put_birth_control_back_on_the_agenda', '2012']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+it+turns+out+there+is+a+way+to+measure+happiness+in+the+brain
found 2 videos: [['/talks/chade_meng_tan_everyday_compassion_at_google', '2011'], ['/talks/nic_marks_the_happy_planet_index', '2010']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+do+that+by+measuring+the+relative+activation+of+the+left+prefrontal+cortex+in+the+fmri+versus+the+right+prefrontal+cortex
found 1 videos: [['/talks/chade_meng_tan_everyday_compassion_at_google', '2011']]
selected: /talks/chade_meng_tan_everyday_compassion_at_google
sleep 4 seconds to avoid blocking
------<363>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CharityTillemannDick_2010P.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+celebrating+an+anniversary+with+me+i+m+not+married
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=six+years+before+that+i+was+starting
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+career+as+an+opera+singer+in+europe
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+was+diagnosed+with+idiopathic+pulmonary+hypertension+also+known+as+ph
error: request timeout
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+thickening+in+the+pulmonary+veins+making+the+right+side+of+the+heart+work+overtime+and+causing+what+i+call+the
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=effect+my+heart+was+three+and+a+half+sizes+too+big++physical+activity+becomes+very+difficult+for+people+with
found 1 videos: [['/talks/charity_tillemann_dick_singing_after_a_double_lung_transplant', '2011']]
selected: /talks/charity_tillemann_dick_singing_after_a_double_lung_transplant
sleep 2 seconds to avoid blocking
------<364>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CharityWayua_2016S.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=growing+up+in+kenya++i+knew+i+always+wanted+to+study+biochemistry++see+i
found 1 videos: [['/talks/charity_wayua_a_few_ways_to_fix_a_government', '2017']]
selected: /talks/charity_wayua_a_few_ways_to_fix_a_government
sleep 2 seconds to avoid blocking
------<365>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CharlesAnderson_2009I.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+come+from+britain+but+i+ve+been+living+in+maldives+for
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=twenty+six+years+now+so+that+s+home+really+the+maldives+as+i+m+sure+you+re+aware+are+a+chain+of+islands+off+the+southwest+coast+of+of+india+here++capital
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=where+i+live+actually+sitting+here+today+in+mysore+we+re+closer+to+to+mal+than+we+are+to
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+re+in+it+india+obviously+is+the+place+to+be+at+the+moment++but+if+you+re+a+marine+biologist++maldives+is+not+such+a+bad+place+to+be+and+it+has+been+my+home+these+years
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+those+of+you+who+ve+been+there+fantastic+coral+reefs+fantastic+diving+fantastic+snorkeling++i+spend+as+much+of+my+time+as+possible+investigating+the+marine+life+i+study+fish
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=also+the+bigger+things++whales+and+dolphins++this+is+a+blue+whale+we+have+blue+whales+in+the+waters+around+here+off+maldives
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=around+the+waters+of+india+you+can+see+them+off+kerala
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+in+fact+we+re+very+lucky+in+this+region++one+of+the+best+places+in+the+world+to+see+blue+whales+is+here+in+this+region
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+sri+lanka++if+you+go+down+to+the+south+coast+of+sri+lanka++during+the+northeast+monsoon+season++you+can+see+blue+whales+very+very+easily+it+s+probably+the+best+place+in+the+world+to+see+them
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now++when+i+talk+about+the+northeast+monsoon+season+i+m+sure
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=many+of+you+here+know+exactly+what+i+mean+but+perhaps
found 12 videos: [['/talks/gero_miesenboeck_re_engineering_the_brain', '2010'], ['/talks/ariel_garten_know_thyself_with_a_brain_scanner', '2011'], ['/talks/tim_brown_tales_of_creativity_and_play', '2008'], ['/talks/paul_bloom_the_origins_of_pleasure', '2011'], ['/talks/james_randi_homeopathy_quackery_and_fraud', '2010'], ['/talks/rebecca_saxe_how_we_read_each_other_s_minds', '2009'], ['/talks/nicholas_christakis_the_hidden_influence_of_social_networks', '2010'], ['/talks/rory_sutherland_sweat_the_small_stuff', '2010'], ['/talks/sherwin_nuland_the_extraordinary_power_of_ordinary_people', '2009'], ['/talks/mihaly_csikszentmihalyi_flow_the_secret_to_happiness', '2008'], ['/talks/john_maeda_designing_for_simplicity', '2007'], ['/talks/carl_honore_in_praise_of_slowness', '2007']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+of+you+are+not+quite+so+sure+i+need+to+explain+a+little+bit+about+monsoons+now+monsoon+the+root+of+the+word+monsoon+comes+from+the+word+season+so+it+s+just+a+season+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+are+two+seasons+in+most+of
found 7 videos: [['/talks/anupam_mishra_the_ancient_ingenuity_of_water_harvesting', '2009'], ['/talks/charles_anderson_dragonflies_that_fly_across_oceans', '2009'], ['/talks/cary_fowler_one_seed_at_a_time_protecting_the_future_of_food', '2009'], ['/talks/nic_marks_the_happy_planet_index', '2010'], ['/talks/josette_sheeran_ending_hunger_now', '2011'], ['/talks/david_deutsch_a_new_way_to_explain_explanation', '2009'], ['/talks/don_norman_3_ways_good_design_makes_you_happy', '2009']]
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+in+the+summer+india+heats+up+gets+very+hot+hot+air+rises++and+air+is+drawn+in+off+the+sea+to+replace+it++and
found 1 videos: [['/talks/charles_anderson_dragonflies_that_fly_across_oceans', '2009']]
selected: /talks/charles_anderson_dragonflies_that_fly_across_oceans
sleep 2 seconds to avoid blocking
------<366>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CharlesElachi_2008P.stm
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+people+who+started+[+jet+propulsion+lab+]
found 1 videos: [['/talks/charles_elachi_the_story_behind_the_mars_rovers', '2008']]
selected: /talks/charles_elachi_the_story_behind_the_mars_rovers
sleep 5 seconds to avoid blocking
------<367>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CharlesFleischer_2005.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=be+talking+about+secrets+obviously+the+best+way+to+divulge+a+secret+is+to+tell+someone+to+not+say+anything+about+it
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=secrets+i+m+using+powerpoint+this+year+just+because
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+into+the+ted+thing+and+when+you+use+these+things+you+don+t+have+to+go+like+that+you+just+press
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+not+my+slides+but+it+s+okay+laughter
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+you+can+see+these+are+all+maps++and+maps+are+important+devices+for+transferring+information+especially+if+you+have+human+cognitive+ability
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+can+see+that+all+formulas+are+really+maps+now+as+humans+we+make+maps+of+places+that+we+seldom+even+go
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+seems+a+little+wasteful+of+time+this+of+course+is+a+map+of+the+moon
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+re+some+very+delightful+names+tranquilacalitis+[+unclear+]+my+favorite+is+frigoris+what+are
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+people+thinking+frigoris+what+the+frigoris+you+doing+names+are+important
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=frigoris+this+is+the+moon+people+could+live+there+one+day+i+ll+meet+you+at+frigoris
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=again+with+various+names+and+this+is+all+done+by+the+way+by+the+international+astronomical+union++this+is+an+actual+group+of+people+that+sit+around+naming+planetary+objects
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+from+their+actual+book+these+are+some+of+the+names+that+they+have+chosen+ladies+and+gentlemen+i
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ll+go+through+a+little+of+them
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+i+think+the+whole+concept+of+a+mermaid+doesn+t+really+blend+into+the+swamp+feel+oh+look
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=mermaid+come+out+of+swamp+oh+boy+it+s+time+for+bolotnitsa+laughter
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=djabran+fluctus++if+that+don+t+flow+off+the+tongue+what+does+i
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=mean+kids+are+studying+this+stuff+and+they+ve+got+the+word
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=wrong+one+dyslexic+kid+and+he+could+be+ruining+his+life+it+fluctus
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hikuleo+fluctus+that+s+a+little+more+flowing+hikuleo+sounds+like+a+kind+of+a+leonardo+dicaprio
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=seventeen+syllable+thing++and+that+s+the+tonga
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+my+favorites+is+the+itoki+fluctus++who+is+the+nicaraguan+goddess+of+insects+stars+and+planets+now+if+you+re+a+goddess+of+stars+and+planets+wouldn+t+you+relegate+insects+to+somebody+else+no
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=no+really+i+m+so+busy+with+the+stars++would+you+mind+taking+the+insects++thank+you+darling++oh+take+the+spiders+too+i+know+they+re+not+insects+but+i+don+t+care
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=monkeys+chimps+just+get+rid+of+the+hairy+creatures
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=going+to+be+going+to+mars+one+day+and+when+we+do+it+s+going+to+be+unfair+for+the+people+that+are+living+there+to+have+to+live+with+these+ridiculous+names+so+you+ll+be+on+mars+and+you+re+at
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hellespointica+depressio+which+has+got+to+be+a+really+up+place+yeah+i
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=m+at+the+depressio+and+i+want+to+get+over+to+amazonis+so+i+plug+it+into+the+mars+map
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+click+the+button+and+there+s+my+directions+i+go
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+a+cool+name+i+will+say+that+so+i+hold+back+a+little+of+my+venom+for+these+astronomical+misnomers
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+of+course+arnon+to+thoth+and+of+course+there+will+be+advertisements+this+is+from+their+rule+book+the+international+astronomical+union
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=astronomique+internationale+for+those+of+you+who+don+t+speak+french+i+thought+i+d+translate+for+you+from+the+rulebook+nomenclature+is+a+tool+the+first+consideration+make+it+clear+simple
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+unambiguous++and+i+think+that+djabran+fluctus++that+fits+that+mode
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+simple+the+goddess+of+goats+very+simple+djabran
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+back+to+the+swamp+mermaid+can+you+call+me+in+a+little+while
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=also+from+the+actual+document+i+highlighted+a+part+i+thought+may+be+of+interest+anyone+can+suggest+changing+a+name++so++i+look+to+you+fellow+member
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=change+this+stuff+up+fast++so++these+are+actual+names+of+people+that+work+there+i
found 3 videos: [['/talks/cameron_sinclair_my_wish_a_call_for_open_source_architecture', '2006'], ['/talks/ze_frank_nerdcore_comedy', '2006'], ['/talks/jimmy_wales_the_birth_of_wikipedia', '2006']]
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+are+more+people+working+for+this+group+and+as+you+can+see+they+don+t+use+their+first+names
found 1 videos: [['/talks/jacqueline_novogratz_patient_capitalism', '2007']]
selected: /talks/jacqueline_novogratz_patient_capitalism
sleep 3 seconds to avoid blocking
------<368>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CharlesHazlewood_2011G.stm
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+m+here+today+to+talk+to+you+about+trust
found 1 videos: [['/talks/charles_hazlewood_trusting_the_ensemble', '2011']]
selected: /talks/charles_hazlewood_trusting_the_ensemble
sleep 4 seconds to avoid blocking
------<369>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CharlesLeadbeater_2005G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+i+m+going+to+do+in+the+spirit+of+collaborative+creativity+is+simply+repeat
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=many+of+the+points+that+the+three+people+before+me+have+already+made+but+do+them
found 3 videos: [['/talks/charles_leadbeater_the_era_of_open_innovation', '2007'], ['/talks/chris_abani_telling_stories_from_africa', '2007'], ['/talks/chris_anderson_technology_s_long_tail', '2007']]
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+do+it+through+a+particular+perspective+and+that+is+to+ask+about+the+role+of+users+and+consumers+in+this+emerging+world+of
found 1 videos: [['/talks/charles_leadbeater_the_era_of_open_innovation', '2007']]
selected: /talks/charles_leadbeater_the_era_of_open_innovation
sleep 4 seconds to avoid blocking
------<370>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CharlesLeadbeater_2010S.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=great+pleasure+to+be+here+it+s+a+great+pleasure+to+speak+after+brian+cox+from+cern+i+think
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=cern+is+the+home+of+the+large+hadron+collider+what+ever+happened+to+the+small
found 2 videos: [['/talks/charles_leadbeater_education_innovation_in_the_slums', '2010'], ['/talks/brian_greene_making_sense_of_string_theory', '2008']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+the+small+hadron+collider+because+the+small+hadron+collider+once+was+the+big+thing
found 4 videos: [['/talks/charles_leadbeater_education_innovation_in_the_slums', '2010'], ['/talks/brian_greene_making_sense_of_string_theory', '2008'], ['/talks/arvind_gupta_turning_trash_into_toys_for_learning', '2011'], ['/talks/massimo_banzi_how_arduino_is_open_sourcing_imagination', '2012']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+the+small+hadron+collider+is+in+a+cupboard
found 1 videos: [['/talks/charles_leadbeater_education_innovation_in_the_slums', '2010']]
selected: /talks/charles_leadbeater_education_innovation_in_the_slums
sleep 1 seconds to avoid blocking
------<371>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CharlesLimb_2010X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+am+a+surgeon+who+studies+creativity++and+i+have+never+had+a+patient+tell+me+i+really+want+you+to+be+creative+during+surgery
found 1 videos: [['/talks/charles_limb_your_brain_on_improv', '2011']]
selected: /talks/charles_limb_your_brain_on_improv
sleep 3 seconds to avoid blocking
------<372>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CharlesLimb_2011P.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+don+t+usually+think+of+the+reasons+why+they+probably+evolved+from+a+biological+perspective++we+don+t+really+think+of
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+evolutionary+need+to+be+protected+by+our+senses++but+that+s+probably+why+our+senses+really+evolved+to+keep+us+safe+to+allow+us
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=really+when+we+think+of+our+senses+or+when+we+think+of+the+loss+of+the+sense+we
found 13 videos: [['/talks/charles_limb_building_the_musical_muscle', '2011'], ['/talks/barry_schwartz_using_our_practical_wisdom', '2010'], ['/talks/natalie_jeremijenko_the_art_of_the_eco_mindshift', '2010'], ['/talks/michael_shermer_the_pattern_behind_self_deception', '2010'], ['/talks/chris_downey_design_with_the_blind_in_mind', '2013'], ['/talks/david_steindl_rast_want_to_be_happy_be_grateful', '2013'], ['/talks/daniel_pauly_the_ocean_s_shifting_baseline', '2012'], ['/talks/laurie_santos_a_monkey_economy_as_irrational_as_ours', '2010'], ['/talks/rufus_griscom_alisa_volkman_let_s_talk_parenting_taboos', '2010'], ['/talks/shlomo_benartzi_saving_for_tomorrow_tomorrow', '2012'], ['/talks/alain_de_botton_atheism_2_0', '2012'], ['/talks/thandiwe_newton_embracing_otherness_embracing_myself', '2011'], ['/talks/pavan_sukhdev_put_a_value_on_nature', '2011']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=really+think+about+something+more+like+this+the+ability+to+touch+something+luxurious+to+taste+something+delicious+to+smell+something+fragrant+to+see+something+beautiful
found 1 videos: [['/talks/charles_limb_building_the_musical_muscle', '2011']]
selected: /talks/charles_limb_building_the_musical_muscle
sleep 3 seconds to avoid blocking
------<373>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CharlesMoore_2009U.stm
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+had+to+be+taught+to+renounce+the+powerful+conservation+ethic+we+developed+during+the+great+depression+and+world+war+ii
found 1 videos: [['/talks/charles_moore_seas_of_plastic', '2009']]
selected: /talks/charles_moore_seas_of_plastic
sleep 3 seconds to avoid blocking
------<374>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CharlesRobertson_2013G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=africa+is+booming+per+capita+incomes+since+the+year+two+thousand+have+doubled
found 1 videos: [['/talks/niall_ferguson_the_6_killer_apps_of_prosperity', '2011']]
selected: /talks/niall_ferguson_the_6_killer_apps_of_prosperity
sleep 5 seconds to avoid blocking
------<375>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CharlieRose_2014.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=larry+sent+me+an+email+and+he+basically+said++we+ve+got+to+make+sure+that+we+don+t+seem+like+we+re+a+couple+of+middle+aged+boring
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+dots+and+how+this+journey+that+began
found 11 videos: [['/talks/robert_swan_let_s_save_the_last_pristine_continent', '2015'], ['/talks/larry_page_where_s_google_going_next', '2014'], ['/talks/dame_ellen_macarthur_the_surprising_thing_i_learned_sailing_solo_around_the_world', '2015'], ['/talks/lauren_hodge_shree_bose_naomi_shah_award_winning_teenage_science_in_action', '2012'], ['/talks/esther_perel_the_secret_to_desire_in_a_long_term_relationship', '2013'], ['/talks/alice_goffman_how_we_re_priming_some_kids_for_college_and_others_for_prison', '2015'], ['/talks/ben_saunders_why_bother_leaving_the_house', '2012'], ['/talks/allan_savory_how_to_fight_desertification_and_reverse_climate_change', '2013'], ['/talks/jp_rangaswami_information_is_food', '2012'], ['/talks/louie_schwartzberg_hidden_miracles_of_the_natural_world', '2014'], ['/talks/alexander_betts_our_refugee_system_is_failing_here_s_how_we_can_fix_it', '2016']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+time+ago+has+such+interesting+prospects+mainly+we+want+to+talk+about+the+future++so+my+first+question+where+is+google+and+where+is+it+going+lp+well+this
found 1 videos: [['/talks/larry_page_where_s_google_going_next', '2014']]
selected: /talks/larry_page_where_s_google_going_next
sleep 4 seconds to avoid blocking
------<376>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CharlieTodd_2011X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+started+improv+everywhere+about+ten+years+ago+when+i+moved+to+new+york+city+with+an+interest+in+acting+and+comedy++because+i+was+new+to+the+city+i+didn+t+have+access+to+a+stage+so+i+decided+to+create+my+own+in+public+places
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+the+first+project+we+re+going+to+take+a+look+at+is+the+very+first+no+pants+subway+ride++now+this+took+place
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=january+of+two+thousand+and+two+and+this+woman+is+the+star+of+the+video+she+doesn+t+know+she+s+being+filmed+she+s+being+filmed+with+a+hidden+camera
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+on+the+six+train+in+new+york+city+and+this+is+the+first+stop+along+the+line+these+are+two+danish+guys+who+come+out+and+sit+down+next+to+the+hidden+camera
found 1 videos: [['/talks/charlie_todd_the_shared_experience_of_absurdity', '2011']]
selected: /talks/charlie_todd_the_shared_experience_of_absurdity
sleep 5 seconds to avoid blocking
------<377>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CharmianGooch_2013G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+talk+about+corruption+there+are+typical+types+of+individuals+that+spring+to+mind
found 1 videos: [['/talks/charmian_gooch_meet_global_corruption_s_hidden_players', '2013']]
selected: /talks/charmian_gooch_meet_global_corruption_s_hidden_players
sleep 2 seconds to avoid blocking
------<378>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CharmianGooch_2014.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=come+here+today+to+talk+to+you+about+a+problem+it+s+a+very+simple+yet+devastating+problem+one+that+spans+the+globe
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+is+affecting+all+of+us+the+problem+is
found 15 videos: [['/talks/mia_nacamulli_what_is_obesity', '2016'], ['/talks/sara_garofalo_the_psychology_behind_irrational_decisions', '2016'], ['/talks/ramanan_laxminarayan_the_coming_crisis_in_antibiotics', '2014'], ['/talks/roxane_gay_confessions_of_a_bad_feminist', '2015'], ['/talks/jonathan_haidt_how_common_threats_can_make_common_political_ground', '2013'], ['/talks/margaret_heffernan_dare_to_disagree', '2012'], ['/talks/leyla_acaroglu_paper_beats_plastic_how_to_rethink_environmental_folklore', '2014'], ['/talks/charmian_gooch_my_wish_to_launch_a_new_era_of_openness_in_business', '2014'], ['/talks/shereen_el_feki_hiv_how_to_fight_an_epidemic_of_bad_laws', '2012'], ['/talks/tyrone_hayes_penelope_jagessar_chaffer_the_toxic_baby', '2012'], ['/talks/markham_nolan_how_to_separate_fact_and_fiction_online', '2012'], ['/talks/travis_kalanick_uber_s_plan_to_get_more_people_into_fewer_cars', '2016'], ['/talks/al_gore_the_case_for_optimism_on_climate_change', '2016'], ['/talks/greg_asner_ecology_from_the_air', '2013'], ['/talks/anote_tong_my_country_will_be_underwater_soon_unless_we_work_together', '2015']]
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+a+really+dry+and+technical+thing+doesn+t+it+but+anonymous+companies+are+making+it+difficult+and+sometimes+impossible+to+find+out
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+actual+human+beings+responsible+sometimes+for+really+terrible+crimes
found 2 videos: [['/talks/charmian_gooch_my_wish_to_launch_a_new_era_of_openness_in_business', '2014'], ['/talks/richard_ledgett_the_nsa_responds_to_edward_snowden_s_ted_talk', '2014']]
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+guess+i+am+a+lifelong+troublemaker
found 1 videos: [['/talks/charmian_gooch_my_wish_to_launch_a_new_era_of_openness_in_business', '2014']]
selected: /talks/charmian_gooch_my_wish_to_launch_a_new_era_of_openness_in_business
sleep 1 seconds to avoid blocking
------<379>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ChelseaShields_2015F.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+more+than+belief+it+s+power+and+it+s+influence
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+influence+affects+all+of+us+every+day++regardless+of+your+own+belief
found 1 videos: [['/talks/chelsea_shields_how_i_m_working_for_change_inside_my_church', '2015']]
selected: /talks/chelsea_shields_how_i_m_working_for_change_inside_my_church
sleep 3 seconds to avoid blocking
------<380>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CherylHayashi_2010.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=m+here+to+spread+the+word+about+the+magnificence+of+spiders
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+how+much+we+can+learn+from+them
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=spiders+are+truly+global+citizens++you+can+find+spiders+in+nearly+every+terrestrial+habitat++this+red+dot+marks+the+great+basin+of+north+america
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=m+involved+with+an+alpine+biodiversity+project+there+with+some+collaborators
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+s+one+of+our+field+sites++and+just+to+give+you+a+sense+of+perspective++this+little+blue+smudge+here+that+s+one+of+my+collaborators
found 1 videos: [['/talks/cheryl_hayashi_the_magnificence_of_spider_silk', '2011']]
selected: /talks/cheryl_hayashi_the_magnificence_of_spider_silk
sleep 2 seconds to avoid blocking
------<381>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ChiekoAsakawa_2015S.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=might+think+there+are+many+things+that+i+can+t+do+because+i+cannot
found 10 videos: [['/talks/natsai_audrey_chieza_fashion_has_a_pollution_problem_can_biology_fix_it', '2017'], ['/talks/t_morgan_dixon_and_vanessa_garrison_the_trauma_of_systematic_racism_is_killing_black_women_a_first_step_toward_change', '2017'], ['/talks/fei_fei_li_how_we_re_teaching_computers_to_understand_pictures', '2015'], ['/talks/keren_elazari_hackers_the_internet_s_immune_system', '2014'], ['/talks/roxane_gay_confessions_of_a_bad_feminist', '2015'], ['/talks/riccardo_sabatini_how_to_read_the_genome_and_build_a_human_being', '2016'], ['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013'], ['/talks/matthew_carter_my_life_in_typefaces', '2014'], ['/talks/bob_mankoff_anatomy_of_a_new_yorker_cartoon', '2013'], ['/talks/clint_smith_how_to_raise_a_black_son_in_america', '2015']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+just+needed+to+have+a+bit+of+help+to+come+up+to+the+stage++but+there+is+also+a+lot+that+i+can+do+this+is+me
found 7 videos: [['/talks/hannah_fry_the_mathematics_of_love', '2015'], ['/talks/sarah_jones_one_woman_five_characters_and_a_sex_lesson_from_the_future', '2015'], ['/talks/carol_fishman_cohen_how_to_get_back_to_work_after_a_career_break', '2016'], ['/talks/edward_snowden_here_s_how_we_take_back_the_internet', '2014'], ['/talks/t_morgan_dixon_and_vanessa_garrison_the_trauma_of_systematic_racism_is_killing_black_women_a_first_step_toward_change', '2017'], ['/talks/chieko_asakawa_how_new_technology_helps_blind_people_explore_the_world', '2015'], ['/talks/wendy_chung_autism_what_we_know_and_what_we_don_t_know_yet', '2014']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=rock+climbing+for+the+first+time
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=actually++i+love+sports+and+i+can+play+many+sports+like+swimming+skiing+skating+scuba+diving+running+and+so+on
error: request timeout
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=somebody+needs+to+help+me+i
found 11 videos: [['/talks/dave_isay_everyone_around_you_has_a_story_the_world_needs_to_hear', '2015'], ['/talks/oren_yakobovich_hidden_cameras_that_film_injustice_in_the_world_s_most_dangerous_places', '2014'], ['/talks/eli_beer_the_fastest_ambulance_a_motorcycle', '2013'], ['/talks/jane_fonda_and_lily_tomlin_a_hilarious_celebration_of_lifelong_female_friendship', '2015'], ['/talks/kamau_gachigi_success_stories_from_kenya_s_first_makerspace', '2017'], ['/talks/jarrett_j_krosoczka_how_a_boy_became_an_artist', '2013'], ['/talks/jeffrey_brown_how_we_cut_youth_violence_in_boston_by_79_percent', '2015'], ['/talks/vijay_kumar_the_future_of_flying_robots', '2015'], ['/talks/andrew_solomon_depression_the_secret_we_share', '2013'], ['/talks/parul_sehgal_an_ode_to_envy', '2013'], ['/talks/chieko_asakawa_how_new_technology_helps_blind_people_explore_the_world', '2015']]
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+lost+my+sight+at+the+age+of+fourteen+in+a+swimming+pool+accident
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+an+active+independent+teenager+and+suddenly+i+became+blind
found 1 videos: [['/talks/chieko_asakawa_how_new_technology_helps_blind_people_explore_the_world', '2015']]
selected: /talks/chieko_asakawa_how_new_technology_helps_blind_people_explore_the_world
sleep 2 seconds to avoid blocking
------<382>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ChimamandaAdichie_2009G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+would+like+to+tell+you+a+few+personal+stories+about
found 5 videos: [['/talks/ethan_zuckerman_listening_to_global_voices', '2010'], ['/talks/jessica_jackley_poverty_money_and_love', '2010'], ['/talks/jonathan_harris_the_web_s_secret_stories', '2007'], ['/talks/chimamanda_ngozi_adichie_the_danger_of_a_single_story', '2009'], ['/talks/kathryn_schulz_on_being_wrong', '2011']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+i+like+to+call+the+danger+of+the+single+story
found 9 videos: [['/talks/chimamanda_ngozi_adichie_the_danger_of_a_single_story', '2009'], ['/talks/sarah_kaminsky_my_father_the_forger', '2011'], ['/talks/elif_shafak_the_politics_of_fiction', '2010'], ['/talks/p_w_singer_military_robots_and_the_future_of_war', '2009'], ['/talks/ethan_zuckerman_listening_to_global_voices', '2010'], ['/talks/brian_skerry_the_ocean_s_glory_and_horror', '2010'], ['/talks/david_christian_the_history_of_our_world_in_18_minutes', '2011'], ['/talks/cynthia_kenyon_experiments_that_hint_of_longer_lives', '2011'], ['/talks/chris_anderson_how_web_video_powers_global_innovation', '2010']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+grew+up+on+a+university+campus+in+eastern+nigeria++my+mother+says+that+i+started+reading+at+the+age+of+two
found 2 videos: [['/talks/chimamanda_ngozi_adichie_the_danger_of_a_single_story', '2009'], ['/talks/elif_shafak_the_politics_of_fiction', '2010']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+four+is+probably+close+to+the+truth
found 11 videos: [['/talks/anna_deavere_smith_four_american_characters', '2007'], ['/talks/stewart_brand_the_long_now', '2008'], ['/talks/robert_full_robots_inspired_by_cockroach_ingenuity', '2008'], ['/talks/bruce_aylward_how_we_ll_stop_polio_for_good', '2011'], ['/talks/charles_limb_building_the_musical_muscle', '2011'], ['/talks/david_logan_tribal_leadership', '2009'], ['/talks/jonathan_haidt_the_moral_roots_of_liberals_and_conservatives', '2008'], ['/talks/charles_limb_your_brain_on_improv', '2011'], ['/talks/samantha_power_a_complicated_hero_in_the_war_on_dictatorship', '2008'], ['/talks/dan_dennett_the_illusion_of_consciousness', '2007'], ['/talks/evgeny_morozov_how_the_net_aids_dictatorships', '2009']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+was+an+early+reader++and+what+i+read+were+british+and+american+children+s+books
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+also+an+early+writer
found 12 videos: [['/talks/abraham_verghese_a_doctor_s_touch', '2011'], ['/talks/annie_murphy_paul_what_we_learn_before_we_re_born', '2011'], ['/talks/anil_ananthaswamy_what_it_takes_to_do_extreme_astrophysics', '2011'], ['/talks/mikko_hypponen_fighting_viruses_defending_the_net', '2011'], ['/talks/chimamanda_ngozi_adichie_the_danger_of_a_single_story', '2009'], ['/talks/elif_shafak_the_politics_of_fiction', '2010'], ['/talks/peter_hirshberg_the_web_is_more_than_better_tv', '2008'], ['/talks/david_byrne_how_architecture_helped_music_evolve', '2010'], ['/talks/sam_martin_claim_your_manspace', '2009'], ['/talks/jamil_abu_wardeh_the_axis_of_evil_middle_east_comedy_tour', '2010'], ['/talks/sherwin_nuland_how_electroshock_therapy_changed_me', '2007'], ['/talks/karen_armstrong_my_wish_the_charter_for_compassion', '2008']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+when+i+began+to+write+at+about+the+age+of+seven+stories+in+pencil+with+crayon+illustrations+that+my+poor+mother+was+obligated+to+read
found 1 videos: [['/talks/chimamanda_ngozi_adichie_the_danger_of_a_single_story', '2009']]
selected: /talks/chimamanda_ngozi_adichie_the_danger_of_a_single_story
sleep 2 seconds to avoid blocking
------<383>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ChimamandaNgoziAdichie_2012X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+would+like+to+start
found 8 videos: [['/talks/amy_webb_how_i_hacked_online_dating', '2013'], ['/talks/ruth_chang_how_to_make_hard_choices', '2014'], ['/talks/julian_treasure_how_to_speak_so_that_people_want_to_listen', '2014'], ['/talks/chris_hadfield_what_i_learned_from_going_blind_in_space', '2014'], ['/talks/peter_van_manen_better_baby_care_thanks_to_formula_1', '2013'], ['/talks/gary_slutkin_let_s_treat_violence_like_a_contagious_disease', '2013'], ['/talks/clay_shirky_how_the_internet_will_one_day_transform_government', '2012'], ['/talks/david_mackay_a_reality_check_on_renewables', '2012']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+telling+you+about+one+of+my+greatest+friends++okoloma+maduewesi
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=okoloma+lived+on+my+street+and+looked+after+me+like+a+big+brother++if+i+liked+a+boy+i+would+ask+okoloma+s+opinion
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+nigeria+in+december+of+two+thousand+and+five++almost+exactly+seven+years+ago
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=okoloma+was+a+person+i+could+argue+with+laugh+with+and+truly+talk+to
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+was+also+the+first+person+to+call+me+a+feminist
found 6 videos: [['/talks/sheryl_sandberg_so_we_leaned_in_now_what', '2014'], ['/talks/jackson_katz_violence_against_women_it_s_a_men_s_issue', '2013'], ['/talks/rives_the_museum_of_four_in_the_morning', '2014'], ['/talks/sarah_jones_what_does_the_future_hold_11_characters_offer_quirky_answers', '2014'], ['/talks/alice_dreger_is_anatomy_destiny', '2011'], ['/talks/hanna_rosin_new_data_on_the_rise_of_women', '2010']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+about+fourteen+we+were+at+his+house+arguing+both+of+us+bristling+with+half+bit+knowledge+from+books+that+we+had+read
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+don+t+remember+what+this+particular+argument+was+about
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+remember+that+as+i+argued+and+argued+okoloma+looked+at+me+and+said+you+know+you+re+a+feminist+it+was+not+a+compliment
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+could+tell+from+his+tone+the+same+tone+that+you+would+use+to+say+something+like+you+re+a+supporter+of+terrorism
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+did+not+know+exactly+what+this+word
found 11 videos: [['/talks/rolf_landua_what_happened_to_antimatter', '2013'], ['/talks/sarah_kay_if_i_should_have_a_daughter', '2011'], ['/talks/william_li_can_we_eat_to_starve_cancer', '2010'], ['/talks/sarah_kay_how_many_lives_can_you_live', '2011'], ['/talks/jessica_jackley_poverty_money_and_love', '2010'], ['/talks/megan_washington_why_i_live_in_mortal_dread_of_public_speaking', '2014'], ['/talks/rives_the_museum_of_four_in_the_morning', '2014'], ['/talks/christopher_mcdougall_are_we_born_to_run', '2011'], ['/talks/allan_savory_how_to_fight_desertification_and_reverse_climate_change', '2013'], ['/talks/ajit_narayanan_a_word_game_to_communicate_in_any_language', '2014'], ['/talks/john_wilbanks_let_s_pool_our_medical_data', '2012']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=meant++and+i+did+not+want+okoloma+to+know+that+i+did+not+know
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+brushed+it+aside+and+i+continued+to+argue+and+the+first+thing+i+planned+to+do+when+i+got+home+was+to+look+up+the+word+feminist+in+the+dictionary
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+years+later++i+wrote+a+novel
found 8 videos: [['/talks/jarrett_j_krosoczka_how_a_boy_became_an_artist', '2013'], ['/talks/sir_ken_robinson_bring_on_the_learning_revolution', '2010'], ['/talks/karen_thompson_walker_what_fear_can_teach_us', '2013'], ['/talks/elif_shafak_the_politics_of_fiction', '2010'], ['/talks/andrew_fitzgerald_adventures_in_twitter_fiction', '2013'], ['/talks/billy_collins_everyday_moments_caught_in_time', '2012'], ['/talks/parul_sehgal_an_ode_to_envy', '2013'], ['/talks/jose_bowen_beethoven_the_businessman', '2012']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+a+man+who+among+other+things+beats+his+wife+and+whose+story+doesn+t+end+very+well+while+i+was+promoting+the+novel+in+nigeria+a+journalist
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+nice+well+meaning+man++told+me+he+wanted+to+advise+me
found 2 videos: [['/talks/joshua_foer_feats_of_memory_anyone_can_do', '2012'], ['/talks/andrew_solomon_depression_the_secret_we_share', '2013']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+for+the+nigerians+here+i+m+sure+we+re+all+familiar+with
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+quick+our+people+are+to+give+unsolicited+advice
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+told+me+that+people+were+saying+that+my+novel+was+feminist+and+his+advice+to+me+and+he+was+shaking+his+head+sadly+as+he+spoke
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+that+i+should+never+call+myself+a+feminist+because+feminists+are+women+who+are+unhappy+because+they+cannot+find+husbands
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+decided+to+call+myself+a+happy+feminist
found 2 videos: [['/talks/alice_dreger_is_anatomy_destiny', '2011'], ['/talks/hanna_rosin_new_data_on_the_rise_of_women', '2010']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=then+an+academic+a+nigerian+woman
found 2 videos: [['/talks/shai_reshef_an_ultra_low_cost_college_degree', '2014'], ['/talks/fred_swaniker_the_leaders_who_ruined_africa_and_the_generation_who_can_fix_it', '2014']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=told+me+that+feminism+was+not+our+culture+and+that+feminism
found 6 videos: [['/talks/kavita_ramdas_radical_women_embracing_tradition', '2010'], ['/talks/liza_donnelly_drawing_on_humor_for_change', '2011'], ['/talks/alice_dreger_is_anatomy_destiny', '2011'], ['/talks/anne_marie_slaughter_can_we_all_have_it_all', '2014'], ['/talks/sheryl_sandberg_so_we_leaned_in_now_what', '2014'], ['/talks/karima_bennoune_when_people_of_muslim_heritage_challenge_fundamentalism', '2014']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+i+was+calling+myself+a+feminist+because+i+had+been+corrupted+by+western+books
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+amused+me+because+a+lot+of+my+early+readings+were+decidedly+unfeminist+i+think+i+must+have+read+every+single+mills+&+boon+romance+published+before+i+was+sixteen
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+each+time+i+tried+to+read+those+books+called+the+feminist+classics+i+d+get+bored
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+really+struggled+to+finish+them+but+anyway+since+feminism+was+un+african+i+decided+that+i+would+now+call+myself+a+happy+african+feminist
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+some+point+i+was+a+happy+african+feminist+who+does+not+hate+men+and+who+likes+lip+gloss+and+who+wears+high+heels+for+herself+but+not+for+men
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+course+a+lot+of+this+was
found 10 videos: [['/talks/stuart_firestein_the_pursuit_of_ignorance', '2013'], ['/talks/adam_sadowsky_how_to_engineer_a_viral_music_video', '2010'], ['/talks/russell_foster_why_do_we_sleep', '2013'], ['/talks/derek_paravicini_and_adam_ockelford_in_the_key_of_genius', '2013'], ['/talks/phil_hansen_embrace_the_shake', '2013'], ['/talks/george_whitesides_toward_a_science_of_simplicity', '2010'], ['/talks/mechai_viravaidya_how_mr_condom_made_thailand_a_better_place_for_life_and_love', '2010'], ['/talks/mark_applebaum_the_mad_scientist_of_music', '2012'], ['/talks/allan_jones_a_map_of_the_brain', '2011'], ['/talks/jeremy_gilley_one_day_of_peace', '2011']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+word+feminist+is+so+heavy+with+baggage++negative+baggage++you+hate+men++you+hate+bras++you+hate+african+culture+that+sort+of+thing
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+here+s+a+story+from+my+childhood
found 3 videos: [['/talks/freeman_hrabowski_4_pillars_of_college_success_in_science', '2013'], ['/talks/peter_diamandis_abundance_is_our_future', '2012'], ['/talks/majora_carter_3_stories_of_local_eco_entrepreneurship', '2010']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+was+in+primary+school+my+teacher+said+at+the+beginning+of+term+that+she+would+give+the+class+a+test
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+whoever+got+the+highest+score+would+be+the+class+monitor++now+class+monitor+was+a+big+deal
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+were+a+class+monitor++you+got+to+write+down+the+names+of+noisemakers
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+was+having+enough+power+of
found 8 videos: [['/talks/susan_cain_the_power_of_introverts', '2012'], ['/talks/jeremy_heimans_what_new_power_looks_like', '2014'], ['/talks/tyrone_hayes_penelope_jagessar_chaffer_the_toxic_baby', '2012'], ['/talks/amy_cuddy_your_body_language_may_shape_who_you_are', '2012'], ['/talks/amanda_bennett_we_need_a_heroic_narrative_for_death', '2013'], ['/talks/eleanor_longden_the_voices_in_my_head', '2013'], ['/talks/melinda_gates_let_s_put_birth_control_back_on_the_agenda', '2012'], ['/talks/andrew_blum_discover_the_physical_side_of_the_internet', '2012']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+teacher+would+also+give+you+a+cane+to+hold+in+your+hand
found 10 videos: [['/talks/jarrett_j_krosoczka_how_a_boy_became_an_artist', '2013'], ['/talks/christopher_emdin_teach_teachers_how_to_create_magic', '2014'], ['/talks/sugata_mitra_the_child_driven_education', '2010'], ['/talks/sugata_mitra_build_a_school_in_the_cloud', '2013'], ['/talks/temple_grandin_the_world_needs_all_kinds_of_minds', '2010'], ['/talks/kakenya_ntaiya_a_girl_who_demanded_school', '2013'], ['/talks/john_hardy_my_green_school_dream', '2010'], ['/talks/cameron_herold_let_s_raise_kids_to_be_entrepreneurs', '2010'], ['/talks/mechai_viravaidya_how_mr_condom_made_thailand_a_better_place_for_life_and_love', '2010'], ['/talks/adam_spencer_why_i_fell_in_love_with_monster_prime_numbers', '2013']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=while+you+walk+around+and+patrol+the+class+for+noisemakers+now+of+course+you+were+not+actually+allowed+to+use+the+cane
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+it+was+an+exciting+prospect+for+the+nine+year+old+me++i+very+much+wanted+to+be+the+class+monitor++and+i+got+the+highest+score+on+the+test
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=then+to+my+surprise+my+teacher+said+that+the+monitor
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=she+had+forgotten+to+make+that+clear+earlier+because+she+assumed+it+was+obvious
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+boy+had+the+second+highest+score+on+the+test+and+he
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=would+be+monitor++now+what+was+even+more+interesting+about+this+is+that
found 18 videos: [['/talks/eric_topol_the_wireless_future_of_medicine', '2010'], ['/talks/glenn_greenwald_why_privacy_matters', '2014'], ['/talks/didier_sornette_how_we_can_predict_the_next_financial_crisis', '2013'], ['/talks/christopher_ryan_are_we_designed_to_be_sexual_omnivores', '2014'], ['/talks/laura_carstensen_older_people_are_happier', '2012'], ['/talks/ariel_garten_know_thyself_with_a_brain_scanner', '2011'], ['/talks/rachel_botsman_the_currency_of_the_new_economy_is_trust', '2012'], ['/talks/paul_piff_does_money_make_you_mean', '2013'], ['/talks/simon_anholt_which_country_does_the_most_good_for_the_world', '2014'], ['/talks/bruce_aylward_how_we_ll_stop_polio_for_good', '2011'], ['/talks/peter_van_manen_better_baby_care_thanks_to_formula_1', '2013'], ['/talks/pico_iyer_the_art_of_stillness', '2014'], ['/talks/marc_goodman_a_vision_of_crimes_in_the_future', '2012'], ['/talks/jonathan_trent_energy_from_floating_algae_pods', '2012'], ['/talks/daniel_kraft_medicine_s_future_there_s_an_app_for_that', '2011'], ['/talks/paul_root_wolpe_it_s_time_to_question_bio_engineering', '2011'], ['/talks/chris_gerdes_the_future_race_car_150mph_and_no_driver', '2012'], ['/talks/jason_fried_why_work_doesn_t_happen_at_work', '2010']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+boy+was+a+sweet+gentle+soul+who+had+no+interest+in+patrolling+the+class+with+the+cane
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=male+and+so+he+became+the+class+monitor
found 3 videos: [['/talks/henry_evans_and_chad_jenkins_meet_the_robots_for_humanity', '2013'], ['/talks/anil_gupta_india_s_hidden_hotbeds_of_invention', '2010'], ['/talks/enric_sala_glimpses_of_a_pristine_ocean', '2010']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+ve+never+forgotten+that+incident
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+often+make+the+mistake+of+thinking+that+something+that+is+obvious+to+me+is+just+as+obvious+to+everyone+else+now+take+my+dear+friend+louis+for+example
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=louis+is+a+brilliant+progressive+man+and+we+would+have+conversations+and+he+would+tell+me+i+don+t+know+what+you+mean+by+things+being+different+or+harder+for+women
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=maybe+in+the+past+but+not+now
found 10 videos: [['/talks/cynthia_breazeal_the_rise_of_personal_robots', '2011'], ['/talks/thomas_p_campbell_weaving_narratives_in_museum_galleries', '2012'], ['/talks/joel_selanikio_the_big_data_revolution_in_health_care', '2013'], ['/talks/kent_larson_brilliant_designs_to_fit_more_people_in_every_city', '2012'], ['/talks/sara_lewis_the_loves_and_lies_of_fireflies', '2014'], ['/talks/holly_morris_why_stay_in_chernobyl_because_it_s_home', '2013'], ['/talks/william_ury_the_walk_from_no_to_yes', '2010'], ['/talks/rodrigo_canales_the_deadly_genius_of_drug_cartels', '2013'], ['/talks/roger_stein_a_bold_new_way_to_fund_drug_research', '2014'], ['/talks/sam_richards_a_radical_experiment_in_empathy', '2011']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+didn+t+understand+how+louis+could+not+see+what+seems+so++self+evident+then+one+evening
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+lagos+louis+and+i+went+out+with+friends++and+for+people+here+who+are+not+familiar+with+lagos+there+s+that+wonderful+lagos++fixture
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+sprinkling+of+energetic+men+who+hang+around+outside+establishments+and+very+dramatically
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+park+your+car+i+was+impressed+with+the+particular+theatrics
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+the+man+who+found+us+a+parking+spot+that+evening++and+so+as+we+were+leaving+i+decided+to+leave+him+a+tip
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+opened+my+bag++put+my+hand+inside+my+bag++brought+out+my+money+that+i+had+earned+from+doing+my+work+and+i+gave+it+to+the+man
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+he+this+man+who+was+very
found 13 videos: [['/talks/joshua_prager_in_search_of_the_man_who_broke_my_neck', '2013'], ['/talks/ian_ritchie_the_day_i_turned_down_tim_berners_lee', '2011'], ['/talks/leslie_morgan_steiner_why_domestic_violence_victims_don_t_leave', '2013'], ['/talks/tony_porter_a_call_to_men', '2010'], ['/talks/matthew_carter_my_life_in_typefaces', '2014'], ['/talks/alex_gendler_history_vs_christopher_columbus', '2014'], ['/talks/jarrett_j_krosoczka_how_a_boy_became_an_artist', '2013'], ['/talks/fred_swaniker_the_leaders_who_ruined_africa_and_the_generation_who_can_fix_it', '2014'], ['/talks/niall_ferguson_the_6_killer_apps_of_prosperity', '2011'], ['/talks/lesley_hazleton_the_doubt_essential_to_faith', '2013'], ['/talks/shabana_basij_rasikh_dare_to_educate_afghan_girls', '2013'], ['/talks/paul_zak_trust_morality_and_oxytocin', '2011'], ['/talks/hasan_elahi_fbi_here_i_am', '2011']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=why+is+he+thanking+me++i+didn+t+give+him+the+money+then+i+saw+realization+dawn+on+louis++face
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+man+believed+that+whatever+money+i+had
error: request timeout
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=come+from+louis+because+louis+is+a+man
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=men+and+women+are+different+we+have+different+hormones+we+have+different+sexual+organs+we+have+different+biological+abilities
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=women+can+have+babies+men+can+t+at
found 1 videos: [['/talks/may_el_khalil_making_peace_is_a_marathon', '2013']]
selected: /talks/may_el_khalil_making_peace_is_a_marathon
sleep 3 seconds to avoid blocking
------<384>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ChinakaHodge_2016W.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=tell+your+daughters+of+this+year
found 16 videos: [['/talks/chinaka_hodge_what_will_you_tell_your_daughters_about_2016', '2016'], ['/talks/shonda_rhimes_my_year_of_saying_yes_to_everything', '2016'], ['/talks/shonda_rhimes_and_cyndi_stivers_the_future_of_storytelling', '2017'], ['/talks/leila_seth_why_i_defend_women_s_inheritance_rights', '2018'], ['/talks/jennifer_granick_how_the_us_government_spies_on_people_who_protest_including_you', '2017'], ['/talks/christopher_bell_bring_on_the_female_superheroes', '2016'], ['/talks/khadija_gbla_my_mother_s_strange_definition_of_empowerment', '2015'], ['/talks/billie_jean_king_this_tennis_icon_paved_the_way_for_women_in_sports', '2015'], ['/talks/sue_jaye_johnson_what_we_don_t_teach_kids_about_sex', '2018'], ['/talks/chelsea_shields_how_i_m_working_for_change_inside_my_church', '2015'], ['/talks/noy_thrupkaew_human_trafficking_is_all_around_you_this_is_how_it_works', '2015'], ['/talks/chimamanda_ngozi_adichie_we_should_all_be_feminists', '2017'], ['/talks/sandra_aamodt_why_dieting_doesn_t_usually_work', '2014'], ['/talks/margrethe_vestager_the_new_age_of_corporate_monopolies', '2017'], ['/talks/sarah_dudas_microplastics_are_everywhere_but_we_can_do_something_about_them', '2018'], ['/talks/ziauddin_yousafzai_my_daughter_malala', '2014']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+we+woke+needing+coffee+but+discovered+instead+cadavers+strewn+about+our+morning+papers+waterlogged+facsimiles+of+our+sisters+spouses+small+children
found 1 videos: [['/talks/chinaka_hodge_what_will_you_tell_your_daughters_about_2016', '2016']]
selected: /talks/chinaka_hodge_what_will_you_tell_your_daughters_about_2016
sleep 1 seconds to avoid blocking
------<385>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ChipConley_2010.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=talk+about+the+simple+truth+in+leadership+in+the+21st+century
found 2 videos: [['/talks/chip_conley_measuring_what_makes_life_worthwhile', '2010'], ['/talks/samantha_power_a_complicated_hero_in_the_war_on_dictatorship', '2008']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+21st+century+we+need+to+actually+look+at+and+what+i+m+actually+going+to+encourage+you+to+consider+today+is+to+go+back+to+our+school+days
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+we+learned+how+to+count
found 9 videos: [['/talks/chip_conley_measuring_what_makes_life_worthwhile', '2010'], ['/talks/marcus_byrne_the_dance_of_the_dung_beetle', '2012'], ['/talks/stanley_mcchrystal_listen_learn_then_lead', '2011'], ['/talks/dimitar_sasselov_how_we_found_hundreds_of_potential_earth_like_planets', '2010'], ['/talks/bonnie_bassler_how_bacteria_talk', '2009'], ['/talks/enric_sala_glimpses_of_a_pristine_ocean', '2010'], ['/talks/jane_mcgonigal_the_game_that_can_give_you_10_extra_years_of_life', '2012'], ['/talks/dee_boersma_pay_attention_to_penguins', '2010'], ['/talks/eric_mead_the_magic_of_the_placebo', '2010']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+think+it+s+time+for+us+to+think+about+what+we+count+because+what+we+actually+count+truly+counts++let+me+start+by+telling+you+a+little+story
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+van+quach+she+came+to+this+country+in+one+thousand+nine+hundred+and+eighty+six+from+vietnam+she+changed+her+name+to+vivian+because+she+wanted+to+fit+in+here+in+america
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=her+first+job+was+at+an+inner+city+motel+in+san+francisco+as+a+maid+i+happened+to+buy+that+motel+about+three+months+after+vivian+started+working+there+so+vivian
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=working+together+for+twenty+three+years
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+the+youthful+idealism+of+a+26+year+old+in+one+thousand+nine+hundred+and+eighty+seven+i+started+my+company+and+i+called+it+joie+de+vivre+a+very+impractical+name
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+i+actually+was+looking+to+create+joy+of+life+and+this+first+hotel+that+i+bought+motel+was+a
found 2 videos: [['/talks/chip_conley_measuring_what_makes_life_worthwhile', '2010'], ['/talks/nathan_myhrvold_archeology_animal_photography_bbq', '2008']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+inner+city+of+san+francisco+as+i+spent+time+with+vivian+i+saw+that+she+had+sort+of+a+joie+de+vivre+in+how+she+did+her+work+it
found 1 videos: [['/talks/chip_conley_measuring_what_makes_life_worthwhile', '2010']]
selected: /talks/chip_conley_measuring_what_makes_life_worthwhile
sleep 4 seconds to avoid blocking
------<386>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ChipKidd_2012.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+did+that+for+two+reasons
found 17 videos: [['/talks/hasan_elahi_fbi_here_i_am', '2011'], ['/talks/marla_spivak_why_bees_are_disappearing', '2013'], ['/talks/robert_gordon_the_death_of_innovation_the_end_of_growth', '2013'], ['/talks/drew_curtis_how_i_beat_a_patent_troll', '2012'], ['/talks/ruth_chang_how_to_make_hard_choices', '2014'], ['/talks/kimberley_motley_how_i_defend_the_rule_of_law', '2014'], ['/talks/ethan_nadelmann_why_we_need_to_end_the_war_on_drugs', '2014'], ['/talks/debra_jarvis_yes_i_survived_cancer_but_that_doesn_t_define_me', '2014'], ['/talks/mina_bissell_experiments_that_point_to_a_new_understanding_of_cancer', '2012'], ['/talks/sonia_shah_3_reasons_we_still_haven_t_gotten_rid_of_malaria', '2013'], ['/talks/adam_spencer_why_i_fell_in_love_with_monster_prime_numbers', '2013'], ['/talks/robin_chase_excuse_me_may_i_rent_your_car', '2012'], ['/talks/guy_hoffman_robots_with_soul', '2014'], ['/talks/craig_venter_watch_me_unveil_synthetic_life', '2010'], ['/talks/tracy_chevalier_finding_the_story_inside_the_painting', '2012'], ['/talks/romulus_whitaker_the_real_danger_lurking_in_the_water', '2010'], ['/talks/dan_ariely_what_makes_us_feel_good_about_our_work', '2013']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+wanted+to+give+you+a+good+visual+first+impression
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+the+main+reason+i+did+it+is+that+that+s+what+happens+to+me+when+i+m+forced+to+wear+a+lady+gaga+skanky+mic
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+used+to+a+stationary+mic+it+s+the+sensible+shoe+of+public+address
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+you+clamp+this+thing+on+my+head+and+something+happens+i+just+become+skanky
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+m+sorry+about+that++and+i+m+already
error: request timeout
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+all+sort+of+started+as+a+benign+mistake+like+penicillin
found 1 videos: [['/talks/chip_kidd_designing_books_is_no_laughing_matter_ok_it_is', '2012']]
selected: /talks/chip_kidd_designing_books_is_no_laughing_matter_ok_it_is
sleep 5 seconds to avoid blocking
------<387>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ChipKidd_2015S.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+what+the+hell+was+that+well+you+don+t+know
found 6 videos: [['/talks/geena_rocero_why_i_must_come_out', '2014'], ['/talks/david_chalmers_how_do_you_explain_consciousness', '2014'], ['/talks/judson_brewer_a_simple_way_to_break_a_bad_habit', '2016'], ['/talks/steve_howard_let_s_go_all_in_on_selling_sustainability', '2013'], ['/talks/mike_kinney_a_pro_wrestler_s_guide_to_confidence', '2017'], ['/talks/kakenya_ntaiya_a_girl_who_demanded_school', '2013']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+you+couldn+t+understand+it++it+wasn+t+clear++but+hopefully+it+was+said+with+enough+conviction
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+it+was+at+least+alluringly+mysterious+clarity
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+mystery+i+m+balancing+these+two+things+in+my+daily+work+as+a+graphic+designer+as+well+as+my+daily+life
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+a+as+a+new+yorker
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=every+day++and+there+are+two+elements+that+absolutely+fascinate+me++here+s+an+example
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+how+many+people+know+what+this+is
found 17 videos: [['/talks/dan_berkenstock_the_world_is_one_big_dataset_now_how_to_photograph_it', '2014'], ['/talks/tom_hulme_what_can_we_learn_from_shortcuts', '2016'], ['/talks/pico_iyer_the_beauty_of_what_we_ll_never_know', '2016'], ['/talks/andrew_mcafee_what_will_future_jobs_look_like', '2013'], ['/talks/alan_smith_why_you_should_love_statistics', '2017'], ['/talks/mark_plotkin_what_the_people_of_the_amazon_know_that_you_don_t', '2014'], ['/talks/gautam_bhan_a_bold_plan_to_house_100_million_people', '2017'], ['/talks/paul_piff_does_money_make_you_mean', '2013'], ['/talks/eric_liu_why_ordinary_people_need_to_understand_power', '2014'], ['/talks/jun_wang_how_digital_dna_could_help_you_make_better_health_choices', '2017'], ['/talks/bj_miller_what_really_matters_at_the_end_of_life', '2015'], ['/talks/deeyah_khan_what_we_don_t_know_about_europe_s_muslim_kids', '2017'], ['/talks/don_tapscott_how_the_blockchain_is_changing_money_and_business', '2016'], ['/talks/daniel_levitin_how_to_stay_calm_when_you_know_you_ll_be_stressed', '2015'], ['/talks/jared_diamond_how_societies_can_grow_old_better', '2013'], ['/talks/grace_kim_how_cohousing_can_make_us_happier_and_live_longer', '2017'], ['/talks/alyson_mcgregor_why_medicine_often_has_dangerous_side_effects_for_women', '2015']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=okay++now+how+many+people+know+what
found 18 videos: [['/talks/hans_and_ola_rosling_how_not_to_be_ignorant_about_the_world', '2014'], ['/talks/lawrence_lessig_we_the_people_and_the_republic_we_must_reclaim', '2013'], ['/talks/jared_diamond_how_societies_can_grow_old_better', '2013'], ['/talks/sheryl_sandberg_so_we_leaned_in_now_what', '2014'], ['/talks/emily_balcetis_why_some_people_find_exercise_harder_than_others', '2014'], ['/talks/peter_doolittle_how_your_working_memory_makes_sense_of_the_world', '2013'], ['/talks/jimmy_nelson_gorgeous_portraits_of_the_world_s_vanishing_people', '2015'], ['/talks/a_j_jacobs_the_world_s_largest_family_reunion_we_re_all_invited', '2014'], ['/talks/dan_pallotta_the_way_we_think_about_charity_is_dead_wrong', '2013'], ['/talks/nicolas_perony_puppies_now_that_i_ve_got_your_attention_complexity_theory', '2014'], ['/talks/rupal_patel_synthetic_voices_as_unique_as_fingerprints', '2014'], ['/talks/romina_libster_the_power_of_herd_immunity', '2015'], ['/talks/naomi_oreskes_why_we_should_trust_scientists', '2014'], ['/talks/miguel_nicolelis_brain_to_brain_communication_has_arrived_how_we_did_it', '2015'], ['/talks/david_chalmers_how_do_you_explain_consciousness', '2014'], ['/talks/sir_ken_robinson_how_to_escape_education_s_death_valley', '2013'], ['/talks/deborah_gordon_what_ants_teach_us_about_the_brain_cancer_and_the_internet', '2014'], ['/talks/philip_evans_how_data_will_transform_business', '2014']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thanks+to+two+more+deft+strokes+by+the+genius+charles+m+schulz
found 1 videos: [['/talks/chip_kidd_the_art_of_first_impressions_in_design_and_life', '2015']]
selected: /talks/chip_kidd_the_art_of_first_impressions_in_design_and_life
sleep 3 seconds to avoid blocking
------<388>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ChrisAbani_2007G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+just+heard+the+best+joke+about+bond+emeruwa+i+was+having+lunch+with+him+just+a+few+minutes+ago
found 1 videos: [['/talks/chris_abani_telling_stories_from_africa', '2007']]
selected: /talks/chris_abani_telling_stories_from_africa
sleep 2 seconds to avoid blocking
------<389>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ChrisAbani_2008.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=always+to+find+ways+to+to+chronicle+to+share+and+to+document
found 1 videos: [['/talks/chris_abani_on_humanity', '2008']]
selected: /talks/chris_abani_on_humanity
sleep 5 seconds to avoid blocking
------<390>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ChrisAnderson_2002.stm
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+think+you+have+a+right+to+know+a+little+bit+right+now+in+this+transition+period+about+this+guy+who+s+going+to+be+looking+after+it+for+you+for+a+bit
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+m+just+going+to+grab+a+chair+here
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+i+ve+come+to+this+conclusion+i+think+i+may+have+been+suffering+from+a+strange+delusion
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+that+i+may+have+believed+unconsciously
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+kind+of+a+business+hero
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+d+spent+fifteen+years+building+it+s+called+future+it+was+a+magazine+publishing+company+it+had+recently+gone+public
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+market+said+that+it+was+apparently+worth+two+billion+dollars+a+number+i+i+didn+t+really+understand
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+magazine+i+d+recently+launched+called
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=business+two+point+zero+was+fatter+than+a+telephone+directory++busy+pumping+hot+air+into+the+bubble
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+i+was+the+forty+percent+owner+of+a+of+a+dotcom+that+was+about+to+go+public+and+no+doubt+be+worth+billions+more+and+all+this+had+come+from
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fifteen+years+earlier+i+was+a+science+journalist+who+people+just+laughed+at+when+i+said+i+really+would+like+to+start+my+own+computer+magazine
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fifteen+years+later+there+are+one+hundred+of+them+and+two+thousand+people+on+staff+and+it+was+it+was+just+such+heady+times+the+date+was
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=february+two+thousand+i+thought+the+little+graph
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=business+life+that+kind+of+looked+a+bit+like+moore+s+law+ever+upward+and+to+the+right+it+was+going+to+go+on+forever+i+mean+it+had+to+right
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+in+for+quite+a+surprise
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+dotcom+ironically+called+snowball+was+the
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=very+last+consumer+web+company+to+go+public
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+next+month+before+nasdaq+exploded
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=crumbling+and+it+looked+like+all+this+stuff+was+going+to+die+and+and+fifteen+years+work+would+have+come+for+nothing+and+it+was+gut+wrenching
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+took+eight+years+of+blood+sweat+and+tears+to+reach+three+hundred+and+fifty+employees+something+which+i+was+very
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=proud+of+in+the+business+february
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=two+thousand+and+one+in+one+day+we+laid+off+three+hundred+and+fifty+people
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+before+the+bloodshed+was+finished+one+thousand+people+had+lost+their+jobs+from+from+my+companies
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=watched+my+own+net+worth+falling+by+about+a+million+dollars+a
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+worse+than+that+far+worse+than+that
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+sense+of+self+worth+was+kind+of+evaporating+i+was+going+around+with+this+big
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+think+what+disgusts+me+more+than+anything+looking+back+is+how+the+hell+did+i+let
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+personal+happiness+get+so+tied+up+with+this+business+thing
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+in+the+end+we+were+able+to+save+future+and+snowball+but
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+at+that+point++ready+to+move+on+and+to+cut+a+long+story+short++here+s+where+i+came+to
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+reason+i+m+telling+this+story+is+that+i+believe+from+many+conversations+that+a+lot+of
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+been+through+a+similar+kind+of+rollercoaster+emotional+rollercoaster+in+the+last+couple+years+this+has+been+a+big+big+transition+time++and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+believe+that+this+conference+can+play
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+big+part+for+all+of+us+in+taking+us+forward+to+the+next
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=stage+to+whatever+s+next+the
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=theme+next+year+is+re+birth+it+was+at+the+same+ted+two+years+ago+when+richard+and+i+reached+an+agreement+on+the
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=future+of+ted++and+at+about+the+same+time++and+i+think+partly+because+of+that+i+started+doing+something+that+i+d+forgotten+about+in+my
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=business+focus++i+started+to+read+again++and+i+discovered+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=while+i+d+been+busy+playing+business+games+there+d+been+this+incredible+revolution+in+so+many+areas+of
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+anthropology+to+all+this+stuff+had+had+changed+and+the+way+in+which+you+could+think+about+us+as+a+as+a+species+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=us+as+a+planet+had+just+changed+so+much+and+it+was+incredibly+exciting+and+what+was+really+most+exciting
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+i+think+richard+wurman+discovered+this+at+least+twenty+years+before+i+did+was+that+all+this+stuff
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=connected+it+s+connected+it+all+hooks+into+each+other+we+talk+about+this+a+lot+and+i+thought+about+trying+to+give+an+example+of+of+this+so
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=just+one+example++madame+de+gaulle+the+wife+of+the+french+president+was+famously+asked+once+what+do+you+most+desire
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+you+think+about+it++it+s+very+true++what+we+all+most+desire+is+a+penis+or
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=happiness+as+we+say+in+english
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=good+luck+with+that+one+in+the+japanese+translation+room
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+happiness++which+twenty+years+ago+would+have+been+just+something+for+discussion+in+the+in+the+church+or+mosque+or+synagogue
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+ask+about+it+which+are+really+interesting+you+can+ask+about+what+causes+it+biochemically++neuroscience++serotonin+all+that+stuff
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+ask+what+are+the+psychological+causes+of+it++nature+nurture++current+circumstance+turns+out+that+the+research+done+on+that+is+absolutely+mind+blowing
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+view+it+as+a+computing+problem+an+artificial+intelligence+problem
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=do+you+need+to+incorporate+some+sort+of+analog+of+happiness+into+a+computer+brain+to+make+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=work+properly+you+can+view+it+in+sort+of+geopolitical+terms+and+say++why+is+it+that+a+billion+people+on+this+planet
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+so+desperately+needy+that+they+have+no+possibility+of+of+happiness++and+whereas+almost+all+the+rest+of+them
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=regardless+of+how+much+money+they+have+whether+it+s+two+dollars+a
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=did+our+genes+invent+this+as+a+kind+of+trick+to+get+us+to+behave+in+certain+ways+the
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ant+s+brain+parasitized+to+make+us+behave+in+certain+ways+so+that+our+genes+would+propagate+are+we+the+victims+of+a+mass+delusion++and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+understand+even+something+as+important+to+us+as+happiness+you+kind+of+have+to+branch+off+in+all+these+different+directions+and+there+s+nowhere
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+i+ve+discovered+other+than+ted
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=where+you+can+ask+that+many+questions+in+that+many+different+directions++and+so++it+s+the+profound+thing+that+richard+talks+about+to+understand+anything
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+just+need+to+understand+the+little+bits+a+little+bit+about+everything+that+surrounds+it++and+so+gradually+over+these
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=three+days++you+start+off+kind+of+trying+to+figure+out+why+am+i+listening+to+all+this+irrelevant+stuff+and+at+the+end+of+the+four+days
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=your+brain+is+humming+and+you+feel+energized+alive+and+excited+and+it+s+because+all+these+different+bits+have+been+put+together+it+s+the+total+brain+experience+we+re+going+to+it+s+the+mental+equivalent+of+the+full+body+massage
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=enough+of+the+theory+chris+tell+us+what+you+re+actually+going+to+do+all+right
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+will++here+s+the+vision+for+ted+number+one
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=do+nothing++this+thing+ain+t+broke+so+i+ain+t+gonna+fix+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=jeff+bezos+kindly+remarked+to+me+chris+ted+is+a+really+great
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+re+going+to+have+to+fuck+up+really+badly+to+make+it+bad
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+gave+myself+the+job+title+of+ted+custodian+ted+custodian+for+a+reason++and+i+will+promise+you+right+here+and+now+that+the+core+values+that+make+ted+special+are+not+going+to+be+interfered+with
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=interest+wherever+it+lies+across+all+the+disciplines+that+are+represented+here+that+s+not+going+to+be+changed+at+all
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=number+two+i+am+going+to+put+together+an+incredible+line+up+of
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+time+scale+on+which+ted+operates+is+just+fantastic+after+coming+out+of+a+magazine+business+with+monthly+deadlines++there+s+a+year+to+do+this+and+already
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+hope+to+show+you+a+bit+later+there+s+twenty+five+or+so+terrific+speakers+signed+up+for+next+year+and+i+m+getting+fantastic+help+from+the+community+this+is+just+such
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=our+contacts+reach+pretty+much+everyone+who+s+interesting+in+the+country+if+not+the+planet+it+s+true
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=number+three+i+do+want+to+if+i+can
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=find+a+way+of+extending+the+ted+experience+throughout+throughout+the+year+a+little+bit+and+one+key+way+that+we+re+going+to+do+this+is+to+introduce+this
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=books+kind+of+saved+me+in+the+last+couple+years+and
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+that+s+a+gift+that+i+would+like+to+pass+on+so+when+you+sign+up+for
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=every+six+weeks+you+ll+get+a+care+package+with+a+book+or+two+and+a+reason+why+they+re+linked+to+ted
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+may+well+be+by+a+ted+speaker++and+so+we+can+get+the+conversation+going+during+the+year+and+come+back+next+year
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=having+had+the+same+intellectual+emotional+journey++i+think+it
found 0 videos: []
error: no video is found.
sleep 5 seconds to avoid blocking
------<391>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ChrisAnderson_2004.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+d+like+to+speak+about+about+technology+trends++which+is+something+that
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=many+of+you+follow+but+we+also+follow+for+related+reasons
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=obviously+being+a+technology+magazine+technology+trends+are+are+something+that+we+write+about
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+part+of+being+any+monthly+magazine+you+live+in+the+future+and+we+have+a+long+lead+time+we+have+to+plan+issues+many+months+in+advance+we+have+to+guess+at+what+public+appetites+are+going+to+be+six+months+nine+months+down+the+road+so+we+re+in+the+forecasting+business
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+also+like+a+lot+of+companies+create+a+product+that+s+based+on+technology+trends
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ideas+and+information+and+if+we+re+lucky+some+entertainment++but+the+concept+s+quite+the+same
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+we+have+to+understand+not+only+why+tech+s+important+where+it+s+going++but+also+very+importantly+when
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+timing+is+is+everything+and+it+s+interesting+when+you+look+at+the+predictions+made
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=during+the+peak+of+the+boom+in+the
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+internet+advertising+they+were+all+right
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+were+just+wrong+in+time
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=almost+every+one+of+those+has+come+true+just+a+few+years+later++but+the+difference+of+a+few+years+on+on+stock+market+valuations+is+obviously+extreme
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+s+why+timing+is+everything+you+ve+probably+seen+something+like+this+before+this+is+the+classic+gartner+hype+curve+which+talks+about+kind+of+the+trajectory+of+a+technology
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+lifespan+and+just+for+fun+we+put+a+bunch+of+technologies+on+it+to+show+whether+they+were+kind+of+rising+for+the+first+high+peak+or+whether+they+were+about+to+crash+into
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=rise+back+in+the+slope+of+enlightenment+etc+and+this+is+one+way+to+do+technology+forecasting+get+a+sense+of+where+technology
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+anticipate+the+next+upturn+we+tend+to+do+any+technology+that+we+think+is+sufficiently+important+we+ll+typically+do+it+twice+once+we+want+to+do+it+first+we
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=want+to+be+the+first+to+do+it+for+the+geeks+who+appreciate+that+we+ll+catch+it+right+there+at+the
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+put+linux+on+the+cover++but+then+it+comes+back+and+sufficiently+big+technologies
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+going+to+hit+the+mainstream+and+they+re+going+to+burst+out+and+then+it+s+time+to+do+it+again+last+year++and+that
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+one+way+that+we+we+try+to+time+technology+trends
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+d+like+to+talk+about+a+way+of+thinking+about+technology+trends+that+i+call+my+grand+unified+theory+of+predicting+the+future+but+it+s
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=closer+to+a+petite+unified+theory+of+predicting+the+future++it+s+based+s+based+on+the+presumption+the+observation+even
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+important+technologies+go+through+four+stages+in+their+life+at+least+one+of+one+of+the+four+stages++sometimes+all+four+of+the+stages
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+at+each+one+of+these+stages+can+be+seen+as+a+collision
found 1 videos: [['/talks/edward_burtynsky_my_wish_manufactured_landscapes_and_green_education', '2006']]
selected: /talks/edward_burtynsky_my_wish_manufactured_landscapes_and_green_education
sleep 5 seconds to avoid blocking
------<392>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ChrisAnderson_2010G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=discovered+what+it+is+we+put+our+speakers+through++sweaty+palms+sleepless+nights++a+wholly+unnatural+fear+of+clocks
found 1 videos: [['/talks/chris_anderson_how_web_video_powers_global_innovation', '2010']]
selected: /talks/chris_anderson_how_web_video_powers_global_innovation
sleep 2 seconds to avoid blocking
------<393>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ChrisAnderson_GreatTEDTalk_2016V.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+people+think+that+there+s+a+ted+talk+formula+give+a+talk+on+a+round+red+rug+share+a+childhood+story+divulge+a+personal+secret
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=end+with+an+inspiring+call+to+action
found 5 videos: [['/talks/sebastian_thrun_and_chris_anderson_what_ai_is_and_isn_t', '2017'], ['/talks/chris_anderson_ted_s_secret_to_great_public_speaking', '2016'], ['/talks/zaria_forman_drawings_that_show_the_beauty_and_fragility_of_earth', '2016'], ['/talks/stewart_brand_and_chris_anderson_mammoths_resurrected_geoengineering_and_other_thoughts_from_a_futurist', '2018'], ['/talks/max_tegmark_how_to_get_empowered_not_overpowered_by_ai', '2018']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+not+how+to+think+of+a+ted+talk+in+fact+if+you+overuse+those+devices+you+re+just+going+to+come+across+as
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=clichd+or+emotionally+manipulative+but+there+is+one+thing+that+all+great+ted+talks+have+in+common++and+i+would+like+to+share+that+thing+with+you
found 1 videos: [['/talks/chris_anderson_ted_s_secret_to_great_public_speaking', '2016']]
selected: /talks/chris_anderson_ted_s_secret_to_great_public_speaking
sleep 2 seconds to avoid blocking
------<394>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ChrisBangle_2002.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+i+want+to+talk+about+is+as+background+is+the+idea+that+cars+are+art+this+is+actually+quite+meaningful+to
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+me+because+car+designers+tend+to+be+a+little+bit+low+on+the+totem+pole+we+don+t+do+coffee
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=coffee+table+books+with+just+one+lamp+inside+of+it+and+cars+are+thought+so+much+as+a+product+that+it+s+a+little+bit+difficult+to+get+into+the+aesthetic+side
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=under+the+same+sort+of+terminology+that+one+would+discuss+art++and+so+cars+as+art+brings+it+into+an+emotional+plane+if+you+accept+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+you+have+to+deal+with+on+the+same+level+you+would+with+art+with+a+capital++a+now+at+this+point+you+re+going+to+see+a+picture+of+michelangelo++this+is+completely
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+re+not+very+emotional+they+solve+a+purpose+and+certainly+automobiles+have+been+around+for+one+hundred+years+and+have+made+our+lives+functionally
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+lot+better+in+many+ways++they+ve+also+been+a+real+pain+in+the+ass
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+automobiles+are+really+the+thing+we+have+to+solve+we+have+to+solve+the+pollution+we+have+to+solve+the+congestion
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+that+s+not+what+interests+me+in+this+speech+what+interests+me+in+this+speech+is
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=cars++automobiles+may+be+what+you+use++but+cars+are+what+we+are+in+many+ways++and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+long+as+we+can+solve+the+problems+of+automobiles+and+i+believe+we+can+with+fuel+cells+or+hydrogen+like+bmw+is+really+hip+on
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+lots+of+other+things+then+i+think+we+can+look+past+that+and+try+and+understand+why
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hook+is+in+many+of+us
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+this+car+y+ness+and+what+that+means+what+we+can+learn+from+it+that+s+what+i+want+to+get+to
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=cars+are+not+a+suit+of+clothes+cars+are+an+avatar+cars+are+an+expansion
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=take+your+thoughts+your+ideas+your+emotions+and+they+multiply+it+your+anger+whatever++it+s+an+avatar++it+s+a+super+waldo+that+you+happen+to+be+inside+of+and+if+you+feel+sexy+the+car+is+sexy++and+if+you+re+full+of+road
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+ve+got+a+chevy+like+a+rock+right+cars+are+a+sculpture
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=did+you+know+this+that+every+car+you+see+out+there+is+sculpted+by+hand
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=many+people+think+well+it+s+computers+and+it+s+done+by+machines+and+stuff+like+that+well+they+reproduce+it++but+the+originals+are+all+done+by+hand+it+s+done+by+by+men+and+women
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+believe+a+lot+in+their+craft
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+put+that+same+kind+of+tension+into+the+sculpting+of+a+car+that+you+do+in+a+great+sculpture+that+you+would+go+and+look+at+in+a+museum+that+tension+between
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+discover++then+you+put+something+new+into+it+and+at+the+same+time+you+have+bounds+of+craftsmanship
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=rules+that+say++this+is+how+you+handle+surfaces++this+is+what+control+is+all+about+this+is+how+you+show+you+re+a+master+of+your+craft
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+tension+that+discovery+that+push+for+something+new+and+at+the+same+time+that+sense+of+obligation+to+the+regards+of+craftsmanship
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+as+strong+in+cars+as+it+is+in+anything+we+work+in+clay++which+hasn+t+changed+much+since
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=michelangelo+started+screwing+around+with+it+and+there+s+a+very+interesting+analogy+to+that+too+real+quickly
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=michelangelo+once+said+he+s+there+to+discover+the+figure+within+ok
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+we+go+the+automobile+that+was+one+hundred+years+right+there+did+you+catch+that
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=between+that+one+there++and+that+one+there+it+changed+a+lot+didn+t+it+ok+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+not+marketing+there+s+a+very+interesting+car+concept+here++but+the+marketing+part+is+not+what+i+want+to+talk+about+here+i+want+to+talk+about+this
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=why+it+means+you+have+to+wash+a+car+what+is+it+that+sensuality+you+have+to+touch+about+it+++that+s+the+sculpture+that+goes+into+it+that+sensuality++and+it+s+done+by+men
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+women+working+just+like+this++making+cars++now+this+little+quote+about+sculpture+from+henry+moore
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=comes+right+back+to+this+idea+of+the+mean++it+s+that+will+to+live+that+need+to+survive+to+express+itself+that+comes+in+a+car+and+takes+over+people+like+me++and+we+tell+other+people+do+this+do+this+do+this+until+this+thing+comes+alive++we+are+completely+infected
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=can+be+the+result+of+this+infectiousness+it+s+quite+wonderful
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+sculpture+is+of+course+at+the+heart+of+all+of+it+and+it+s+really+what+puts+the+craftsmanship+into+our+cars+and+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+not+a+whole+lot+different+really+when+they+re+working+like+this+or+when+somebody+works+like+this
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+that+same+kind+of+commitment+that+same+kind+of+beauty+now+now+i+get+to+the+point+i
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=want+to+talk+about+cars+as+art+art+in+the+platonic+sense+is+truth++it+s+beauty+and+love++now+this+is+really+where+designers+in+car+business+diverge+from+the+engineers
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+don+t+really+have+a+problem+talking+about+love++we+don+t+have+a+problem+talking+about+truth+or+beauty+in+that+sense+that+s+what+we+re+searching+for+when+we+re+working+our+craft++we+are+really+trying+to+find+that+truth+out+there
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+trying+to+find+vanity+and+beauty+we+re+trying+to+find+the+beauty+in+the+truth++however+engineers+tend+to+look+at+things+a+little+bit+more
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=newtonian++instead+of+this+quantum+approach+we+re+dealing+with+irrationalisms+and+we+re+dealing+with+paradoxes+that+we+admit+exist+and+the+engineers+tend+to+look+things+a+little+bit+more+like+two+and+two+is+four+and+if+you+get+four+point+zero+it+s+better+and+four+point+zero+is+even+better
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+sometimes+leads+to+bit+of+a+divergence
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+why+we+re+doing+what+we+re+doing+we+ve+pretty+much+accepted+the+fact+though+that+we+are+the+women+in+the+organization+at+bmw+bmw+is+a+very+manly+type+business++men+men+men+it+s+engineers
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+re+kind+of+the+female+side+to+that+that+s+ok+that+s+cool+you+go+off+and+be+manly+we+re+going+to+be+a+little+bit+more+female
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+what+we+re+interested+in
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+finding+form+that+s+more+than+just+a
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+re+interested+in+finding+beauty+that+s+more+than+just+an+aesthetic+it+s+really+a+truth++and+i+think+this+idea+of+soul+as+being+at+the+heart+of+great+cars
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+very+applicable+you+all+know+it++you+know+a+car+when+you+ve+seen+it+with+soul++you+know+how+strong+this+is
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+this+experience+of+love+and+the+experience+of+design+to+me+are+interchangeable+and+now+i+m+coming+to+my+story
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=through+a+project+called+deep+blue++and+first+of+all+you+have+to+go+with+me+for+a+second++and+say
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know+you+could+take+the+word+love+out+of+a+lot+of+things+in+our+society+put+the+word+design+in+and+it+still+works+like+this+quote+here+you+know+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=kind+of+works+you+know++you+can+understand+that+it+works+in+truisms+all+is+fair+in+design+and+war
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=certainly+we+live+in+a+competitive+society++i+think+this+one+here+there+s+a+pop+song+that+really+describes+philippe+starck+for+me
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know++this+is+like+you+know+this+is+like+puppy+love+you+know+this+is+cool+right
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+really+only+gets+serious+when+you+look+at+something+like+this+ok
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+one+substitution+that+i+believe+all+of+us+in+design+management+are+guilty+of
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+idea+that+there+is+more+to+love++more+to+design+when+it+gets+down+to+your+neighbor+your
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+can+be+physical+like+this+and+maybe+in+the+future+it+will+be+but+right+now+it+s+in+dealing+with+our+own+people+our+own+teams+who+are+doing+the+creating+so+to+my+story
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+work+is+what+we+work+with+here++and+i+have+to+make+a+bond+with+my+designers+when+we+re+creating+bmws
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+have+to+have+a+shared+intimacy+a+shared+vision+that+means+we+have+to+work+as+one+family+we+have+to+understand+ourselves+that+way+there+s+good+times+there+s+interesting+times
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+there+s+some+stress+times+too+you+want+to+do+cars+you+ve+got+to+go+outside
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+ve+got+to+do+cars+in+the+rain++you+ve+got+to+do+cars+in+the+snow
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+by+the+way+is+a+presentation+we+made+to+our+board+of+directors+we+haul+their+butts+out+in+the+snow+too+you+want+to+know+cars+outside
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+you+ve+got+to+stand+outside+to+do+this+and+because+these+are+artists
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+have+very+artistic+temperaments+all
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+one+thing+about+art+is+art+is+discovery++and+art+is+discovering+yourself+through+your+art
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+thing+about+cars+is+we+re+all+a+little+bit+like+pygmalion++we+are+completely+in+love+with+our+own+creations+this+is+one+of+my+favorite+paintings
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+really+describes+our+relationship+with+cars+this+is+sick+beyond+belief+but
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+of+this++the+intimacy+with+which+we+work+together+as+a+team
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=takes+on+a+new+dimension+a+new+meaning++we+have+a+shared+center
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+car+stays+at+the+middle+of+all+our+relationships++and+it+s+my+job+in+the+competitive+process+to+narrow+this+down+i
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=heard+today+about+about+joseph+s+death+genes+that+have+to+go+in+and+kill+cell+reproduction
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know+that+s+what+i+have+to+do+sometimes
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+start+out+with+ten+cars+we+narrow+it+down+to+five+cars+down+to
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=cars+down+to+two+cars+down+to+one+car++and+i+m+in+the+middle+of+that
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=killing+basically++someone+s+love++someone+s+baby++this+is+very+difficult+and+you+have+to+have+a+bond+with+your+team
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+permits+you+to+do+this++because+their+life+is+wrapped+up+in+that+too++they+ve+got+that+gene+infected+in+them+as+well++and+they+want+that+to+live+more+than
error: request timeout
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=put+me+in+contact+with+my+team+in+a+way+that+i+never+expected+and+i+want+to+pass+it+on+to+you+because+i+want+you+to+reflect+on+this++perhaps+in+your+own+relationships++we+wanted+to+a+do+a+car+which+was+a+complete+leap
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+faith+for+bmw++we+wanted+to+do+a+team+which+was+so+removed+from+the+way+we+d+done+it+that+i+only+had+a+phone+number+that+connected+me+to+them
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=staff+of+artists+that+are+just+your+wrist+we+decided+to+free+up+a+team+of+creative+designers+and+engineers
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+find+out+what+s+the+successor+to+the+suv+phenomenon+in+america++this+is+one+thousand+nine+hundred+and+ninety+six+we+did+this+project+and+so+we+sent+them+off
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+this+team+name+deep+blue++now+many+people+know+deep+blue+from+ibm+we+actually+stole+it+from+them+because+we+figured+if+anybody+read+our+faxes+they+d+think+we+re+talking+about+computers+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=turned+out+it+was+quite+clever+because
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+people+get+wrapped+up+in+it++and+we+took+a+team+of+designers+and+we+sent+them+off+to+america
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+gave+them+a+budget+what+we+thought+was+a+set+of+deliverables+a+timetable+and+nothing+else++like+i+said+i+just+had+a+phone+number+that+connected+me+to+them+and+a+group+of+engineers
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=worked+in+germany++and+the+idea+was+they+would+work+separately+on+this+problem+of+what+s+the+successor+to+the+suv+they+would+come+together+compare
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=then+they+would+work+apart++come+together+and+they+would+produce+together+a+monumental+set+of+diverse+opinions+that+didn+t+pollute+each+other+s+ideas+but+at+the+same+time+came+together+and+resolved+the+problems
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hopefully+really+understand+the+customer+at+its+heart+where+the+customer+is+live+with+them+in+america++so
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sent+the+team+off+and+actually+something+different+happened++they+went+other+places
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+i+got+some+postcards+of+these+guys+in+las+vegas+and+i+got+some+postcards+of+these+guys+in+the+grand+canyon+and+i+got+these+postcards+of+niagara+falls++and+pretty+soon+they+re+in+new+york+and+i+don+t+know+where+else
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+m+telling+myself+this+is+going+to+be+a+great+car+they+re+doing+research+that+i
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=six+or+seven+apartments+it+was+cheaper+to+rent+elizabeth+taylor+s+ex+house+in+malibu++and
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+least+they+told+me+it+was+her+house+i+guess+it+was+at+one+time+she+had+a+party+there+or+something+but+anyway
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+d+left+their+some+had+left+their+wives+behind+and+families+behind
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+literally+lived+in+this+house+for+the+entire+six+months+the+project+was+in+america+but+the+first+three+months+were+the+most+intensive
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+one+of+the+young+women+in+the+project+she+was+a+fantastic+lady
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=she+actually+built+her+room+in+the+bathroom+the+bathroom+was+so+big++she+built+the+bed+over+the+bathtub
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+the+other+hand+i+didn+t+know+anything+about+this
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ok++nothing++this+is+all+going+on++and+all+i+m+getting+is+postcards+of+these+guys+in+las+vegas+or+whatever+saying+don+t+worry+chris+this+is+really+going+to+be+good+ok
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+my+concept+of+what+a+design+studio+was+probably+i+wasn+t+up+to+speed+on+where+these+guys+were
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=however+the+engineers+back+in+in+munich+had+taken+on+this+kind+of+newtonian+solution
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+were+trying+to+find+how+many+cup+holders+can+dance+on+the+head+of+a+pin+and+you+know
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+really+serious+questions+that+that+are+confronting+the+modern+consumer++and+one+was+hoping+that+these+two+teams+would+get+together+and+this+collusion+of+incredible+creativity+under+these+incredible+surroundings
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+these+incredibly+stressed+out+engineers+would+create+some
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+didn+t+know+was+and+what+we+found+out+was+these+guys+they+can+t+even+like+talk+to+each+other
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=under+those+conditions+you+get+a+divergence+of+newtonian+and+quantum+thinking+at+that+point+you+have+a+split
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+your+dialog+that+is+so+deep+and+so+far++that+they+cannot+bring+this+together+at+all+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+we+had+our+first+meeting++after+three+months+in+tiburon+which+is+just+up+the+road+from+here+you+know+tiburon
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+idea+was+after+the+first+three+months+of+this+independent+research+they+would+present+it+all+to+dr+goschel+who+is+now+my+boss+and+at+that+time+he+was+co+mentor+on+the+project
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+would+present+their+results++we+would+see+where+we+were+going+we+would+see+the+first+indication+of+what+could+be+the+successive+phenomenon+to+the+suv+in+america
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+i+had+these+ideas+in+my+head+that+this+is+going+to+be+great+i+mean+i+m+going+to+see+so+much+work+it+s+so+intense+i+know
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=probably+las+vegas+meant+a+lot+about+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+m+not+really+sure+where+the+grand+canyon+came+in+either+but+somehow+all+this+is+going+to+come+together+and+i+m+going+to+see+some+really+great+product++so+we+went+to+tiburon++after+three+months
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+team+had+gotten+together+the+week+before
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=many+days+ahead+of+time+the+engineers+flew+over+and+designers+got+together
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+engineers+hadn+t+done+anything++and+they+hadn+t+done+anything+because
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=kind+of+like+in+car+business+engineers+are+there+to+solve+problems++and+we+were+asking+them+to+create+a+problem
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+engineers+were+waiting+for+the+designers+to+say+this+is+the+problem+that+we+ve+created++now+help+us+solve+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=t+talk+about+it++so+what+happened+was+the+engineers+showed+up+with+nothing
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+engineers+told+the+designers+if+you+go+in+with+all+your+stuff+we+ll+walk+out+we
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ll+walk+right+out+of+the+project
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+didn+t+know+any+of+this++and+we+got+a+presentation+that+had+an+agenda+looked+like+this+there+was+a+whole+lot+of
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=being+told+all+about+vocabulary+that+needs+to+be+built+between+engineers+and+designers
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+here+i+m+expecting+at+any+moment+ok+they+re+going+to+turn+the+page+and+i+m+going+to+see+the+cars+i+m+going+to+see+the+sketches+i+m+going+to+see+maybe+some+idea+of+where+it+s+going
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=dialog+kept+on+going+with+mental+maps+of+words
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+pretty+soon+it+was+becoming+obvious+that+instead+of+being+dazzled+with+brilliance+i+was+seriously+being+baffled+with+bullshit
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+this+is+like+to+have+these+months+of+postcard+indication+of+how+great+this+team+is+working+and+they+re+out+there+spending+all+this+money+and+they+re+learning+and+they+re+doing+all+this+stuff
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+went+fucking+ballistic+right+i+went
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=nuts+you+can+probably+remember+tiburon+it+used+to+look+like+this
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=after+four+hours+of+this++i+stood+up+and+i+took+this+team+apart++i+screamed+at+them++i+yelled+at+them+what+the+hell+are+you+doing
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+re+letting+me+down+you+re+my+designers++you+re+supposed+to+be+the+creative+ones+what+the+hell+is+going+on+around+here
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+probably+one+of+my+better+tirades+i+have+some+good+ones+but+this+was+probably+one+of+my+better+ones
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+went+into+these+people+how+could+they+take+bmw+s+money+how+could+they
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+of+course+they+didn+t+tell+us+that+they+had
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=three+station+wagons+full+of+drawings++model+concepts+pictures+everything+i+wanted+they+d+locked+up+in+the+cars
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+they+had+shown+solidarity+with+the+engineers
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+d+decided+not+to+show+me+anything+in+order+to+give+the
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=chance+for+problem+solving+a+chance+to+start+because+they+hadn+t+realized+of+course+that
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+couldn+t+do+problem+creating++so+we+went+to+lunch
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+got+to+tell+you+this+was+one+seriously+quiet+lunch++the+engineers+all+sat+at+one+end+of+the+table+the
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=designers+and+i+sat+at+the+other+end+of+the+table
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know+that+s+what+you+get+furious+about+right++and+somebody+asked+me+about+catherine+my+wife++you+know++did+she+fly+out+with+me+or+something+i+said+no
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+triggered+a+set+of+thoughts+about+my+wife++and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+recalled+that+when+catherine+and+i+were+married++the+priest+gave+a+very+nice+sermon++and+he+said+something+very+important++he+said+love
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=does+not+mean+counting+how+many+times+i+say++i+love+you++it+doesn+t+mean
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+had+sex+this+many+times+this+month+and+it+s+two+times+less+than+last+month++so+that+means+you+don+t+love+me+as+much+love+is+not+selfish
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+thought+about+this++and+i+thought+you+know
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+not+showing+love+here
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+in+the+air++i+m+in+the+air+without+trust++this+cannot+be
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+cannot+be+that+i+m+expecting+a+certain+number+of+sketches
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+to+me+that+s+my+quantification+method+for+qualifying+a+team+this+cannot+be
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+told+them+this+story++i+said+guys++i+m+thinking+about+something+here++this+isn+t+right
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+can+t+have+a+relationship+with+you+guys
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+all+broke+down+into+tears+to+be+quite+honest+about+it++because
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+still+could+not+tell+me
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+much+frustration+they+had+built+up+inside+of+them+not+being+able+to+show+me+what+i+wanted+and+merely+having+to+ask+me+to+trust
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+think+we+felt+much+closer+that+day+we+cut+a+lot+of+strings+that+didn+t+need+to+be+there
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+forged+the+concept+for+what+real+team+and+creativity+is+all+about
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+put+the+car+back+at+the+center+of+our+of+our+thoughts++and+we+put+love
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think++truly+back+into+the
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=center+of+the+process++by+the+way+that+team+went+on+to+create+six+different+concepts+for+the+next+model+of+what+would+be+the+proposal+for+the+next+generation
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=after+suvs+in+america+one+of+those
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+idea+of+a+crossover+coupes+you+see+it+downstairs++the+x+coupe+they
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=had+a+lot+of+fun+with+that+it+was+the+rendition+of+our+motorcycle+the+gs+as+carl+magnusson
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+the+idea+of+what+could+be+a+motorcycle++if+you+add+two+more+wheels
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so++in+conclusion+my+lesson+that+i+wanted+to+pass+on+to+you+was+this+one+here+i+m+also+going+to+steal+a+little+quote+out+of+little+prince+there+s+a+lot+to+be+said+about+trust
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+love++if+you+know+that+those+two+words+are+synonymous+for+design
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+had+a+very+very+meaningful+relationship+with+my+team+that+day++and+it+s+stayed+that+way+ever+since++and+i+hope+that
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+you+too+find+that+there+s+more+to+design
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=design+and+more+towards+the+art+of+the+design+than+doing+it+yourself+it+s+true+that+the+trust+and+the+love++that+makes+it+worthwhile++thanks+so+much
found 0 videos: []
error: no video is found.
sleep 3 seconds to avoid blocking
------<395>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ChrisBliss_2011X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+one+of+my+favorite+writers+for+his+storytelling+but+even+more+i+think+for+the+beauty+and+precision+of+his+prose
found 1 videos: [['/talks/chris_bliss_comedy_is_translation', '2012']]
selected: /talks/chris_bliss_comedy_is_translation
sleep 2 seconds to avoid blocking
------<396>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ChrisBurkard_2015.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+if+i+told+you+that+this
found 16 videos: [['/talks/shereen_el_feki_a_little_told_tale_of_sex_and_sensuality', '2014'], ['/talks/latif_nasser_you_have_no_idea_where_camels_really_come_from', '2016'], ['/talks/jia_jiang_what_i_learned_from_100_days_of_rejection', '2016'], ['/talks/jonathan_marks_in_praise_of_conflict', '2017'], ['/talks/christen_reighter_i_don_t_want_children_stop_telling_me_i_ll_change_my_mind', '2017'], ['/talks/sophie_scott_why_we_laugh', '2015'], ['/talks/boniface_mwangi_the_day_i_stood_up_alone', '2015'], ['/talks/ameera_harouda_why_i_put_myself_in_danger_to_tell_the_stories_of_gaza', '2016'], ['/talks/martin_pistorius_how_my_mind_came_back_to_life_and_no_one_knew', '2015'], ['/talks/geena_rocero_why_i_must_come_out', '2014'], ['/talks/katrina_spade_when_i_die_recompose_me', '2017'], ['/talks/johann_hari_everything_you_think_you_know_about_addiction_is_wrong', '2015'], ['/talks/jun_wang_how_digital_dna_could_help_you_make_better_health_choices', '2017'], ['/talks/jake_barton_the_museum_of_you', '2013'], ['/talks/jennifer_golbeck_your_social_media_likes_expose_more_than_you_think', '2014'], ['/talks/emma_marris_nature_is_everywhere_we_just_need_to_learn_to_see_it', '2016']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+the+face+of+pure+joy++would+you+call+me+crazy++i+wouldn+t+blame+you+because+every+time+i+look+at+this
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+shiver+just+a+little+bit+i+want+to+tell+you+a+little+bit+about+this+photograph+i+was+swimming+around
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+lofoten+islands+in+norway+just+inside+the+arctic+circle+and+the+water+was+hovering
error: request timeout
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+brisk+minus+ten+with+windchill++and+i+could+literally+feel+the+blood+trying+to+leave+my+hands++feet+and+face+and+rush+to+protect+my+vital+organs+it+was+the+coldest+i+ve+ever+been
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=even+with+swollen+lips++sunken+eyes+and+cheeks+flushed+red++i+have+found+that+this+place+right+here
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+somewhere+i+can+find+great+joy
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+when+it+comes+to+pain++psychologist+brock+bastian+probably+said+it+best+when+he+wrote
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=pain+is+a+kind+of+shortcut+to+mindfulness++it+makes+us+suddenly+aware+of+everything+in+the+environment
found 1 videos: [['/talks/chris_burkard_the_joy_of_surfing_in_ice_cold_water', '2015']]
selected: /talks/chris_burkard_the_joy_of_surfing_in_ice_cold_water
sleep 5 seconds to avoid blocking
------<397>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ChrisDomas_2013X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+a+lot+of+ones+and+zeros++it+s+what+we+call+binary+information++this
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+how+computers+talk++it+s+how+they+store+information+it+s+how+computers+think++it+s+how+computers+do
found 5 videos: [['/talks/danny_hillis_back_to_the_future_of_1994', '2012'], ['/talks/peter_diamandis_abundance_is_our_future', '2012'], ['/talks/jean_baptiste_michel_erez_lieberman_aiden_what_we_learned_from_5_million_books', '2011'], ['/talks/simon_lewis_don_t_take_consciousness_for_granted', '2011'], ['/talks/seth_shostak_et_is_probably_out_there_get_ready', '2012']]
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+a+cybersecurity+researcher+which+means+my+job+is+to+sit+down+with+this+information+and+try+to+make+sense+of+it+to+try+to+understand+what+all+the+ones+and+zeroes+mean
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=unfortunately+for+me+we+re+not+just+talking+about+the+ones+and+zeros+i+have+on+the+screen+here++we+re+not+just+talking+about+a+few+pages+of+ones+and+zeros
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+re+talking+about+billions+and+billions+of+ones+and+zeros++more+than+anyone+could+possibly+comprehend
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+as+exciting+as+that+sounds+when+i+first+started+doing+cyber
found 2 videos: [['/talks/chris_domas_the_1s_and_0s_behind_cyber_warfare', '2014'], ['/talks/larry_page_where_s_google_going_next', '2014']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+first+started+doing+cyber+i+wasn+t+sure+that+sifting+through+ones+and+zeros+was+what+i+wanted+to+do+with+the+rest+of+my+life
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+in+my+mind+cyber+was+keeping+viruses+off+of+my+grandma+s+computer
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+keeping+people+s+myspace+pages+from+being+hacked+and+maybe+maybe+on+my+most+glorious+day++it+was+keeping+someone+s+credit+card+information+from+being+stolen
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=those+are+important+things++but+that+s+not+how+i+wanted+to+spend+my+life
found 11 videos: [['/talks/seth_shostak_et_is_probably_out_there_get_ready', '2012'], ['/talks/ben_goldacre_battling_bad_science', '2011'], ['/talks/roger_stein_a_bold_new_way_to_fund_drug_research', '2014'], ['/talks/stephen_burt_why_people_need_poetry', '2014'], ['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013'], ['/talks/elon_musk_the_mind_behind_tesla_spacex_solarcity', '2013'], ['/talks/morgan_spurlock_the_greatest_ted_talk_ever_sold', '2011'], ['/talks/charles_hazlewood_trusting_the_ensemble', '2011'], ['/talks/regina_dugan_from_mach_20_glider_to_hummingbird_drone', '2012'], ['/talks/bruce_feiler_the_council_of_dads', '2011'], ['/talks/deborah_rhodes_a_test_that_finds_3x_more_breast_tumors_and_why_it_s_not_available_to_you', '2011']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+after+thirty+minutes+of+work+as+a+defense+contractor+i+soon+found+out+that+my+idea+of+cyber+was+a+little+bit+off
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+fact+in+terms+of+national+security++keeping+viruses+off+of+my+grandma+s+computer+was+surprisingly+low+on+their+priority+list+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+reason+for+that+is+cyber+is+so+much+bigger+than+any+one+of+those+things
found 3 videos: [['/talks/chris_domas_the_1s_and_0s_behind_cyber_warfare', '2014'], ['/talks/david_rothkopf_how_fear_drives_american_politics', '2015'], ['/talks/richard_ledgett_the_nsa_responds_to_edward_snowden_s_ted_talk', '2014']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=cyber+is+an+integral+part+of+all+of+our+lives++because+computers+are+an+integral+part+of+all+of+our+lives+even+if+you+don+t+own+a+computer
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=computers+control+everything+in+your+car+from+your+gps+to+your+airbags++they+control+your+phone+they+re+the+reason+you+can+call+nine+hundred+and+eleven+and+get+someone+on+the+other+line
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+control+our+nation+s+entire+infrastructure+they+re+the+reason+you+have+electricity++heat++clean+water+food+computers+control+our+military+equipment+everything+from+missile+silos+to+satellites+to+nuclear+defense+networks
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+of+these+things+are+made+possible
found 11 videos: [['/talks/marina_abramovic_an_art_made_of_trust_vulnerability_and_connection', '2015'], ['/talks/genevieve_von_petzinger_why_are_these_32_symbols_found_in_ancient_caves_all_over_europe', '2015'], ['/talks/tony_fadell_the_first_secret_of_design_is_noticing', '2015'], ['/talks/jim_holt_why_does_the_universe_exist', '2014'], ['/talks/kwame_anthony_appiah_is_religion_good_or_bad_this_is_a_trick_question', '2014'], ['/talks/chris_gerdes_the_future_race_car_150mph_and_no_driver', '2012'], ['/talks/amanda_burden_how_public_spaces_make_cities_work', '2014'], ['/talks/joshua_foer_feats_of_memory_anyone_can_do', '2012'], ['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013'], ['/talks/marusa_brada_the_science_of_snowflakes', '2015'], ['/talks/andy_yen_think_your_email_s_private_think_again', '2015']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+of+computers+and+therefore+because+of+cyber+and+when+something+goes+wrong+cyber+can+make+all+of+these+things+impossible
found 1 videos: [['/talks/chris_domas_the_1s_and_0s_behind_cyber_warfare', '2014']]
selected: /talks/chris_domas_the_1s_and_0s_behind_cyber_warfare
sleep 3 seconds to avoid blocking
------<398>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ChrisDowney_2013Z.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+headed+back+to+the+corner
found 8 videos: [['/talks/mohamed_hijri_a_simple_solution_to_the_coming_phosphorus_crisis', '2013'], ['/talks/elyn_saks_a_tale_of_mental_illness_from_the_inside', '2012'], ['/talks/chris_downey_design_with_the_blind_in_mind', '2013'], ['/talks/t_boone_pickens_let_s_transform_energy_with_natural_gas', '2012'], ['/talks/joshua_prager_in_search_of_the_man_who_broke_my_neck', '2013'], ['/talks/andrew_solomon_love_no_matter_what', '2013'], ['/talks/ramona_pierson_an_unexpected_place_of_healing', '2011'], ['/talks/doris_kim_sung_metal_that_breathes', '2012']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+head+west+en+route+to+a+braille+training+session+it+was+the+winter+of+two+thousand+and+nine++and+i+had+been+blind+for+about+a+year+things+were+going+pretty+well
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=safely+reaching+the+other+side++i+turned+to+the+left++pushed+the+auto+button+for+the+audible+pedestrian+signal++and+waited+my+turn+as+it+went+off+i+took+off
found 1 videos: [['/talks/chris_downey_design_with_the_blind_in_mind', '2013']]
selected: /talks/chris_downey_design_with_the_blind_in_mind
sleep 1 seconds to avoid blocking
------<399>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ChrisEmdin_2013S.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+is+an+aspiring+teacher+who+is+working+on+a+60+page+paper
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=based+on+some+age+old+education+theory+developed+by+some+dead+education+professor+wondering+to
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=herself+what+this+task+that+she+s+engaging+in
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=has+to+do+with+what+she+wants+to+do+with+her+life++which+is+be+an+educator+change+lives++and+spark+magic
error: request timeout
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+is+an+aspiring+teacher+in+a+graduate+school+of+education
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+is+watching+a+professor+babble+on+and+on+about+engagement
found 1 videos: [['/talks/christopher_emdin_teach_teachers_how_to_create_magic', '2014']]
selected: /talks/christopher_emdin_teach_teachers_how_to_create_magic
sleep 4 seconds to avoid blocking
------<400>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ChrisGerdes_2012X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=many+of+you+have+ever+gotten+behind+the+wheel+of+a+car+when+you+really+shouldn+t+have+been+driving
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=maybe+you+re+out+on+the+road+for+a+long+day+and+you+just+wanted+to+get+home++you+were
found 2 videos: [['/talks/kavita_ramdas_radical_women_embracing_tradition', '2010'], ['/talks/thomas_goetz_it_s_time_to_redesign_medical_data', '2011']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+you+felt+you+could+drive+a+few+more+miles
found 11 videos: [['/talks/chris_gerdes_the_future_race_car_150mph_and_no_driver', '2012'], ['/talks/larry_page_where_s_google_going_next', '2014'], ['/talks/colin_grant_how_our_stories_cross_over', '2014'], ['/talks/phil_plait_how_to_defend_earth_from_asteroids', '2011'], ['/talks/ben_saunders_to_the_south_pole_and_back_the_hardest_105_days_of_my_life', '2014'], ['/talks/lisa_kristine_photos_that_bear_witness_to_modern_slavery', '2012'], ['/talks/scott_fraser_why_eyewitnesses_get_it_wrong', '2012'], ['/talks/tim_jackson_an_economic_reality_check', '2010'], ['/talks/anna_mracek_dietrich_a_plane_you_can_drive', '2011'], ['/talks/eddy_cartaya_my_glacier_cave_discoveries', '2013'], ['/talks/gavin_pretor_pinney_cloudy_with_a_chance_of_joy', '2013']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=maybe+you+thought++i+ve+had+less+to+drink+than+everybody+else++i+should+be+the+one+to+go+home++or+maybe+your+mind+was+just+entirely+elsewhere
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=does+this+sound+familiar+to+you+now+in+those+situations+wouldn+t+it+be+great+if+there+was+a+button+on+your+dashboard
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+you+could+push+and+the+car+would+get+you+home+safely+now+that+s+been+the+promise
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+autonomous+vehicle++and+it+s+been+the+dream+since+at+least+one+thousand+nine+hundred+and+thirty+nine+when+general+motors+showcased+this+idea+at+their+futurama+booth+at+the+world+s+fair
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+it+s+been+one+of+those+dreams+that+s+always+seemed+about+twenty+years+in+the+future
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now++two+weeks+ago+that+dream+took+a+step+forward+when+the+state+of+nevada+granted+google+s+self+driving+car+the+very+first+license+for+an+autonomous+vehicle
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=clearly+establishing+that+it+s+legal+for+them+to+test+it+on+the+roads+in
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+california+s+considering+similar+legislation
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+would+make+sure+that+the+autonomous+car+is+not+one+of+those+things+that+has+to+stay+in+vegas
found 1 videos: [['/talks/chris_gerdes_the_future_race_car_150mph_and_no_driver', '2012']]
selected: /talks/chris_gerdes_the_future_race_car_150mph_and_no_driver
sleep 5 seconds to avoid blocking
------<401>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ChrisHadfield_2014.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=scariest+thing+you+ve+ever+done
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+another+way+to+say+it+is+what+s+the+most+dangerous+thing+that+you+ve+ever+done++and
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+know+what+the+most+dangerous+thing+is+that+i+ve+ever+done+because+nasa+does+the+math+you+look+back+to+the+first+five+shuttle+launches+the+odds
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+a+catastrophic+event+during+the+first+five+shuttle+launches+was+one+in+nine
found 1 videos: [['/talks/chris_hadfield_what_i_learned_from_going_blind_in_space', '2014']]
selected: /talks/chris_hadfield_what_i_learned_from_going_blind_in_space
sleep 2 seconds to avoid blocking
------<402>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ChrisJordan_2008.stm
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=behaviors+that+we+all+engage+in+unconsciously+on+a+collective+level
found 1 videos: [['/talks/chris_jordan_turning_powerful_stats_into_art', '2008']]
selected: /talks/chris_jordan_turning_powerful_stats_into_art
sleep 3 seconds to avoid blocking
------<403>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ChrisKluwe_2014.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+professional+football+have+to+do+with+empathy+and+what+is+the+air+speed+velocity+of+an+unladen+swallow+now+unfortunately
found 1 videos: [['/talks/chris_kluwe_how_augmented_reality_will_change_sports_and_build_empathy', '2014']]
selected: /talks/chris_kluwe_how_augmented_reality_will_change_sports_and_build_empathy
sleep 4 seconds to avoid blocking
------<404>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ChrisMcKnett_2013S.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=world+is+changing+in+some+really+profound+ways
found 11 videos: [['/talks/chris_mcknett_the_investment_logic_for_sustainability', '2014'], ['/talks/jay_silver_hack_a_banana_make_a_keyboard', '2013'], ['/talks/martin_jacques_understanding_the_rise_of_china', '2011'], ['/talks/amory_lovins_a_40_year_plan_for_energy', '2012'], ['/talks/chris_downey_design_with_the_blind_in_mind', '2013'], ['/talks/rob_knight_how_our_microbes_make_us_who_we_are', '2015'], ['/talks/jonas_gahr_store_in_defense_of_dialogue', '2012'], ['/talks/lord_nicholas_stern_the_state_of_the_climate_and_what_we_might_do_about_it', '2014'], ['/talks/jonathan_haidt_religion_evolution_and_the_ecstasy_of_self_transcendence', '2012'], ['/talks/sherry_turkle_connected_but_alone', '2012'], ['/talks/mark_raymond_victims_of_the_city', '2012']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+worry+that+investors+aren+t+paying+enough+attention+to+some+of+the+biggest+drivers+of+change+especially+when+it+comes+to+sustainability
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+by+sustainability++i+mean+the+really+juicy+things+like+environmental+and+social+issues
found 1 videos: [['/talks/chris_mcknett_the_investment_logic_for_sustainability', '2014']]
selected: /talks/chris_mcknett_the_investment_logic_for_sustainability
sleep 4 seconds to avoid blocking
------<405>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ChrisMilk_2015.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=virtual+reality+started+for+me+in+sort+of+an+unusual+place+it+was+the
found 1 videos: [['/talks/chris_milk_how_virtual_reality_can_create_the_ultimate_empathy_machine', '2015']]
selected: /talks/chris_milk_how_virtual_reality_can_create_the_ultimate_empathy_machine
sleep 3 seconds to avoid blocking
------<406>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ChrisMilk_2016.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+was+a+kid+i+experienced+something+so+powerful++i+spent+the+rest+of+my+life+searching+for+it+and+in+all
found 1 videos: [['/talks/chris_milk_the_birth_of_virtual_reality_as_an_art_form', '2016']]
selected: /talks/chris_milk_the_birth_of_virtual_reality_as_an_art_form
sleep 1 seconds to avoid blocking
------<407>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ChristianaFigueres_2016.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+have+one+more+reason+for+optimism+climate+change+maybe+you+don+t+believe+it++but+here+is+the+fact
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+december+twelve++two+thousand+and+fifteen
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+ve+worked+with+governments+you+know+how+difficult+that+is
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=unanimously+decided+to+intentionally+change+the+course+of+the+global+economy+in+order+to+protect+the+most+vulnerable
found 1 videos: [['/talks/christiana_figueres_the_inside_story_of_the_paris_climate_agreement', '2016']]
selected: /talks/christiana_figueres_the_inside_story_of_the_paris_climate_agreement
sleep 3 seconds to avoid blocking
------<408>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ChristienMeindertsma_2010G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+would+like+to+start+my+talk+with+actually+two+questions+and+the+first+one+is+how+many+people+here+actually+eat+pig+meat+please+raise+your+hand+oh+that+s
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+lot+and+how+many+people
found 8 videos: [['/talks/steven_johnson_the_web_as_a_city', '2008'], ['/talks/kent_larson_brilliant_designs_to_fit_more_people_in_every_city', '2012'], ['/talks/srdja_popovic_how_to_topple_a_dictator', '2011'], ['/talks/stanley_mcchrystal_listen_learn_then_lead', '2011'], ['/talks/michael_norton_how_to_buy_happiness', '2012'], ['/talks/jessica_jackley_poverty_money_and_love', '2010'], ['/talks/christina_greer_gerrymandering_how_drawing_jagged_lines_can_impact_an_election', '2012'], ['/talks/mechai_viravaidya_how_mr_condom_made_thailand_a_better_place_for_life_and_love', '2010']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+actually+seen+a+live+pig+producing+this+meat+in+the+last+year
found 10 videos: [['/talks/christien_meindertsma_how_pig_parts_make_the_world_turn', '2010'], ['/talks/mark_bittman_what_s_wrong_with_what_we_eat', '2008'], ['/talks/anil_ananthaswamy_what_it_takes_to_do_extreme_astrophysics', '2011'], ['/talks/auret_van_heerden_making_global_labor_fair', '2010'], ['/talks/patricia_burchat_shedding_light_on_dark_matter', '2008'], ['/talks/sheryl_wudunn_our_century_s_greatest_injustice', '2010'], ['/talks/romulus_whitaker_the_real_danger_lurking_in_the_water', '2010'], ['/talks/dennis_wildfogel_how_big_is_infinity', '2012'], ['/talks/freeman_dyson_let_s_look_for_life_in_the_outer_solar_system', '2008'], ['/talks/daniel_wolpert_the_real_reason_for_brains', '2011']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+netherlands+where+i+come+from+you+actually+never+see+a+pig+which+is+really+strange+because+on+a+population+of+sixteen+million+people+we+have+twelve+million+pigs
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+well+of+course+the+dutch+can+t+eat+all+these+pigs+they+eat+about+one+third+and+the+rest+is+exported+to+all+kinds+of+countries+in+europe+and+the+rest+of+the+world+a+lot+goes+to+the
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+what+i+was+curious+about+because+historically+the+whole+pig+would+be+used+up+until+the+last+bit+so+nothing+would+be+wasted+and+i+was+curious
found 1 videos: [['/talks/christien_meindertsma_how_pig_parts_make_the_world_turn', '2010']]
selected: /talks/christien_meindertsma_how_pig_parts_make_the_world_turn
sleep 2 seconds to avoid blocking
------<409>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ChristinaWarinner_2012U.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+you+ever+wondered+what+is+inside+your+dental+plaque
found 1 videos: [['/talks/christina_warinner_tracking_ancient_diseases_using_plaque', '2012']]
selected: /talks/christina_warinner_tracking_ancient_diseases_using_plaque
sleep 3 seconds to avoid blocking
------<410>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ChristineSunKim_2015F.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+favorite+musical+symbol+it+means+to+play+softly+if+you+re+playing+a+musical+instrument+and+you+notice+a+p+in+the
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+need+to+play+softer+two+p+s+even+softer++four+p+s+extremely+soft
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+my+drawing+of+a+p+tree
found 1 videos: [['/talks/christine_sun_kim_the_enchanting_music_of_sign_language', '2015']]
selected: /talks/christine_sun_kim_the_enchanting_music_of_sign_language
sleep 3 seconds to avoid blocking
------<411>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ChristophAdami_2011X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+have+a+strange+career++i+know+it+because+people+come+up+to+me+like+colleagues+and+say+chris++you+have+a+strange+career
found 1 videos: [['/talks/christoph_adami_finding_life_we_can_t_imagine', '2011']]
selected: /talks/christoph_adami_finding_life_we_can_t_imagine
sleep 2 seconds to avoid blocking
------<412>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ChristopherBell_2015X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+spend+most+of+my+time+thinking+about+little+girls
found 16 videos: [['/talks/sandra_aamodt_why_dieting_doesn_t_usually_work', '2014'], ['/talks/christopher_bell_bring_on_the_female_superheroes', '2016'], ['/talks/chetan_bhatt_dare_to_refuse_the_origin_myths_that_claim_who_you_are', '2017'], ['/talks/hugh_evans_what_does_it_mean_to_be_a_citizen_of_the_world', '2016'], ['/talks/deeyah_khan_what_we_don_t_know_about_europe_s_muslim_kids', '2017'], ['/talks/leslie_morgan_steiner_why_domestic_violence_victims_don_t_leave', '2013'], ['/talks/mitch_resnick_let_s_teach_kids_to_code', '2013'], ['/talks/shonda_rhimes_and_cyndi_stivers_the_future_of_storytelling', '2017'], ['/talks/gretchen_carlson_david_brooks_political_common_ground_in_a_polarized_united_states', '2017'], ['/talks/joel_selanikio_the_big_data_revolution_in_health_care', '2013'], ['/talks/io_tillett_wright_fifty_shades_of_gay', '2013'], ['/talks/young_ha_kim_be_an_artist_right_now', '2013'], ['/talks/caroline_paul_to_raise_brave_girls_encourage_adventure', '2017'], ['/talks/khadija_gbla_my_mother_s_strange_definition_of_empowerment', '2015'], ['/talks/suzanne_talhouk_don_t_kill_your_language', '2014'], ['/talks/adam_foss_a_prosecutor_s_vision_for_a_better_justice_system', '2016']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+is+kind+of+a+weird+thing+for+a+grown+man+in+our+society+to+say
found 4 videos: [['/talks/christopher_bell_bring_on_the_female_superheroes', '2016'], ['/talks/audrey_choi_how_to_make_a_profit_while_making_a_difference', '2016'], ['/talks/helen_czerski_the_fascinating_physics_of_everyday_life', '2017'], ['/talks/scott_galloway_how_amazon_apple_facebook_and_google_manipulate_our_emotions', '2017']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+do+i+spend+most+of+my+time+thinking+about+little+girls+and+i+think+it+s+primarily+because+i+have+one
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+one+s+mine++and+i+think+you+would+really+like+her+she+is+smart+and+funny+and+kind+to+people+and+a+good+friend
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+when+i+talk+about+my+daughter+the+word+i+find+myself+saying+most+is+athlete
found 1 videos: [['/talks/christopher_bell_bring_on_the_female_superheroes', '2016']]
selected: /talks/christopher_bell_bring_on_the_female_superheroes
sleep 1 seconds to avoid blocking
------<413>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ChristopherDeam_2002.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+asked+by+wilsonart+international+a+plastic+laminate+company+which+is+the+largest+plastic
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=laminate+company+in+the+world+they+asked+me+to
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=design+a+trade+show+booth+for+exhibition+at+the+international
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=contemporary+furniture+fair+in+new+york+in+two+thousand
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+looking+at+their+three+main+markets+for+their+product+which+were+basically
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=transportation+design++interiors+and+furniture
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+came+up+with+the+solution+of+taking+an+old+airstream+trailer+and+gutting+it+and+trying+to+portray+laminate
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+a+trailer+in+kind+of+a+fresh+new+contemporary+look+when+this+trailer
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=showed+up+at+my+shop+in+berkeley+i+d+actually+never+stepped+foot+in+an+airstream+trailer+or+any+other+trailer+so+i+can+be+somebody+that+can+look+at+this+in+a+totally+fresh+perspective+and+see+if+i+can+optimize+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+its+most+idealistic+fashion+i+decided+i+had+to+do+some+research+and+really+figure+out+what+had+gone+wrong
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=somewhere+along+the+history+of+airstream++what+i+discovered+in+these+interiors+is+that+there+was+a+disconnect+between+the+exterior+shell
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+interior+architecture+of+the+pieces+in+that+the+shell+was+originally+conceived+as+a+lightweight
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=modern++futuristic+high+tech+pod+for+hurtling+down+the+freeway++and+the+interiors+were+completely+out+of+sync
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+that+in+fact+it+appeared+like+they
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=referenced+a+mountain+cabin+that+seemed+really+like+a+crisis+to+me+that+they+had+never+been+able+to+develop+a+vocabulary+about+escape
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+about+travel+and+modernity+in+this+trailer+that+was+consistent+with+the+shell+we+really+needed+to+do+some+archeology+in+the+trailer+itself+to+figure+out+what+s+authentic+in
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=an+airstream+trailer+and+what+feels+like+it+has+true+purpose+and+utility++we+stripped+out+all+the+vinyl+and+zolatone+paint+that+was+covering+up+this+just+fantastic
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=aluminum+shell+we+took+off+all+the+visible+hardware+and+trim+that+was+kind+of+doing+the+country+cabin+thing+i+literally+drew+on+the+walls+of+the+trailer+mocked+it+up+in+cardboard+we+d+come+in+and+cut
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=decide+things+were+wrong+pull+it+out+put+it+back+in+the+main+goal+was+to+smooth+out+the+interior++and+begin+to+speak+about+motion
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+mobility++and+independence+the+biggest+difficulty+on+one+of+these+trailers+is+that+when+you+re+designing+there+s+actually+no+logical+place+to+stop+and+start+materials+because+of+the+continuous+form
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+the+trailer+there+s+no+such+things+as+two+walls+and+a+ceiling+coming+together+where+you+can+change
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=materials+and+shapes+so+that+became+a+challenge++compounding+that+the+material+of+choice+laminate+that+i+was+trying+to+highlight+only+bends+in+two+dimensions
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+a+compound+curve+interior+what+i+had+to+devise+was+a+way
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=into+believing+that+all+these+panels+are+curved+with+the+shell+what+i+came+up+with+was+a+series+of+second+skins+that+basically+float
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+what+i+was+trying+to+do+there+was+direct+your+eye+in+the+space+so+that+you+would+perceive+the+geometry+in+a+different+way+and+that+the+casework+wouldn
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+also+gave+us+a+way+to+run+power+and+rewire+the+trailer+without+tearing+out+the+skin+so+they+function+as+an+electrical+chase++that+s+the+trailer+pretty+much+finished
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+trailer+led+to+another+commission+to+participate+in+whats+called+tokyo+designers+block+its+a+week+of+furniture+design+events+in+tokyo+in+october++teruo+kurosaki++who+owns+a+furniture+company+called
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+ship+him+two+trailers+to+tokyo++he+said+one
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+would+like+to+make+a+real+trailer+functioning+and+we+would+sell+that+one+trailer+number+two+you+have+a+blank+slate+you+can+to+anything+you+want++we+came+up+with+a+fantasy+scenario
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+a+dj+traveling+around+the+states+that+would+collect+records+and+go+on+tours+this+trailer
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=integrated+sound+system+it+s+got+a+huge+couch+fits+quite+a+few+people+and+basically+we+d+had+a+great+time+with+this+and+so+in+this+trailer+i+took+it+upon+myself+to+think+about
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=travel++and+escape+in+an+idiosyncratic+sense++a+lot+of+these+ideas+migrated+into+the+production+trailers+for+airstream
found 0 videos: []
error: no video is found.
sleep 4 seconds to avoid blocking
------<414>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ChristopherdeCharms_2008.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=raise+your+arms+and+wave+back+just+the+way+i+am+kind+of+a+royal+wave
found 1 videos: [['/talks/christopher_decharms_a_look_inside_the_brain_in_real_time', '2008']]
selected: /talks/christopher_decharms_a_look_inside_the_brain_in_real_time
sleep 3 seconds to avoid blocking
------<415>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ChristopherMcDougall_2010X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=been+doing+it+for+two+million+years++so+it+s+kind+of+arrogant+to+assume+that+i+ve+got+something+to+say+that+hasn+t+been+said+and+performed+better+a+long+time+ago
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+cool+thing+about+running+as+i+ve+discovered+is+that+something+bizarre+happens+in+this+activity+all+the+time++case+in+point+a
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=couple+months+ago+if+you+saw+the+new+york+city+marathon++i+guarantee+you+you+saw+something+that+no+one+has+ever+seen+before
found 1 videos: [['/talks/christopher_mcdougall_are_we_born_to_run', '2011']]
selected: /talks/christopher_mcdougall_are_we_born_to_run
sleep 4 seconds to avoid blocking
------<416>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ChristopherPoole_2010.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=group+of+kids+and+they+like+to+say+funny+words+like+barrel+roll+it+s+a+video+game+move+from+star+fox
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=found+this+website+called+futaba+channel+and+it+was+a+japanese+forum+and+imageboard+that
found 1 videos: [['/talks/christopher_moot_poole_the_case_for_anonymity_online', '2010']]
selected: /talks/christopher_moot_poole_the_case_for_anonymity_online
sleep 1 seconds to avoid blocking
------<417>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ChristopherRyan_2013.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+go+off+script+and+make+chris+quite+nervous+here+by+making+this+audience+participation+all+right+are+you+with+me
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=yeah++yeah+all+right+so+what+i+d+like+to+do+is+have+you+raise+your+hand+if+you+ve+ever+heard+a
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=could+be+the+neighbors+hotel+room+your+parents++sorry
found 1 videos: [['/talks/christopher_ryan_are_we_designed_to_be_sexual_omnivores', '2014']]
selected: /talks/christopher_ryan_are_we_designed_to_be_sexual_omnivores
sleep 5 seconds to avoid blocking
------<418>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ChristopherSoghoian_2013U.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+two+thousand+and+eleven+arab+spring+captured+the+attention+of+the+world
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+also+captured+the+attention+of+authoritarian+governments+in+other+countries+who+were+worried+that+revolution+would+spread
found 1 videos: [['/talks/christopher_soghoian_government_surveillance_this_is_just_the_beginning', '2014']]
selected: /talks/christopher_soghoian_government_surveillance_this_is_just_the_beginning
sleep 5 seconds to avoid blocking
------<419>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ChristopherSoghoian_2015U.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+more+than+one+hundred+years+the+telephone+companies+have+provided+wiretapping+assistance+to+governments
found 1 videos: [['/talks/christopher_soghoian_how_to_avoid_surveillance_with_the_phone_in_your_pocket', '2015']]
selected: /talks/christopher_soghoian_how_to_avoid_surveillance_with_the_phone_in_your_pocket
sleep 1 seconds to avoid blocking
------<420>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ChristopherSoghoian_2016T.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+spring+of+two+thousand+and+sixteen+a+legal+battle+between+apple+and+the+federal+bureau+of+investigation+captured+the+world+s+attention
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=apple+has+built+security+features+into+its+mobile+products+which+protect+data+on+its+devices+from+everyone+but+the+owner+that+means+that+criminals
found 1 videos: [['/talks/christopher_soghoian_your_smartphone_is_a_civil_rights_issue', '2016']]
selected: /talks/christopher_soghoian_your_smartphone_is_a_civil_rights_issue
sleep 1 seconds to avoid blocking
------<421>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ChrisUrmson_2015.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=karl+benz+invented+the+automobile++later+that+year++he+took+it+out+for+the+first+public+test+drive+and+true+story
found 1 videos: [['/talks/chris_urmson_how_a_driverless_car_sees_the_road', '2015']]
selected: /talks/chris_urmson_how_a_driverless_car_sees_the_road
sleep 5 seconds to avoid blocking
------<422>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ChrystiaFreeland_2013G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+s+the+most+important+economic+fact+of+our+time
found 7 videos: [['/talks/timothy_bartik_the_economic_case_for_preschool', '2013'], ['/talks/peter_diamandis_abundance_is_our_future', '2012'], ['/talks/deborah_rhodes_a_test_that_finds_3x_more_breast_tumors_and_why_it_s_not_available_to_you', '2011'], ['/talks/james_hansen_why_i_must_speak_out_about_climate_change', '2012'], ['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013'], ['/talks/alex_wissner_gross_a_new_equation_for_intelligence', '2014'], ['/talks/robert_neuwirth_the_power_of_the_informal_economy', '2012']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+are+living+in+an+age+of+surging+income+inequality++particularly+between+those+at+the+very+top+and+everyone+else
found 1 videos: [['/talks/chrystia_freeland_the_rise_of_the_new_global_super_rich', '2013']]
selected: /talks/chrystia_freeland_the_rise_of_the_new_global_super_rich
sleep 2 seconds to avoid blocking
------<423>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CKWilliams_2001.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+thought+i+would+read+poems+i+have+that+relate+to+the+subject+of+youth+and+age+i+was
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sort+of+astonished+to+find+out+how+many+i+have+actually+the+first+one+is+dedicated+to+spencer
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+his+grandmother+who+was+shocked+by+his+work+my+poem+is
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+grandmother+is+washing+my+mouth+out+with+soap
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=half+a+long+century+gone+and+still+she+comes+at+me+with+that+thick+cruel+yellow+bar
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+because+of+a+word+i+said+not+even+said+really+only+repeated+but
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+know+now+her+life+was+hard+she+lost+three+children+as+babies+then+her+husband+died+too+leaving+young+sons+and+no+money
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=she+d+stand+me+in+the+sink+to+pee+because+there+was+never+room+in+the+toilet+but+oh+her+soap+might+its+bitter+burning+have+been+what+made+me+a+poet
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+street+she+lived+on+was+unpaved
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=her+flat+two+cramped+rooms+and+a+fetid+kitchen+where+she+stalked+and+caught+me
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=dare+i+admit+that+after+she+did+it+i+never+really+loved+her+again+she+lived+to+a+hundred+even+then
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+along+it+was+the+sadness+the+squalor+but+i+never+until+now+loved+her+again
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+that+was+published+in+a+magazine+i+got+an+irate+letter+from+my+uncle
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+have+maligned+a+great+woman+it+took+some
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=diplomacy++this+is+called+the+dress+it+s+a+longer+poem
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+exist+for+me+only+as+the+most+elusive+memory+now
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+often+the+first+sound+you+d+hear+in+the+morning+would+be+a+storm+of+birdsong+then+the+soft+clop+of+the+hooves+of+the+horse+hauling+a+milk+wagon+down+your+block
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+last+sound+at+night+as+likely+as+not+would+be+your+father+pulling+up+in+his+car+having+worked+late+again++always+late+and+going
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=heavily+down+to+the+cellar+to+the+furnace+to+shake+out+the+ashes+and+damp+the+draft+before+he+came+upstairs+to+fall+into+bed
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+those+long+ago+days+women+my+mother++my+friends++mothers+our+neighbors+all+the+women+i+knew+wore+often+much+of+the+day+what+were+called+housedresses
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=shapeless+light+cotton+shifts+that+you+wore+over+your+nightgown+and+when+you+had+to+go+look+for+a+child+hang+wash+on+the+line+or+run+down
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+the+grocery+store+on+the+corner+under+a+coat++the+twisted+hem+of+the+nightgown+always+lank+and+yellowed+dangling+beneath
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=their+hair+in+preparation+for+some+great+event+a+ball+one+would+think+that+never+came+to+pass
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=more+than+the+way+most+women+s+faces+not+only+were+never+made+up+during+the+day+but+seemed+scraped++bleached+and+with+their+plucked+eyebrows+scarily+masklike
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=more+than+all+that+it+was+those+dresses+that+made+women+so+unknowable+and+forbidding
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=adepts+of+enigmas+to+which+men+could+have+no+access++and+boys+no+conception
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=only+later+would+i+see+the+dresses+also+as+a+proclamation+that
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+your+dim+kitchen+your+laundry+your+bleak+concrete+yard+what+you+revealed+of+yourself+was+a+fabulation+your+real+sensual+nature
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=veiled+in+those+sexless+vestments+was+utterly+your+dominion
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+those+days+one+hid+much+else+as+well+grown+men+didn+t+embrace+one+another++unless+someone+had+died+and+not+always+then+you+shook+hands+or+at+a+ball+game+thumped+your+friend+s+back
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+exchanged+blows+meant+to+be+codes+for+affection
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=once+out+of+childhood+you+d+never+again+know+the+shock+of+your+father+s+whiskers+on+your+cheek+not+until+mores+at+last+had+evolved++and
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+could+hug+another+man++then+hold+on+for+a+moment++then+even+kiss
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+much+unspoken+joy+there+was+in+that+affirmation+of+equality+and+communion+no+matter+how+much+misunderstanding+and+pain+had+passed+between+you+by+then
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+knew+so+little+in+those+days+as+little+as+now+i+suppose+about+healing+those+hurts
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=their+best+dresses+with+beads+and+sequins+sewn+on+the+bodices+even+in+lipstick+and+mascara+their+hair+aflow+could+only+stand+wringing
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=their+hands+begging+for+peace++while+father+and+son+like+thugs+like+thieves+like+romans++simmered+and+hissed+and+hated
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=through+the+kiss+and+embrace++bleeding+from+brother+to+brother+into+the+generations
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+those+days+there+was+still+countryside+close+to+the+city++farms++cornfields+cows+even+not+far+from+our+building+with+its
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=blurred+brick+and+long+shadowy+hallway+you+could+find+tracts+with+hills+and+trees+you+could+pretend+were+mountains+and+forests
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=empty+lot+into+the+bushes+like+a+creature+of+leaves+you+d+lurk++crouched+crawling++simplified+savage+alone
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=already+there+was+wanting+to+be+simpler+wanting+when+they+called+you+never+to+go+back
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+another+longish+one+about+the+old+and+the+young++it+actually+happened+right+at+the+time+we+met+part+of+the+poem+takes+place
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+space+we+shared+and+time+we+shared+it+s+called+the+neighbor
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=her+five+horrid++deformed+little+dogs+who+incessantly+yap+on+the+roof+under+my+window
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=her+cats++god+knows+how+many+who+must+piss+on+her+rugs+her+landing+s+a+sickening+reek
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=her+shadow+once+fumbling+the+chain+on+her+door+then+the+door+slamming+fearfully
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=only+the+barking+and+the+music+jazz+filtering+as+it+does+day+and+night+into+the+hall
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+time+it+was+chris+connor+singing+lush+life
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+it+brought+back+my+college+sweetheart+my+first+real+love++who+till+i+left+her+played+the+same+record+and+head+on+my
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=shoulder+hand+on+my+thigh++sang+sweetly+along+of+regrets+and+depletions+she+was+too
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=young+for+as+i+was+too+young+later+to+believe+in+her+pain+it+startled+then+bored+then+repelled+me
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+starting+to+fancy+she+d+ended+up+in+this+fire+trap+in+the+village+that+my+neighbor+was+her++my+thinking+we+d+meet++recognize+one+another++become+friends+that+i+d+accomplish+a+penance
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+the+mailbox+gray+yellow+hair+army+pants+under+a+nightgown+her+turning+away++hiding+her+ravaged+face+in+her+hands+muttering+an+inappropriate+hi
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sometimes+there+are+frightening+goings+on+in+the+stairwell+a+man+shouting
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+dogs+frantically+snarling+claws+scrabbling++then+her+her+voice+hoarse++harsh+hollow++almost+only+a+tone++incoherent
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+note++a+squawk++bone+on+metal+metal+gone+molten+calling+them+back+come+back+darlings++come+back+dear+ones+my+sweet+angels+come+back
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+the+sidewalk+ragged+coat+hanging+agape++passersby+flowing+around+her+her+mouth+torn+suddenly+open+as+though+in+a+scream
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=silently+though+as+though+only+in+her+brain+or+breast+had+it+erupted++a+cry+so+pure++practiced++detached+it+had+no+need+of+a+voice+or+could+no+longer+bear+one
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+invisible+links+that+allure++these+transfigurations++even+of+anguish+that+hold+us++the+girl+my+old+love
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+last+lost+time+i+saw+her+when+she+came+to+find+me+at+a+party++her+drunkenly+stumbling+falling+sprawling+skirt+hiked+eyes
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=veined+red+swollen+with+tears+her+shame++her+dishonor
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+ignorant+arrogant+coarseness+my+secret+pride++my+turning+away
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=still+life+on+a+rooftop+dead+trees+in+barrels+a+bench+broken+dogs+excrement+sky++what+pathways+through+pain+what+junctures+of
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+crossings+and+counterings+too+many+lives+in+our+lives+already+too+many+chances+for+sorrow+too+many
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=pasts+behold+me+the+god+of+frenzied+inexhaustible+love+says++rising+in+bloody+splendor+behold+me
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=her+making+her+way+down+the+littered+vestibule+stairs+one+agonized+step+at+a+time+my+holding+the+door
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=her+crossing+the+fragmented+tiles++faltering+at+the+step+to+the+street+droning+not+looking+at+me+can+you+help+me
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=taking+my+arm++leaning+lightly+against+me
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=her+wavering+step+into+the+world+her+whispering
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=wouldn+t+it+be+nice+i+think++when+the
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+doctor+s+waiting+room+bends+over+the+magazine+table+and+farts+just+a+little+and+violently+blushes
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=wouldn+t+it+be+nice+if+intestinal+gas+came+embodied+in+visible+clouds+so+she+could+see+that+her+really+quite+inoffensive+pop+had+only+barely+grazed+my+face+before
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+this+to+have+happened+now+is+a+nice+coincidence+because+not+an+hour+ago+while+we+were+on+our+walk+my+dog+was+startled+by+a+backfire+and+jumped+straight+up+like+a+horse+bucking
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+brought+back+to+me+the+stable+i+worked+on+weekends+when+i+was+twelve+and+a+splendid+piebald+stallion+who+whenever+he+was+mounted+would+buck+just+like
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=though+more+hugely+of+course+enormous+gleaming++resplendent++and+the+woman+her+face+abashedly+buried+in+her+elle+now++reminded+me
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+d+forgotten+that+not+the+least+part+of+my+awe+consisted+of+the+fact+that+with+every+jump+he+took+the+horse+would+powerfully+fart++phwap++phwap++phwap
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+steely+glinting+hooves+the+eruptions+driven+from+the+creature+s+mighty+innards
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=breath+stopped++heart+stopped++nostrils+madly+flared
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+didn+t+know+if+i+wanted+to+break+him
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=most+of+my+poems+actually+are+urban+poems+i+happen+to+be+reading+a+bunch+that+aren+t
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thirst+here+was+my+relation+with+the+woman+who+lived+all+last+autumn+and+winter+day+and+night+on+a+bench+in+the
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=station+until+finally+one+day+she+vanished
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=scrutinized+one+another+me+shyly+obliquely+trying+not+to+be+furtive+she+boldly++unblinkingly+even+pugnaciously+pugnaciously
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=wrathfully+even+when+her+bottle+was+empty
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+repressed+part+of+myself+would+go+out+of+control+and+i+d+be+forever+entrapped+in+the+shocking+seethe+of+her+stench
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+excrement+merely+not+merely+surface+and+orifice+going+unwashed+rediffusion+of+rum+there+was+will+in+it+and+intention+power+and
error: request timeout
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sometimes+i+d+think+i+should+take+her+home+with+me++bathe+her++comfort+her+dress+her+she+wouldn+t+have+wanted+me+to+i+would+think
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=instead+i+d+step+into+my+train+how+rich+i+would+think+is+the+lexicon+of+our
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+enduring+our+bland+fatal+assurance+that+reflection
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+dance+of+our+glances++the+clash+pulling+each+other+through+our+perceptual+punctures++then+holocaust+holocaust+host+on+host
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+ill+injured+presences++squandered+consumed
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=absolute+faithful+attendance++the+dance+of+our+glances
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+brand+new+poem++the+title+is+this+happened+a+student++a+young+woman
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+a+fourth+floor+hallway+of+her+lycee+perched+on+the+ledge+of+an+open+window+chatting+with+friends+between+classes
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+teacher+passes+and+chides+her+be+careful+you+might
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+young+woman++eighteen+a+girl+really+though+she+wouldn+t+think+that+as+brilliant+as+she+is+first+in+her+class+and+beautiful+too+she+s+often+told++smiles+back
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+leans+into+the+open+window+which+wouldn+t+even+be+open+if+it+were+winter+if+it+were+winter+someone+would+have+closed+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=still+smiling++farther+and+farther+though+it+takes+less+time+than+this+really+an+instant+and+lets+herself+fall
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+casual+impulse+a+fancy+never+thought+of+until+now+hardly+thought+of+even+now+no+more+than+impulse+or+fancy++the+girl+knows+what+she+s+doing+the+girl
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=means+something+the+girl+means+to+mean+because+it+occurs+to+her+in+that+instant+that+beautiful+or+not+bright+yes+or+no++she+s+not+who
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=she+is++she+s+not+the+person+she+is++and+the+reason+she+suddenly+knows
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is++it+s+not+her+or+not+wholly+her++it+s+a+self+inhabited+lived+in+by+her
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+seemingly+even+as+she+thinks+it+she+knows+what+s+been+missing+grace++not+premeditation+but+grace++a+kind+of+being+in+the+world+spontaneously+with+grace
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=weightfully+upon+me+was+the+world
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=weightfully+this+self+which+graced+the+world+yet+never+wholly+itself
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=weightfully+this+self+which+weighed+upon+me+the+release+from+which+is+what+i+desire+and+what+i+achieve
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+girl+remembers+in+this+infinite+instant+already+now+so+many+times+divided
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+sadness+she+felt+once+hardly+knowing+she+felt+it
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+merely+inhabit+herself+yes++the+girl+falls+absurd+to+fall++even+the+earth+with+its+compulsion+to+take+unto+itself+all+that
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=falls+must+know+that+falling+is+absurd+yet+the+girl+falling+isn+t+myself+or+she+is+myself+but+a+self+i+took+of+my+own+volition+unto
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=read+just+one+more+i+don+t+usually+say+that+i+like+to+just+end+but+i+m+afraid+that+ricky+will+come+out+here+and+shake+his+fist+at+me
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=says+the+advertisement+for+a+soft+core+magazine+on+our+neighborhood+newsstand
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+forget+her+breasts+a+lush+fresh+lipped+blond+skin+glowing+gold+sprawls+there+resplendent
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sixty+nearly++yet+these+hardly+tangible+hardly+better+than+harlots+can+still+stir+me
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=maybe+a+coming+of+age+in+the+american+sensual+darkness+never+seeing+an+unsmudged+nipple+an+uncensored+vagina+has
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=left+me+forever+infected+with+an+unquenchable+lust+of+the+eye++always+that+erotic+murmur+i+m+hardly+myself+if+i+m+not+in+a+state+of+incipient+desire
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+worse+twists+your+obsessions+can+take+last+year+in+israel++a+young+ultra+orthodox+rabbi+guiding+some+teenage+girls+through+the+shrine+of
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+shoah+forbade+them+to+look+in+one+room+because+there+were+images+in+it+he+said+were+licentious
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=too+frightened+to+bother+lined+up+in+snow+waiting+to+be+shot+and+thrown+into+a+ditch
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+girls+to+my+horror++averted+their+gaze+what+carnal+mistrust+had+their+teacher+taught+them
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=even+that+though+another+confession+once+in+a+book
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=an+absolute+angel+with+tormented+tormenting+eyes+i+kept+finding+myself+at+her+page+that+she+died+in+the+camps+made+her
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+didn+t+dare+wonder+why+more+present+more+precious
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+too+people+or+jews+anyway+kept+from+their+children+back+then+but+it+was+like+sex+you+didn+t+have+to
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=be+told++sex+and+death+how+close+they+can+seem
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+constantly+conscious+now+of+death+moving+towards+me++sometimes+i+think+i+confound+them
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+wife+s+loveliness+almost+consumes+me++my+passion+for+her+goes+beyond+reasonable+bounds+when+we+make+love
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=her+holding+me+everywhere+all+around+me+i+m+there+and+not+there+my+mind+teems++jumbles+of+faces+voices+impressions
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+live+my+life+over+as+though+i+were+drowning
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+despair+at+having+to+leave+her++this+everything+all+unbearable+awful
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+be+able+to+die+with+no+special+contrition+not+having+been+slaughtered+or+enslaved+and+not+having+to+know+history+s+next+mad+rage+or+regression
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+don+t+mean+that+for+a+moment++what+i+mean+is+the+world+holds+me+so+tightly+the+good+and+the+bad+my+own+follies+and+weakness+that+even+this+counterfeit+venus+with+her+sham
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=heat+and+her+bosom+probably+plumped+with+gel+so+moves+me+my+breath+catches
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=vamp++siren+seductress+how+much+more+she+reveals+in+her+glare+of+ink+than+she+knows
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+she+incarnates+our+desperate+human+need+for+regard
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=our+passion+to+live+in+beauty+to+be+beauty+to+be+cherished+by+glances+if+by+no+more
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
error: no video is found.
sleep 5 seconds to avoid blocking
------<424>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ClaronMcFadden_2010X.stm
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=soprano+singer+who+studied+in+rochester+new+york+her+celebrated+operatic+roles+are+numerous+and+varied
found 1 videos: [['/talks/claron_mcfadden_singing_the_primal_mystery', '2011']]
selected: /talks/claron_mcfadden_singing_the_primal_mystery
sleep 4 seconds to avoid blocking
------<425>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ClayShirky_2005G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+do+you+organize+a+group+of+individuals+so+that+the+output+of+the+group+is+something+coherent+and+of+lasting+value++instead+of+just+being+chaos++and+the+economic
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=framing+of+that+problem+is+called+coordination+costs
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+a+coordination+cost+is+essentially+all+of+the+financial+or+institutional+difficulties+in+arranging+group+output
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+ve+had+a+classic+answer+for+coordination+costs+which+is++if+you+want+to+coordinate+the+work+of+a+group+of+people+you+start+an+institution+right+you+raise+some+resources+you+found+something+it+can+be
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=private+or+public+it+can+be+for+profit+or+not+profit+it+can+be+large+or
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+you+get+these+resources+together+you+found+an+institution+and+you+use+the+institution+to+coordinate+the+activities+of+the+group
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=more+recently+because+the+cost+of+of+letting+groups+communicate+with+each+other+has+fallen+through+the+floor+and+communication+costs+are+one+of+the+big+inputs+to+coordination
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+has+been+a+second+answer+which+is+to+put+the+cooperation+into+the+infrastructure
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+design+systems+that+coordinate+the+output+of+the+group+as+a+by+product+of+the+operating+of+the+system
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=without+regard+to+institutional+models+so+that+s+what+i+want+to+talk+about+today++i+m+going+to+illustrate+it+with+some+fairly+concrete+examples+but+always
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=always+pointing+to+the+broader+themes+so+i
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=m+going+to+start+by+trying+to+answer+a+question+that+i+know+each+of+you+will+have+asked+yourself+at+some+point+or+other+and+which+the+internet+is++purpose+built+to+answer+which+is+where+can+i+get+a+picture+of+a++roller+skating
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+new+york+city+on+the+first+saturday+of+every+summer+coney+island+our+local+charmingly+run+down+amusement+park+hosts+the+mermaid+parade+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+an+amateur+parade+people+come+from+all+over+the+city+people+get+all+dressed+up+some+people+get+less+dressed+up
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=young+and+old++dancing+in+the+streets+colorful+characters++and+a+good+time+is+had+by+all++and+what+i+want+to+call+your+attention+to+is+not+the+mermaid+parade+itself+charming+though+it+is+but+rather+to+these+photos++i+didn+t+take+them
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+answer+is+i+got+them+from+flickr
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=flickr+is+a+photo+sharing+service+that+allows+people+to+take+photos++upload+them+share+them+over+the+web+and+so+forth
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=recently+flickr+has+added+an+additional+function+called+tagging+tagging+was+pioneered+by+delicious+and+joshua+schachter+delicious+is+a+social+bookmarking+service
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+i+had+given+this+talk+last+year+i+couldn+t+do+what+i+just+did++because+i+couldn+t+have+found+those+photos
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+instead+of+saying+we+need+to+hire+a+professional+class+of+librarians+to+organize+these+photos+once+they+re+uploaded+flickr+simply+turned+over+to+the+users+the+ability+to+characterize+the+photos
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+was+able+to+go+in+and+draw+down+photos+that+had+been+tagged+mermaid+parade
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+were+three+thousand+one+hundred+photos+taken+by+one+hundred+and+eighteen+photographers+all+aggregated+and+then+put+under+this+nice+neat+name
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=shown+in+reverse+chronological+order++and+i+was+then+able+to+go+and+retrieve+them+to+to+give+you+that+little+slideshow+now
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+hard+problem+is+being+solved+here
found 2 videos: [['/talks/dean_kamen_to_invent_is_to_give', '2007'], ['/talks/janine_benyus_biomimicry_s_surprising_lessons_from_nature_s_engineers', '2007']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+s+in+the+most+schematic+possible+view++it+s+a+coordination+problem
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=right+there+are+a+large+number+of+people+on+the+internet+a+very+small+fraction+of+them+have+photos+of+the+mermaid+parade+how+do+we+get+those+people+together+to+contribute+that+work
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+classic+answer+is+to+form+an+institution+right+to+draw+those+people+into+some+prearranged+structure+that+has+explicit+goals
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+want+to+call+your+attention+to+some+of
found 1 videos: [['/talks/seth_godin_how_to_get_your_ideas_to_spread', '2007']]
selected: /talks/seth_godin_how_to_get_your_ideas_to_spread
sleep 1 seconds to avoid blocking
------<426>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ClayShirky_2009S.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=transformed+media+landscape+and+what+it+means+for+anybody+who+has+a+message+that+they+want+to+get+out+to+anywhere+in+the+world
found 1 videos: [['/talks/clay_shirky_how_social_media_can_make_history', '2009']]
selected: /talks/clay_shirky_how_social_media_can_make_history
sleep 1 seconds to avoid blocking
------<427>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ClayShirky_2010S.stm
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+december+of+two+thousand+and+seven+when+there+was+a+disputed+presidential+election+and+in+the+immediate+aftermath+of+that+election
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+was+an+outbreak+of+ethnic+violence+and+there+was+a+lawyer+in+nairobi++ory+okolloh+who+some+of+you+may+know+from+her+tedtalk+who+began
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=blogging+about+it+on+her+site+kenyan+pundit
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+shortly+after+the+election+and+the+outbreak+of+violence
found 1 videos: [['/talks/clay_shirky_how_cognitive_surplus_will_change_the_world', '2010']]
selected: /talks/clay_shirky_how_cognitive_surplus_will_change_the_world
sleep 3 seconds to avoid blocking
------<428>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ClayShirky_2012G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+talk+to+you+today+about+something+the+open+source+programming+world+can+teach+democracy
found 1 videos: [['/talks/clay_shirky_how_the_internet_will_one_day_transform_government', '2012']]
selected: /talks/clay_shirky_how_the_internet_will_one_day_transform_government
sleep 4 seconds to avoid blocking
------<429>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ClayShirky_2012S.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sign+that+appeared+in+a+mom+and+pop+bakery+in+my+old+neighborhood+in+brooklyn+a+few+years+ago+the+store+owned+one+of+those+machines+that+can+print+on+plates
found 1 videos: [['/talks/clay_shirky_why_sopa_is_a_bad_idea', '2012']]
selected: /talks/clay_shirky_why_sopa_is_a_bad_idea
sleep 4 seconds to avoid blocking
------<430>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CliffordStoll_2006.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+delighted+to+be+here+i+m+honored
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+the+invitation+and+thanks+i+would+love+to+talk+about+stuff+that+i+m+interested+in+but+unfortunately+i+suspect+that+what+i+m+interested+in+won+t+interest+many+other+people
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=first+off+my+badge+says+i+m+an+astronomer+i+would+love+to+talk+about+my+astronomy++but+i+suspect+that+the+number+of
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+who+are+interested+in+radiative+transfer+in+non+gray+atmospheres+and+polarization+of+light+in+jupiter+s+upper+atmosphere+are+the+number+of+people+who+d+fit+in+a+bus+shelter++so
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+not+going+to+talk+about+that
found 3 videos: [['/talks/ory_okolloh_how_i_became_an_activist', '2008'], ['/talks/maira_kalman_the_illustrated_woman', '2007'], ['/talks/keith_barry_brain_magic', '2008']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+would+be+just+as+much+fun+to+talk+about+some+stuff+that+happened+in+one+thousand+nine+hundred+and+eighty+six+and+one+thousand+nine+hundred+and+eighty+seven+when+a+computer+hacker+is+breaking+into+our+our+systems
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+caught+the+guys+and+they+turned+out+to+be+working+for+what+was+then+the+soviet+kgb+and+stealing+information+and+selling+it+and+i+d+love+to+talk+about+that+and+it+d+be+fun
found 1 videos: [['/talks/clifford_stoll_the_call_to_learn', '2008']]
selected: /talks/clifford_stoll_the_call_to_learn
sleep 4 seconds to avoid blocking
------<431>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ClintSmith_2014S.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=speech+where+he+reflects+upon+the+civil+rights+movement++states+in+the+end+we+will+remember+not+the+words+of+our+enemies+but+the
found 1 videos: [['/talks/clint_smith_the_danger_of_silence', '2014']]
selected: /talks/clint_smith_the_danger_of_silence
sleep 2 seconds to avoid blocking
------<432>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ClintSmith_2015.stm
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+didn+t+always+understand+why+my+parents+made+me+follow+the+rules+that+they+did
found 1 videos: [['/talks/clint_smith_how_to_raise_a_black_son_in_america', '2015']]
selected: /talks/clint_smith_how_to_raise_a_black_son_in_america
sleep 5 seconds to avoid blocking
------<433>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ColinCamerer_2013X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=m+going+to+talk+about+the+strategizing+brain+we+re
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=going+to+use+an+unusual+combination+of+tools+from+game+theory+and+neuroscience+to+understand+how+people+interact+socially+when+value+is+on+the+line
found 1 videos: [['/talks/colin_camerer_when_you_re_making_a_deal_what_s_going_on_in_your_brain', '2013']]
selected: /talks/colin_camerer_when_you_re_making_a_deal_what_s_going_on_in_your_brain
sleep 2 seconds to avoid blocking
------<434>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ColinGrant_2012X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+a+photograph+of+a+man+whom+for+many+years+i+plotted+to+kill+this+is+my+father
found 2 videos: [['/talks/colin_grant_how_our_stories_cross_over', '2014'], ['/talks/paul_lewis_how_mobile_phones_helped_solve_two_murders', '2011']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=permanent+bags+under+his+eyes+as+a+10+year+old+along+with+my+siblings++i+dreamt+of
found 1 videos: [['/talks/colin_grant_how_our_stories_cross_over', '2014']]
selected: /talks/colin_grant_how_our_stories_cross_over
sleep 5 seconds to avoid blocking
------<435>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ColinPowell_2012X.stm
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=something+a+little+different+than+what+s+scheduled+foreign+policy+you+can
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=figure+that+out+by+watching+i+don+t+know+rachel+maddow+or+somebody+but+i+want+to+talk+about
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=young+people+and+structure+young+people+and+structure
found 14 videos: [['/talks/colin_powell_kids_need_structure', '2013'], ['/talks/nancy_duarte_the_secret_structure_of_great_talks', '2012'], ['/talks/kent_larson_brilliant_designs_to_fit_more_people_in_every_city', '2012'], ['/talks/iwan_baan_ingenious_homes_in_unexpected_places', '2013'], ['/talks/jared_diamond_how_societies_can_grow_old_better', '2013'], ['/talks/lawrence_lessig_re_examining_the_remix', '2010'], ['/talks/iain_hutchison_saving_faces_a_facial_surgeon_s_craft', '2011'], ['/talks/shirin_neshat_art_in_exile', '2011'], ['/talks/jer_thorp_make_data_more_human', '2012'], ['/talks/eric_berlow_and_sean_gourley_mapping_ideas_worth_spreading', '2013'], ['/talks/bastian_schaefer_a_3d_printed_jumbo_jet', '2013'], ['/talks/bill_gates_how_state_budgets_are_breaking_us_schools', '2011'], ['/talks/michelle_borkin_can_astronomers_help_doctors', '2012'], ['/talks/rodrigo_canales_the_deadly_genius_of_drug_cartels', '2013']]
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+a+school+in+brooklyn+new+york+at+cristo+rey+high+school+run+by+the+jesuits
found 1 videos: [['/talks/colin_powell_kids_need_structure', '2013']]
selected: /talks/colin_powell_kids_need_structure
sleep 2 seconds to avoid blocking
------<436>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ColinStokes_2012X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+favorite+part+of+being+a+dad+is+the+movies+i+get+to+watch
found 8 videos: [['/talks/colin_stokes_how_movies_teach_manhood', '2013'], ['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013'], ['/talks/diana_laufenberg_how_to_learn_from_mistakes', '2010'], ['/talks/david_brooks_the_social_animal', '2011'], ['/talks/rachel_botsman_the_case_for_collaborative_consumption', '2010'], ['/talks/hanna_rosin_new_data_on_the_rise_of_women', '2010'], ['/talks/hasan_elahi_fbi_here_i_am', '2011'], ['/talks/elif_shafak_the_politics_of_fiction', '2010']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+love+sharing+my+favorite+movies+with+my+kids++and+when+my+daughter+was+four+we+got+to+watch+the+wizard+of+oz+together
found 1 videos: [['/talks/colin_stokes_how_movies_teach_manhood', '2013']]
selected: /talks/colin_stokes_how_movies_teach_manhood
sleep 3 seconds to avoid blocking
------<437>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ConradWolfram_2010G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+ve+got+a+real+problem+with+math+education+right+now+basically+no+one+s+very+happy++those+learning+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=think+it+s+disconnected++uninteresting+and+hard++those+trying+to+employ+them+think+they+don+t+know+enough
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=governments+realize+that+it+s+a+big+deal+for+our+economies+but+don+t+know+how+to+fix+it++and+teachers+are+also+frustrated++yet+math
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+more+important+to+the+world+than+at+any+point+in+human+history
found 8 videos: [['/talks/stuart_brown_play_is_more_than_just_fun', '2009'], ['/talks/sarah_jayne_blakemore_the_mysterious_workings_of_the_adolescent_brain', '2012'], ['/talks/laura_carstensen_older_people_are_happier', '2012'], ['/talks/damon_horowitz_we_need_a_moral_operating_system', '2011'], ['/talks/andrew_mcafee_are_droids_taking_our_jobs', '2012'], ['/talks/stewart_brand_4_environmental_heresies', '2009'], ['/talks/brene_brown_the_power_of_vulnerability', '2010'], ['/talks/johan_rockstrom_let_the_environment_guide_our_development', '2010']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+at+one+end+we+ve+got+falling+interest+in+education+in+math+and+at+the+other+end+we+ve+got+a+more+mathematical+world
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+more+quantitative+world+than+we+ever+have+had
found 11 videos: [['/talks/conrad_wolfram_teaching_kids_real_math_with_computers', '2010'], ['/talks/james_balog_time_lapse_proof_of_extreme_ice_loss', '2009'], ['/talks/david_kelley_how_to_build_your_creative_confidence', '2012'], ['/talks/dean_ornish_healing_through_diet', '2008'], ['/talks/gary_wolf_the_quantified_self', '2010'], ['/talks/george_whitesides_a_lab_the_size_of_a_postage_stamp', '2010'], ['/talks/liz_coleman_a_call_to_reinvent_liberal_arts_education', '2009'], ['/talks/daphne_bavelier_your_brain_on_video_games', '2012'], ['/talks/e_o_wilson_advice_to_a_young_scientist', '2012'], ['/talks/rory_bremner_a_one_man_world_summit', '2009'], ['/talks/rogier_van_der_heide_why_light_needs_darkness', '2011']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+what+s+the+problem+why+has+this
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=opened+up+and+what+can+we+do+to+fix+it++well+actually+i+think+the+answer+is+staring+us+right+in+the+face+use+computers
error: request timeout
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+the+silver+bullet+for+making+math+education+work
found 1 videos: [['/talks/conrad_wolfram_teaching_kids_real_math_with_computers', '2010']]
selected: /talks/conrad_wolfram_teaching_kids_real_math_with_computers
sleep 2 seconds to avoid blocking
------<438>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CorneilleEwango_2007G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+born+in+the+western+congo+in+an+area
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+went+to+university+in+kisangani+and+after+i+finished+i+went+to+this+area+the+ituri+forest
found 1 videos: [['/talks/corneille_ewango_a_hero_of_the_congo_forest', '2008']]
selected: /talks/corneille_ewango_a_hero_of_the_congo_forest
sleep 3 seconds to avoid blocking
------<439>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CornielleEwango_2007G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+start+speaking+english+learning+english+about+a+year+ago+i+speak+french
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+grew+up+with+french++so+my+english+is+franglais
error: request timeout
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+western+congo+in+an+area+around+here
found 5 videos: [['/talks/corneille_ewango_a_hero_of_the_congo_forest', '2008'], ['/talks/misha_glenny_the_real_story_of_mcmafia_how_global_crime_networks_work', '2009'], ['/talks/hans_rosling_let_my_dataset_change_your_mindset', '2009'], ['/talks/isabel_allende_tales_of_passion', '2008'], ['/talks/chimamanda_ngozi_adichie_the_danger_of_a_single_story', '2009']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+went+to+university+in+kisangani++and+after+i+finished++i+went+to+this+area+the+ituri+forest
found 1 videos: [['/talks/corneille_ewango_a_hero_of_the_congo_forest', '2008']]
selected: /talks/corneille_ewango_a_hero_of_the_congo_forest
sleep 1 seconds to avoid blocking
------<440>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CosminMihaiu_2015U.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+was+growing+up+i+really+liked+playing+hide+and+seek
found 4 videos: [['/talks/cosmin_mihaiu_physical_therapy_is_boring_play_a_game_instead', '2015'], ['/talks/alice_goffman_how_we_re_priming_some_kids_for_college_and_others_for_prison', '2015'], ['/talks/laurel_braitman_depressed_dogs_cats_with_ocd_what_animal_madness_means_for_us_humans', '2014'], ['/talks/maysoon_zayid_i_got_99_problems_palsy_is_just_one', '2014']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+lot+one+time+though++i+thought+climbing+a+tree+would+lead+to+a+great+hiding+spot++but+i+fell
found 1 videos: [['/talks/cosmin_mihaiu_physical_therapy_is_boring_play_a_game_instead', '2015']]
selected: /talks/cosmin_mihaiu_physical_therapy_is_boring_play_a_game_instead
sleep 4 seconds to avoid blocking
------<441>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CourtneyMartin_2010W.stm
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+the+last+day+of+the+last+year+of+the++70s
found 17 videos: [['/talks/a_j_jacobs_my_year_of_living_biblically', '2008'], ['/talks/parag_khanna_mapping_the_future_of_countries', '2009'], ['/talks/adam_garone_healthier_men_one_moustache_at_a_time', '2012'], ['/talks/lauren_zalaznick_the_conscience_of_television', '2011'], ['/talks/greg_stone_saving_the_ocean_one_island_at_a_time', '2010'], ['/talks/hanna_rosin_new_data_on_the_rise_of_women', '2010'], ['/talks/courtney_e_martin_this_isn_t_her_mother_s_feminism', '2011'], ['/talks/shashi_tharoor_why_nations_should_pursue_soft_power', '2009'], ['/talks/christien_meindertsma_how_pig_parts_make_the_world_turn', '2010'], ['/talks/adam_davidson_what_we_learned_from_teetering_on_the_fiscal_cliff', '2012'], ['/talks/john_graham_cumming_the_greatest_machine_that_never_was', '2012'], ['/talks/arvind_gupta_turning_trash_into_toys_for_learning', '2011'], ['/talks/john_hunter_teaching_with_the_world_peace_game', '2011'], ['/talks/peter_diamandis_abundance_is_our_future', '2012'], ['/talks/samantha_power_a_complicated_hero_in_the_war_on_dictatorship', '2008'], ['/talks/mark_bittman_what_s_wrong_with_what_we_eat', '2008'], ['/talks/simon_berrow_how_do_you_save_a_shark_you_know_nothing_about', '2012']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+raised+on+free+to+be+you+and+me
found 6 videos: [['/talks/tony_porter_a_call_to_men', '2010'], ['/talks/philip_k_howard_four_ways_to_fix_a_broken_legal_system', '2010'], ['/talks/yann_arthus_bertrand_a_wide_angle_view_of_fragile_earth', '2009'], ['/talks/cameron_herold_let_s_raise_kids_to_be_entrepreneurs', '2010'], ['/talks/amy_purdy_living_beyond_limits', '2011'], ['/talks/nancy_duarte_the_secret_structure_of_great_talks', '2012']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+dad+facetiously+says+we+wanted+to+save+the+world+and+instead+we+just+got+rich
found 1 videos: [['/talks/courtney_e_martin_this_isn_t_her_mother_s_feminism', '2011']]
selected: /talks/courtney_e_martin_this_isn_t_her_mother_s_feminism
sleep 1 seconds to avoid blocking
------<442>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CourtneyMartin_2016.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+a+journalist++so+i+like+to+look+for+the+untold+stories+the+lives+that+quietly+play+out+under+the+scream+of+headlines
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+also+been+going+about+the+business+of+putting+down+roots++choosing+a
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=making+babies+so+for+the+last+few+years++i+ve+been+trying+to+understand+what+constitutes+the
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=good+life+both+because+i+m+fascinated+by+the+moral+and+philosophical+implications++but+also+because+i+m+in+desperate+need+of+answers+myself
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+fact+for+the+first+time+in+american+history++the+majority+of+parents+do+not+think+that+their+kids+will+be+better+off+than+they+were
found 7 videos: [['/talks/courtney_e_martin_the_new_american_dream', '2016'], ['/talks/bran_ferren_to_create_for_the_ages_let_s_combine_art_and_engineering', '2014'], ['/talks/ethan_nadelmann_why_we_need_to_end_the_war_on_drugs', '2014'], ['/talks/arthur_brooks_a_conservative_s_plea_let_s_work_together', '2016'], ['/talks/mark_tyndall_the_harm_reduction_model_of_drug_addiction_treatment', '2018'], ['/talks/alexis_jones_redefining_manhood_one_locker_room_talk_at_a_time', '2018'], ['/talks/raj_panjabi_no_one_should_die_because_they_live_too_far_from_a_doctor', '2017']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+true+of+rich+and+poor+men+and+women
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+some+of+you+might+hear+this+and+feel+sad
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=after+all+america+is+deeply+invested+in+this+idea+of+economic+transcendence
found 1 videos: [['/talks/courtney_e_martin_the_new_american_dream', '2016']]
selected: /talks/courtney_e_martin_the_new_american_dream
sleep 3 seconds to avoid blocking
------<443>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CraigVenter_2005G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+the+break+i+was+asked+by+several+people+about+my+comments+about+the+aging+debate+and+this+will+be+my+only+comment+on+it+and
found 1 videos: [['/talks/craig_venter_sampling_the_ocean_s_dna', '2007']]
selected: /talks/craig_venter_sampling_the_ocean_s_dna
sleep 3 seconds to avoid blocking
------<444>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CraigVenter_2010P.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+re+here+today+to+announce+the+first+synthetic+cell+a+cell+made+by
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=starting+with+the+digital+code+in+the+computer++building+the+chromosome
found 2 videos: [['/talks/craig_venter_on_the_verge_of_creating_synthetic_life', '2008'], ['/talks/craig_venter_watch_me_unveil_synthetic_life', '2010']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=from+four+bottles+of+chemicals++assembling+that+chromosome
found 1 videos: [['/talks/craig_venter_watch_me_unveil_synthetic_life', '2010']]
selected: /talks/craig_venter_watch_me_unveil_synthetic_life
sleep 1 seconds to avoid blocking
------<445>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CurtisWallStreetCarroll_2016X.stm
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=inside+of+a+bowling+alley++burglarizing+an+arcade+game
found 1 videos: [['/talks/curtis_wall_street_carroll_how_i_learned_to_read_and_trade_stocks_in_prison', '2017']]
selected: /talks/curtis_wall_street_carroll_how_i_learned_to_read_and_trade_stocks_in_prison
sleep 5 seconds to avoid blocking
------<446>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CynthiaBreazeal_2010W.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+a+little+girl+seeing+star+wars+for+the+first+time+i+ve+been+fascinated+by+this+idea+of+personal+robots
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+as+a+little+girl+i+loved+the+idea+of+a+robot+that+interacted+with+us+much+more+like+a+helpful+trusted+sidekick
found 1 videos: [['/talks/cynthia_breazeal_the_rise_of_personal_robots', '2011']]
selected: /talks/cynthia_breazeal_the_rise_of_personal_robots
sleep 3 seconds to avoid blocking
------<447>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CynthiaKenyon_2011G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+you+ever+wanted+to+stay+young+a+little+longer+and+put+off+aging++this+is+a+dream+of+the+ages+but+scientists
found 1 videos: [['/talks/cynthia_kenyon_experiments_that_hint_of_longer_lives', '2011']]
selected: /talks/cynthia_kenyon_experiments_that_hint_of_longer_lives
sleep 4 seconds to avoid blocking
------<448>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/CynthiaSchneider_2009G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+d+like+to+ask+you+what+do+these+three+people+have+in+common+well
found 10 videos: [['/talks/clifford_stoll_the_call_to_learn', '2008'], ['/talks/aimee_mullins_the_opportunity_of_adversity', '2010'], ['/talks/nicholas_christakis_the_hidden_influence_of_social_networks', '2010'], ['/talks/geoff_mulgan_post_crash_investing_in_a_better_world', '2009'], ['/talks/zach_kaplan_keith_schacht_toys_and_materials_from_the_future', '2008'], ['/talks/alex_tabarrok_how_ideas_trump_crises', '2009'], ['/talks/eames_demetrios_the_design_genius_of_charles_ray_eames', '2009'], ['/talks/rob_forbes_ways_of_seeing', '2009'], ['/talks/reed_kroloff_a_tour_of_modern_architecture', '2008'], ['/talks/brian_cox_why_we_need_the_explorers', '2010']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+probably+recognize+the+first+person+i+m+sure+you+re+all+avid+american+idol+watchers
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+you+might+not+recognize+aydah+al+jahani++who+is+a+contestant+indeed+a+finalist
found 1 videos: [['/talks/cynthia_schneider_the_surprising_spread_of_idol_tv', '2009']]
selected: /talks/cynthia_schneider_the_surprising_spread_of_idol_tv
sleep 1 seconds to avoid blocking
------<449>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DaleDougherty_2011S.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+a+pretty+simple+idea+that+i+m+just+going+to+tell+you+over+and+over+until+i+get+you+to+believe+it+and+that+is+all+of+us+are+makers+i+really+believe+that+all+of+us
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+makers++we+re+born
found 12 videos: [['/talks/jeffrey_kluger_the_sibling_bond', '2012'], ['/talks/ellen_dunham_jones_retrofitting_suburbia', '2010'], ['/talks/juan_enriquez_the_next_species_of_human', '2009'], ['/talks/catherine_mohr_surgery_s_past_present_and_robotic_future', '2009'], ['/talks/jane_fonda_life_s_third_act', '2012'], ['/talks/tyrone_hayes_penelope_jagessar_chaffer_the_toxic_baby', '2012'], ['/talks/ed_ulbrich_how_benjamin_button_got_his_face', '2009'], ['/talks/barry_schwartz_our_loss_of_wisdom', '2009'], ['/talks/thelma_golden_how_art_gives_shape_to_cultural_change', '2010'], ['/talks/tim_ferriss_smash_fear_learn_anything', '2009'], ['/talks/roger_ebert_remaking_my_voice', '2011'], ['/talks/michael_merzenich_growing_evidence_of_brain_plasticity', '2009']]
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+make+things+to+grasp+things+with+our+hands++we+use+words+like+grasp+metaphorically+to+also+think+about+understanding+things
found 1 videos: [['/talks/dale_dougherty_we_are_makers', '2011']]
selected: /talks/dale_dougherty_we_are_makers
sleep 1 seconds to avoid blocking
------<450>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DaliaMogahed_2012S.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+talk+today+is+about+something+maybe+a+couple+of+you+have+already+heard+about+it+s+called+the+arab+spring++anyone+heard+of+it
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+in+two+thousand+and+eleven++power+shifted
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=from+the+few+to+the+many+from+oval+offices+to+central+squares+from+carefully+guarded+airwaves
found 1 videos: [['/talks/dalia_mogahed_the_attitudes_that_sparked_arab_spring', '2012']]
selected: /talks/dalia_mogahed_the_attitudes_that_sparked_arab_spring
sleep 4 seconds to avoid blocking
------<451>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DaliaMogahed_2016.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+do+you+think+when+you+look+at+me+a+woman+of+faith+an+expert++maybe+even+a+sister+or
found 2 videos: [['/talks/dalia_mogahed_what_it_s_like_to_be_muslim_in_america', '2016'], ['/talks/chris_anderson_ted_s_secret_to_great_public_speaking', '2016']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=oppressed++brainwashed+a+terrorist+or+just+an+airport+security
found 1 videos: [['/talks/dalia_mogahed_what_it_s_like_to_be_muslim_in_america', '2016']]
selected: /talks/dalia_mogahed_what_it_s_like_to_be_muslim_in_america
sleep 5 seconds to avoid blocking
------<452>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DambisaMoyo_2013G.stm
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+patrick+henry+the+governor+of+virginia+said+these+words+in+one+thousand+seven+hundred+and+seventy+five
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+could+never+have+imagined+just+how+much+they+would+come+to+resonate+with+american+generations+to+come
found 1 videos: [['/talks/dambisa_moyo_is_china_the_new_idol_for_emerging_economies', '2013']]
selected: /talks/dambisa_moyo_is_china_the_new_idol_for_emerging_economies
sleep 3 seconds to avoid blocking
------<453>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DambisaMoyo_2015G.stm
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+sustain+economic+growth+is+the+defining+challenge+of+our+time
found 1 videos: [['/talks/dambisa_moyo_economic_growth_has_stalled_let_s_fix_it', '2016']]
selected: /talks/dambisa_moyo_economic_growth_has_stalled_let_s_fix_it
sleep 2 seconds to avoid blocking
------<454>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DameEllenMacArthur_2015.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+you+re+a+child++anything+and+everything+is+possible+the+challenge+so+often+is+hanging+on+to+that+as+we+grow+up
found 1 videos: [['/talks/dame_ellen_macarthur_the_surprising_thing_i_learned_sailing_solo_around_the_world', '2015']]
selected: /talks/dame_ellen_macarthur_the_surprising_thing_i_learned_sailing_solo_around_the_world
sleep 3 seconds to avoid blocking
------<455>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DameStephanieShirley_2015.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+wrote+my+memoir+the+publishers+were+really+confused+was+it+about+me+as+a+child+refugee
found 1 videos: [['/talks/dame_stephanie_shirley_why_do_ambitious_women_have_flat_heads', '2015']]
selected: /talks/dame_stephanie_shirley_why_do_ambitious_women_have_flat_heads
sleep 1 seconds to avoid blocking
------<456>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DamianPalin_2012U.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+collaborate+with+bacteria+and+i+m+about+to+show+you+some+stop+motion+footage+that+i+made+recently+where+you+ll+see+bacteria+accumulating+minerals+from+their+environment
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=over+the+period+of+an+hour++so+what+you+re+seeing+here+is+the+bacteria+metabolizing+and+as+they+do+so+they+create+an+electrical+charge
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+attracts+metals+from+their+local+environment++and+these+metals+accumulate+as+minerals+on+the+surface+of+the+bacteria
found 1 videos: [['/talks/damian_palin_mining_minerals_from_seawater', '2012']]
selected: /talks/damian_palin_mining_minerals_from_seawater
sleep 4 seconds to avoid blocking
------<457>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DamonHorowitz_2011.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+my+student+he+s+about+my+age+and+he+s+in+san+quentin+state+prison+when+tony+was+sixteen+years+old
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+day++one+moment+it
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+mom+s+gun+just+flash+it+scare+the+guy+he+s+a+punk+he+took+some+money
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=take+his+money+that+ll+teach+him+then+last+minute+i+m+thinking++can+t+do+this+this+is+wrong++my+buddy+says++c+mon+let+s+do+this++i+say
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+those+three+words+tony+s+going+to+remember++because+the+next+thing+he+knows+he+hears+the+pop+there+s+the+punk+on+the+ground+puddle+of+blood+and+that+s+felony+murder
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+life+parole+at+fifty+if+you+re+lucky+and+tony+s+not+feeling+very+lucky
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+when+we+meet+in+my+philosophy+class+in+his+prison+and+i+say+in+this+class+we+will+discuss+the+foundations+of+ethics+tony+interrupts+me
found 1 videos: [['/talks/damon_horowitz_philosophy_in_prison', '2011']]
selected: /talks/damon_horowitz_philosophy_in_prison
sleep 2 seconds to avoid blocking
------<458>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DamonHorowitz_2011X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+word+that+comes+to+mind
found 13 videos: [['/talks/andrew_solomon_depression_the_secret_we_share', '2013'], ['/talks/temple_grandin_the_world_needs_all_kinds_of_minds', '2010'], ['/talks/willard_wigan_hold_your_breath_for_micro_sculpture', '2009'], ['/talks/bobby_ghosh_why_global_jihad_is_losing', '2012'], ['/talks/sir_ken_robinson_how_to_escape_education_s_death_valley', '2013'], ['/talks/andrew_mcafee_are_droids_taking_our_jobs', '2012'], ['/talks/charles_anderson_dragonflies_that_fly_across_oceans', '2009'], ['/talks/itay_talgam_lead_like_the_great_conductors', '2009'], ['/talks/damon_horowitz_we_need_a_moral_operating_system', '2011'], ['/talks/brene_brown_the_power_of_vulnerability', '2010'], ['/talks/justin_hall_tipping_freeing_energy_from_the_grid', '2011'], ['/talks/gayle_tzemach_lemmon_women_entrepreneurs_example_not_exception', '2012'], ['/talks/charles_limb_building_the_musical_muscle', '2011']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+re+the+new+technologists+we+have+a+lot+of+data++so+we+have+a+lot+of+power+how+much+power+do+we+have++scene+from+a+movie+apocalypse
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+ve+got+to+get+our+hero+captain+willard+to+the+mouth+of+the+nung+river+so+he+can+go+pursue+colonel+kurtz+the+way+we+re+going+to+do+this+is+fly+him+in+and+drop+him+off+so+the+scene+the+sky+is+filled+with+this+fleet+of+helicopters+carrying+him+in+and+there+s+this+loud++thrilling+music+in+the+background+this+wild+music
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+of+all+of+the+data+that+we+have
found 9 videos: [['/talks/david_mccandless_the_beauty_of_data_visualization', '2010'], ['/talks/bono_the_good_news_on_poverty_yes_there_s_good_news', '2013'], ['/talks/nic_marks_the_happy_planet_index', '2010'], ['/talks/jean_baptiste_michel_erez_lieberman_aiden_what_we_learned_from_5_million_books', '2011'], ['/talks/molly_crockett_beware_neuro_bunk', '2012'], ['/talks/lauren_zalaznick_the_conscience_of_television', '2011'], ['/talks/maria_bezaitis_why_we_need_strangeness', '2013'], ['/talks/mikko_hypponen_how_the_nsa_betrayed_the_world_s_trust_time_to_act', '2013'], ['/talks/tristram_stuart_the_global_food_waste_scandal', '2012']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+s+take+an+example++what+can+we+do+with+just+one+person+s+data++what+can+we+do+with
found 6 videos: [['/talks/jean_baptiste_michel_erez_lieberman_aiden_what_we_learned_from_5_million_books', '2011'], ['/talks/peter_diamandis_abundance_is_our_future', '2012'], ['/talks/nicholas_christakis_how_social_networks_predict_epidemics', '2010'], ['/talks/timothy_bartik_the_economic_case_for_preschool', '2013'], ['/talks/sandra_fisher_martins_the_right_to_understand', '2011'], ['/talks/ben_goldacre_battling_bad_science', '2011']]
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+can+look+at+your+financial+records++i+can+tell+if+you+pay+your+bills+on+time++i+know+if+you+re+good+to+give+a+loan+to+i
found 1 videos: [['/talks/juan_enriquez_the_next_species_of_human', '2009']]
selected: /talks/juan_enriquez_the_next_species_of_human
sleep 2 seconds to avoid blocking
------<459>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DanAriely_2008P.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+a+little+bit+about+irrational+behavior+not+yours+of+course+other+people+s+so
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=after+being+at+mit+for+for+a+few+years+i+realized+that
found 8 videos: [['/talks/john_maeda_designing_for_simplicity', '2007'], ['/talks/neil_gershenfeld_unleash_your_creativity_in_a_fab_lab', '2007'], ['/talks/nicholas_negroponte_one_laptop_per_child_two_years_on', '2008'], ['/talks/peter_hirshberg_the_web_is_more_than_better_tv', '2008'], ['/talks/dan_ariely_are_we_in_control_of_our_own_decisions', '2009'], ['/talks/shashi_tharoor_why_nations_should_pursue_soft_power', '2009'], ['/talks/john_hodgman_aliens_love_where_are_they', '2008'], ['/talks/loretta_napoleoni_the_intricate_economics_of_terrorism', '2009']]
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+many+of+those+you+read+but+it+s+not+fun+to+read+and+often+not+fun+to+write+even+worse+to+write++so+i+decided+to+try+and+write+something+more+fun+and+i
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=came+up+with+an+idea+that+i+would+write+a+cookbook
found 2 videos: [['/talks/nicholas_negroponte_5_predictions_from_1984', '2008'], ['/talks/dan_ariely_are_we_in_control_of_our_own_decisions', '2009']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+title+for+my+cookbook+was+going+to+be+dining+without+crumbs+the+art+of+eating+over+the+sink
found 1 videos: [['/talks/dan_ariely_are_we_in_control_of_our_own_decisions', '2009']]
selected: /talks/dan_ariely_are_we_in_control_of_our_own_decisions
sleep 1 seconds to avoid blocking
------<460>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DanAriely_2009.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+talk+to+you+today+a+little+bit+about+predictable+irrationality++and
found 1 videos: [['/talks/dan_ariely_our_buggy_moral_code', '2009']]
selected: /talks/dan_ariely_our_buggy_moral_code
sleep 3 seconds to avoid blocking
------<461>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DanAriely_2011U.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+in+the+hospital+for+a+long+time
found 11 videos: [['/talks/eric_dishman_health_care_should_be_a_team_sport', '2013'], ['/talks/hawa_abdi_deqo_mohamed_mother_and_daughter_doctor_heroes', '2011'], ['/talks/ramona_pierson_an_unexpected_place_of_healing', '2011'], ['/talks/sarah_kay_if_i_should_have_a_daughter', '2011'], ['/talks/eleanor_longden_the_voices_in_my_head', '2013'], ['/talks/eric_topol_the_wireless_future_of_medicine', '2010'], ['/talks/lewis_pugh_how_i_swam_the_north_pole', '2009'], ['/talks/timothy_prestero_design_for_people_not_awards', '2012'], ['/talks/janine_shepherd_a_broken_body_isn_t_a_broken_person', '2012'], ['/talks/may_el_khalil_making_peace_is_a_marathon', '2013'], ['/talks/abraham_verghese_a_doctor_s_touch', '2011']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+a+few+years+after+i+left+i+went+back+and+the+chairman+of+the+burn+department+was+very+excited+to+see+me+said+dan++i+have+a+fantastic+new+treatment+for+you+i+was
found 1 videos: [['/talks/dan_ariely_beware_conflicts_of_interest', '2011']]
selected: /talks/dan_ariely_beware_conflicts_of_interest
sleep 3 seconds to avoid blocking
------<462>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DanAriely_2012X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=want+to+talk+a+little+bit+today+about
found 9 videos: [['/talks/joi_ito_want_to_innovate_become_a_now_ist', '2014'], ['/talks/julian_treasure_how_to_speak_so_that_people_want_to_listen', '2014'], ['/talks/margaret_heffernan_the_dangers_of_willful_blindness', '2013'], ['/talks/mac_barnett_why_a_good_book_is_a_secret_door', '2014'], ['/talks/shlomo_benartzi_saving_for_tomorrow_tomorrow', '2012'], ['/talks/peter_saul_let_s_talk_about_dying', '2012'], ['/talks/morgan_spurlock_the_greatest_ted_talk_ever_sold', '2011'], ['/talks/debra_jarvis_yes_i_survived_cancer_but_that_doesn_t_define_me', '2014'], ['/talks/jennifer_healey_if_cars_could_talk_accidents_might_be_avoidable', '2013']]
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+we+think+about+how+people+work
found 4 videos: [['/talks/jessica_jackley_poverty_money_and_love', '2010'], ['/talks/paul_bloom_can_prejudice_ever_be_a_good_thing', '2014'], ['/talks/jeremy_heimans_what_new_power_looks_like', '2014'], ['/talks/michael_norton_how_to_buy_happiness', '2012']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+naive+intuition+we+have+is+that+people+are+like+rats+in+a+maze+that+all+people+care+about+is+money++and+the+moment+we+give+them+money+we+can
found 1 videos: [['/talks/dan_ariely_what_makes_us_feel_good_about_our_work', '2013']]
selected: /talks/dan_ariely_what_makes_us_feel_good_about_our_work
sleep 4 seconds to avoid blocking
------<463>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DanAriely_2015U.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+would+be+nice+to+be
found 13 videos: [['/talks/dan_ariely_how_equal_do_we_want_the_world_to_be_you_d_be_surprised', '2015'], ['/talks/gabby_giffords_and_mark_kelly_be_passionate_be_courageous_be_your_best', '2014'], ['/talks/nick_bostrom_what_happens_when_our_computers_get_smarter_than_we_are', '2015'], ['/talks/will_potter_the_shocking_move_to_criminalize_nonviolent_protest', '2014'], ['/talks/naomi_mcdougall_jones_what_it_s_like_to_be_a_woman_in_hollywood', '2017'], ['/talks/sam_harris_can_we_build_ai_without_losing_control_over_it', '2016'], ['/talks/chris_hadfield_what_i_learned_from_going_blind_in_space', '2014'], ['/talks/steve_howard_let_s_go_all_in_on_selling_sustainability', '2013'], ['/talks/chimamanda_ngozi_adichie_we_should_all_be_feminists', '2017'], ['/talks/jocelyne_bloch_the_brain_may_be_able_to_repair_itself_with_help', '2016'], ['/talks/matthieu_ricard_how_to_let_altruism_be_your_guide', '2015'], ['/talks/auke_ijspeert_a_robot_that_runs_and_swims_like_a_salamander', '2016'], ['/talks/ines_hercovich_why_women_stay_silent_after_sexual_assault', '2017']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=objective+in+life+in+many+ways
found 16 videos: [['/talks/mona_chalabi_3_ways_to_spot_a_bad_statistic', '2017'], ['/talks/david_chalmers_how_do_you_explain_consciousness', '2014'], ['/talks/fahad_al_attiya_a_country_with_no_water', '2013'], ['/talks/moshe_szyf_how_early_life_experience_is_written_into_dna', '2017'], ['/talks/isaac_lidsky_what_reality_are_you_creating_for_yourself', '2016'], ['/talks/jonathan_haidt_how_common_threats_can_make_common_political_ground', '2013'], ['/talks/jeff_speck_4_ways_to_make_a_city_more_walkable', '2017'], ['/talks/eric_liu_why_ordinary_people_need_to_understand_power', '2014'], ['/talks/michael_patrick_lynch_how_to_see_past_your_own_perspective_and_find_truth', '2017'], ['/talks/uri_alon_why_science_demands_a_leap_into_the_unknown', '2014'], ['/talks/may_el_khalil_making_peace_is_a_marathon', '2013'], ['/talks/anne_curzan_what_makes_a_word_real', '2014'], ['/talks/frederic_kaplan_how_to_build_an_information_time_machine', '2014'], ['/talks/andy_yen_think_your_email_s_private_think_again', '2015'], ['/talks/stuart_russell_3_principles_for_creating_safer_ai', '2017'], ['/talks/dan_ariely_how_equal_do_we_want_the_world_to_be_you_d_be_surprised', '2015']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+problem+is+that+we+have+these+color+tinted+glasses+as+we+look+at+all+kinds+of+situations
found 1 videos: [['/talks/dan_ariely_how_equal_do_we_want_the_world_to_be_you_d_be_surprised', '2015']]
selected: /talks/dan_ariely_how_equal_do_we_want_the_world_to_be_you_d_be_surprised
sleep 4 seconds to avoid blocking
------<464>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DanBarasch_2014S.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+dream+is+to+build+the+world+s+first+underground+park+in+new+york+city++now+why+would+someone+want+to+build+an+underground+park++and+why+in+new+york+city
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+the+left+my+grandmother+age+five++and+then+her+sister+and+brother+ages+eleven+and+nine
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+photo+was+taken+just+before+they+left+from+italy+to+immigrate+to+the+united+states
found 1 videos: [['/talks/dan_barasch_a_park_underneath_the_hustle_and_bustle_of_new_york_city', '2014']]
selected: /talks/dan_barasch_a_park_underneath_the_hustle_and_bustle_of_new_york_city
sleep 1 seconds to avoid blocking
------<465>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DanBarber_2008P.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+went+to+spain+a+few+months+ago+and
found 14 videos: [['/talks/dan_barber_a_foie_gras_parable', '2008'], ['/talks/raghava_kk_my_5_lives_as_an_artist', '2010'], ['/talks/elizabeth_gilbert_your_elusive_creative_genius', '2009'], ['/talks/barbara_block_tagging_tuna_in_the_deep_ocean', '2010'], ['/talks/paul_maccready_nature_vs_humans', '2008'], ['/talks/naif_al_mutawa_superheroes_inspired_by_islam', '2010'], ['/talks/sergey_brin_larry_page_the_genesis_of_google', '2007'], ['/talks/david_agus_a_new_strategy_in_the_war_on_cancer', '2010'], ['/talks/stephen_petranek_10_ways_the_world_could_end', '2007'], ['/talks/rachel_botsman_the_case_for_collaborative_consumption', '2010'], ['/talks/paul_maccready_a_flight_on_solar_wings', '2007'], ['/talks/bono_my_wish_three_actions_for_africa', '2006'], ['/talks/doris_kearns_goodwin_lessons_from_past_presidents', '2008'], ['/talks/natalie_jeremijenko_the_art_of_the_eco_mindshift', '2010']]
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+best+foie+gras+of+my+life+the+best+culinary+experience+of+my+life++because+what+i+saw++i+m+convinced
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+future+of+cooking++ridiculous+right+foie+gras+and+the+future+of+cooking++there+s+not+a+food+today+that+s+more+maligned
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=than+foie+gras+right+i+mean+it+s+crucified++it+was+outlawed+in+chicago+for+a+while+it+s+pending+here+in+california+and+just+recently
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+new+york+it+s+like+if+you+re+a+chef+and+you+put+it+on+your+menu++you+risk+being+attacked+really+it+happened+here+in+san+francisco
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+a+famous+chef+i+m+not+saying+that+there+s+not+a+rationale
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+being+opposed+to+foie+gras++the+reasons+usually+just
found 1 videos: [['/talks/dan_barber_a_foie_gras_parable', '2008']]
selected: /talks/dan_barber_a_foie_gras_parable
sleep 2 seconds to avoid blocking
------<466>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DanBell_2016X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=couple+of+years+i+have+produced+what+i+call+the+dead+mall+series+thirty+two+short+films+and+counting+about+dead+malls+now
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+those+of+you+who+are+not+familiar+with+what+a+dead+mall+is+it+s+basically+a
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=shopping+mall+that+has+fallen+into+hard+times+so+it+either+has+few+shops+and+fewer+shoppers+or
found 1 videos: [['/talks/dan_bell_inside_america_s_dead_shopping_malls', '2017']]
selected: /talks/dan_bell_inside_america_s_dead_shopping_malls
sleep 1 seconds to avoid blocking
------<467>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DanBerkenstock_2013S.stm
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+a+ph+d+student+living+two+lives
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+one+i+used+nasa+supercomputers+to+design+next+generation+spacecraft
found 1 videos: [['/talks/dan_berkenstock_the_world_is_one_big_dataset_now_how_to_photograph_it', '2014']]
selected: /talks/dan_berkenstock_the_world_is_one_big_dataset_now_how_to_photograph_it
sleep 2 seconds to avoid blocking
------<468>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DanBricklin_2016X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+many+of+you+have+used+an+electronic+spreadsheet+like+microsoft+excel+very+good++now++how+many+of+you+have
found 1 videos: [['/talks/dan_bricklin_meet_the_inventor_of_the_electronic_spreadsheet', '2017']]
selected: /talks/dan_bricklin_meet_the_inventor_of_the_electronic_spreadsheet
sleep 1 seconds to avoid blocking
------<469>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DanBuettner_2009X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=called+the+danish+twin+study+established+that+only+about+ten+percent
found 1 videos: [['/talks/dan_buettner_how_to_live_to_be_100', '2010']]
selected: /talks/dan_buettner_how_to_live_to_be_100
sleep 5 seconds to avoid blocking
------<470>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DanCobley_2010G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+work+in+marketing+which+i+love+but+my+first+passion+was+physics+a+passion+brought+to+me+by+a+wonderful+school+teacher++when+i+had+a
found 1 videos: [['/talks/dan_cobley_what_physics_taught_me_about_marketing', '2010']]
selected: /talks/dan_cobley_what_physics_taught_me_about_marketing
sleep 1 seconds to avoid blocking
------<471>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DanCohen_2013X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+he+said+and+what+that+means+is+that+i+argue+it+s+an+important+part+of+my+life++and+i+like+to+argue+and+i+m+not+just+an+academic+i+m+a
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+like+to+think+that+i+m+actually+pretty+good+at+arguing++but+i+also+like+to+think+a+lot+about+arguing++and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+thinking+about+arguing++i+ve+come+across+some+puzzles+and+one+of+the+puzzles+is+that+as+i+ve+been+thinking+about+arguing+over+the+years+and+it+s+been+decades+now
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+gotten+better+at+arguing++but+the+more+that+i+argue+and+the+better+i+get+at+arguing
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+more+that+i+lose++and+that+s+a+puzzle+and+the+other+puzzle+is+that+i+m+actually+okay+with+that+why+is+it+that+i+m+okay+with
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=losing+and+why+is+it+that+i+think+good+arguers+are+actually+better+at+losing++well+there+are+some+other+puzzles+one+is+why+do+we+argue++who+benefits+from+arguments
found 1 videos: [['/talks/daniel_h_cohen_for_argument_s_sake', '2013']]
selected: /talks/daniel_h_cohen_for_argument_s_sake
sleep 2 seconds to avoid blocking
------<472>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DanDennett_2002.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+many+creationists+do+we+have+in+the+room++probably+none+i+think+we+re+all+darwinians++and+yet
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=many+darwinians+are+anxious+a+little+uneasy+would+like+to+see+some+limits+on+just+how+far+the+darwinism+goes
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+all+right+you+know+spiderwebs++sure+they+are+products+of+evolution+the+world+wide+web+not+so+sure
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=beaver+dams+yes+hoover+dam+no
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+do+they+think+it+is+that+prevents+the+products+of+human+ingenuity+from+being+themselves
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fruits+of+the+tree+of+life+and+hence+in+some+sense+obeying+evolutionary+rules++and+yet+people+are
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=interestingly+resistant+to+the+idea+of+applying+evolutionary+thinking+to
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thinking+to+our+thinking++and+so+i+m+going+to+talk+a+little+bit+about+that+keeping+in+mind+that+we+have+a+lot
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+the+program+here++so+you+re+out+in+the+woods+or+you+re+out+in+the+pasture+and+you+see+this+ant+crawling+up+this+blade+of+grass+it
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=climbs+up+to+the+top+and+it+falls+and+it+climbs+and+it+falls+and+it+climbs
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=trying+to+stay+at+the+very+top+of+the+blade+of+grass++what+is+this+ant+doing
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+is+this+in+aid+of+what+goals+is+this+ant+trying+to+achieve+by+climbing+this+blade+of+grass
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+s+in+it+for+the+ant+and+the+answer+is+nothing
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+nothing+in+it+for+the+ant
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=why+is+it+doing+this+is+it+just+a+fluke++yeah++it+s+just+a+fluke
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+a+lancet+fluke+it+s+a+little+brain+worm+it+s+a+parasitic+brain+worm+that+has+to+get+into+the+stomach
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+a+sheep+or+a+cow+in+order+to+continue+its+life+cycle+salmon+swim+upstream
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+get+to+their+spawning+grounds+and+lancet+flukes
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=commandeer+a+passing+ant+crawl+into+its+brain+and+drive+it+up+a+blade+of+grass+like+an+all+terrain+vehicle
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+there+s+nothing+in+it+for+the+ant
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+a+parasite+that+infects+the+brain+inducing+suicidal+behavior
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well++does+anything+like+that+happen+with+human+beings
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+all+on+behalf+of+a+cause+other+than+one+s+own+genetic+fitness+of+course
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well++it+may+already+have
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=occurred+to+you+that+islam+means+surrender+or+submission+of
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well++it+s+ideas+not+worms+that+hijack+our+brains
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+am+i+saying+that+a+sizable
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=minority+of+the+world+s+population+has+had+their+brain
error: request timeout
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+worse+than+that+most+people+have+there
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+a+lot+of+ideas+to+die+for
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=many+people+have+laid+down+their+lives+for+communism+and+many+have+laid+down+their+lives+for+capitalism++and+many+for+catholicism+and+many+for+islam
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+the+ideas+that+are+to+die+for++they+re+infectious
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+might+as+well+try+to+have+a+theory+of+what+s+going+on+when+that+happens+so+that+we
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hosts+work+hard+to+spread+these+ideas+to+others
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+myself+am+a+philosopher++and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+our+occupational+hazards+is+that
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+ask+us+what+the+meaning+of+life+is+and+you+have+to+have+a+bumper+sticker+you+know+you+have+to+have+a
error: request timeout
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=secret+of+happiness+is+find+something+more+important+than+you+are+and+dedicate+your+life+to+it
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=most+of+us+now+that+the+me+decade+is+well+in+the+past+now+we+actually+do+this+one+set+of+ideas+or+another
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+simply+replaced+our+biological+imperatives+in+our+own
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+what+our+summum+bonum+is+it+s+not+maximizing+the+number+of+grandchildren+we+have
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+this+is+a+profound+biological+effect++it+s+the+subordination+of+genetic+interest+to+other+interests+and+no+other+species+does+anything+at+all+like+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+how+are+we+going+to+think+about+this+it+is+on+the+one+hand+a+biological+effect+and+a+very+large+one
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=unmistakable++now++what+theories+do+we+want+to+use
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+look+at+this+well+many+theories+but+how
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=could+something+tie+them+together+the+idea+of+replicating+ideas+ideas
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+replicate+by+passing+from+brain+to+brain+richard+dawkins+whom+you+ll+be+hearing+later+in+the+day
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=invented+the+term+memes+and+put+forward+the+first+really+clear+and+vivid+version+of+this+idea+in+his+book+the
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+everybody+s+idea+now++and+he+s+not+responsible+for+what+i+say+about+memes+i+m+responsible
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+what+i+say+about+memes++actually+i+think+we+re+all+responsible
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=effects+of+our+ideas+but+for+their+likely+misuses
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+it+is+important+i+think+to+richard+and+to+me+that+these+ideas+not+be
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=abused+and+misused++they+re+very+easy+to+misuse+that+s+why+they+re+dangerous
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+s+just+about+a+full+time+job+trying+to+prevent+people+who+are+scared+of+these+ideas+from+caricaturing+them+and+then
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+one+dire+purpose+or+another+so+we+have+to+keep
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=plugging+away+trying+to+correct+the+misapprehensions+so+that+only+the+benign+and+useful
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=variants+of+our+ideas+continue+to+spread+but+it+is+a+problem
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+don+t+have+much+time+and+i+m+going+to+go+over+just+a+little+bit+of+this+and+cut+out+because+there+s+a+lot+of+other+things+that+are+going+to+be+said+so+let+me+just
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=point+out+memes+are+like+viruses+that+s+what+richard+said+back+in++ninety+three+and+you+might+think+well+how+can+that+be+i+mean+a+virus+is
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=viral+telecommunications+but+what+s+a+virus+a+virus+is+a+string+of+nucleic+acid+with+attitude
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=laughter+that+is+there+is+something+about+it+that+tends+to+make+it+replicate+better+than+the+competition+does
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+s+what+a+meme+is+it+s+an+information+packet+with+attitude++what+s+a+meme+made+of
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=can+be+carried+in+any+physical+medium++what+s+a+word+made+of
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sometimes+when+people+say+do+memes+exist+i+say+well+do+words+exist
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+they+in+your+ontology+if+they+are+words
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+memes+that+can+be+pronounced++then+there+s+all+the+other+memes+that+can+t+be+pronounced+there+are+different+species+of+memes
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=gift+to+be+simple+simple++beautiful+furniture+and+of+course+they+re+basically+extinct+now
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+one+of+the+reasons+is
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+that+one+should+be+celibate+not+just+the+priests+everybody+well+it
error: request timeout
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+ve+gone+extinct+but+in+fact+that+s+not+why+they+went+extinct
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+survived+as+long+as+they+did+at+a+time+when+the+social+safety+nets+weren+t+there+and+there+were+lots+of
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=needed+a+foster+home++and+so+they+had+a+ready+supply+of+converts++and+they+could+keep+it+going+and+in+principle+it+could+ve+gone+on+forever
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+perfect+celibacy+on+the+part+of+the+hosts
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+idea+being+passed+on+through+proselytizing++instead+of+through+the+gene+line
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+the+ideas+can+live+on+in+spite+of+the+fact+that+they+re+not+being+passed
error: request timeout
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=genetically+a+meme+can+flourish+in+spite+of+having+a+negative+impact+on+genetic+fitness++after+all+the+meme+for++shaker+dom+was+essentially
error: request timeout
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=parasite+there+are+other+parasites+that+do+this+which+render+the+host
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sterile++it+s+part+of+their+plan
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+don+t+have+to+have+minds+to+have+a+plan++i+m+just+going+to
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=draw+your+attention+to+just+one+of+the+many+implications+of+the+memetic+perspective
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+i+recommend+i+ve+not+time+to+go+into
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=jared+diamond+s+wonderful+book+guns+germs+and+steel
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+talks+about+how+it+was+germs+more+than+guns+and+steel+that+conquered
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+new+hemisphere+the+western+hemisphere+that+conquered+the+rest+of+the+world+when+european
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=spread+out+they+brought+with+them+the+germs+that+they+had+become+essentially+immune+to+that+they+had
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=learned+how+to+tolerate+over+hundreds+and+hundreds+of+years+thousands+of+years+of
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=living+with+domesticated+animals+who+were+the+sources+of+those+pathogens
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+just+wiped+out+these+pathogens+just+wiped+out+the+native+people+who+had+no+immunity+to+them+at+all
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+re+doing+it+again++we+re+doing+it+this+time+with+toxic
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ideas++yesterday++a+number+of+people+nicholas+negroponte+and+others+spoke+about+all+the+wonderful+things+that+are+happening+when+our+ideas
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=get+spread+out+thanks+to+all+the+new+technology+all+over+the+world+and+i+agree+it+is+largely
error: request timeout
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=among+all+those+ideas+that+inevitably
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=flow+out+into+the+whole+world
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thanks+to+our+technology+are+a+lot+of+toxic+ideas++now+this+has+been+realized+for+some+time+sayyid+qutb+is
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+the+founding+fathers+of
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fanatical+islam+one+of+the+ideologues+that+inspired
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+has+only+to+glance+at+its+press+films+fashion+shows+beauty+contests+ballrooms+wine+bars+and+broadcasting+stations
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=memes+these+memes+are+spreading+around+the+world
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=wiping+out+whole+cultures++they+are+wiping+out+languages++they+are+wiping+out+traditions
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+practices++and+it+s+not+our+fault
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=anymore+than+it+s+our+fault+when+our+germs
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=lay+waste+to+people+that+haven+t+developed+the+immunity+we+have
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=an+immunity+to+all+of+the+junk+that+lies+around+the+edges+of+our+culture+we+re+a+free+society++so+we+let+pornography+and+all+these+things
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+a+mild+cold++they+re+not+a+big+deal+for+us+but+we+should+recognize
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+for+many+people+in+the+world+they+are+a+big+deal
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+should+be+very+alert+to+this+as+we+spread+our+education+and+our+technology
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+the+things+that+we+are+doing
error: request timeout
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+re+the+vectors+of+memes+that+are+correctly
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=viewed+by+the+hosts+of+many+other+memes+as+a+dire+threat+to+their+favorite+memes+the+memes+that+they+are+prepared+to+die+for
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+now+how+are+we+going+to+tell+the+good+memes+from+the+bad+memes+that+is+not+the+job
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+the+science+of+memetics+memetics+is+morally+neutral
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+not+the+place+for+hate+and+anger++if+you+ve+had+a+friend+who+s+died+of+aids+then
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+you+hate+hiv+but+the+way+to+deal+with+that+is+to+do+science++and+understand+how+it+spreads+and+why+in+a+morally+neutral
found 0 videos: []
sleep 4 seconds to avoid blocking
error: no video is found.
sleep 2 seconds to avoid blocking
------<473>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DanDennett_2003.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+that+i+m+a+philosopher
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+go+to+a+party+and+people+ask+me+what+do+i+do+and+i+say+i+m
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=their+eyes+glaze+over+when+i+go+to+an+academic+cocktail+party
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+there+are+all+the+professors+around+they+ask+me+what+field+i+m+in+and+i+say+philosophy+their+eyes+glaze+over
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+go+to+a+philosopher+s+party
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+ask+me+what+i+work+on+and+i+say+consciousness+their+eyes+don+t+glaze+over
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=their+lips+curl+into+a+snarl
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+get+hoots+of+derision+and+cackles+and+growls+because
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+think+that+s+impossible+you+can+t+explain+consciousness+the+very+chutzpah+of+somebody+thinking+that+you+could+explain+consciousness+is+just+out+of+the+question
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+don+t+accept+the+conclusion+they+die
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=their+heads+explode+the+idea+is+to+have+an+argument+that+is+so+powerful+that+it+knocks+out+your+opponents
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+in+fact+that+doesn+t+change+people+s+minds+at+all
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+very+hard+to+change+people+s+minds+about+something+like+consciousness++and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+finally+figured+out+the+reason+for+that+the+reason+for+that+is+that+everybody+s+an+expert+on
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=consciousness++we+heard+the+other+day+that+everybody+s+got+a+strong+opinion+about+video+games+they+all+have+an+idea+for+a+video+game+even+if+they+re+not+experts++but+they+don+t+consider+themselves
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=experts+on+video+games+they+ve+just+got+strong+opinions+i+m+sure+that+people+here+who+work+on+say
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=encounter+people+who+have+very+strong+opinions+about
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+s+going+to+happen+next++but+they+probably+don+t+think+of+these+opinions+as+expertise+they+re+just+strongly+held+opinions+but+with+regard+to+consciousness+people+seem+to+think
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=each+of+us+seems+to+think+i+am+an+expert+simply+by+being+conscious++i+know+all+about+this+and+so+you+tell+them+your+theory
error: request timeout
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+what+i+m+going+to+try+to+do+today+is+to+shake+your+confidence+because+i+know+the+feeling+i+can+feel+it+myself++i+want+to+shake+your+confidence+that+you+know
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=your+own+innermost+minds+that+you+are++yourselves++authoritative+about+your+own+consciousness
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+everybody+understands+what+that+means+that+s+supposed+to+exhibit+the+stream+of+consciousness
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+my+favorite+picture+of+consciousness+that+s+ever+been+done+it+s+a+saul+steinberg+of+course+it+was+a+new+yorker+cover++and+this
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fellow+here+is+looking+at+the+painting+by+braque++that+reminds+him+of+the+word+baroque++barrack++bark+poodle
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+wonderful+stream+of+consciousness+here+and+if+you+follow+it+along++you+learn+a+lot+about+this+man
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+i+particularly+like+about+this+picture+too+is+that+steinberg+has+rendered+the+guy+in+this+sort+of+pointillist+style
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+reminds+us+as+rod+brooks+was+saying+yesterday
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+we+are+what+each+of+us+is+what+you+are+what+i+am
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+hundred+trillion+little+cellular+robots
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+what+we+re+made+of+no+other+ingredients+at+all+we+re+just+made+of+cells+about+one+hundred+trillion+of+them
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+a+single+one+of+those+cells+is+conscious+not+a+single+one+of+those+cells+knows+who+you+are+or+cares
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=somehow+we+have+to+explain+how+when+you+put+together+teams+armies++battalions+of
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hundreds+of+millions+of+little+robotic+unconscious+cells+not+so+different+really+from+a
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+this+i+mean+just+look+at+it++the+content+there+s+color++there+s+ideas+there+s+memories+there+s+history
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+somehow+all+that+content+of+consciousness+is+accomplished+by+the+busy+activity+of+those+hoards+of+neurons++how+is+that+possible
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=many+people+just+think+it+isn+t+possible+at+all+they+think+no++there+can+t+be+any
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sort+of+naturalistic+explanation+of+consciousness+this+is+a+lovely+book+by+a+friend+of+mine
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=named+lee+siegel+who+s+a+professor+of+religion+actually+at+the+university+of+hawaii++and+he+s+an+expert+magician+and+an+expert+on+the+street+magic+of+india
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+is+what+this+book+is+about+net+of+magic
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+there+s+a+passage+in+it+which+i
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=would+love+to+share+with+you+it+speaks+so+eloquently+to+the+problem
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+writing+a+book+on+magic++i+explain+and+i+m+asked++real+magic
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by++real+magic++people+mean+miracles+thaumaturgical+acts+and+supernatural+powers++no++i+answer++conjuring+tricks++not+real+magic
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=real+magic++in+other+words+refers+to+the+magic+that+is+not+real+while+the+magic
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+lot+of+people+feel+about+consciousness
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=real+consciousness+is+not+a+bag+of+tricks++if+you+re+going+to+explain+this+as+a+bag+of+tricks+then+it+s+not+real+consciousness+whatever+it+is
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+as+marvin+said++and+as+other+people
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=consciousness+is+a+bag+of+tricks+this+means+that+a+lot+of+people+are+just+left
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=completely+dissatisfied+and+incredulous+when+i+attempt+to+explain+consciousness++so+this+is+the+problem+so
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+have+to+do+a+little+bit+of+the+sort+of+work+that
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+lot+of+you+won+t+like+for+the+same+reason+that+you+don+t+like+to+see+a+magic+trick+explained+to+you
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+many+of+you+here++if+somebody+some+smart+aleck+starts+telling+you
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+a+particular+magic+trick+is+done+you+sort+of+want+to+block+your+ears+and+say+no+no+i+don+t+want+to+know+don+t+take+the+thrill+of+it+away++i+d+rather+be+mystified+don+t+tell+me+the+answer
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+lot+of+people+feel+that+way+about+consciousness+i+ve+discovered++and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+sorry+if+i+impose+some
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+understanding+on+you+you+d+better+leave+now+if+you+don+t+want+to+know+some+of+these+tricks++but+i+m+not+going+to+explain+it+all+to+you
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+do+what+philosophers+do
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+s+how+a+philosopher+explains
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+sawing+the+lady+in+half+trick+you+know+the+sawing+the+lady+in+half+trick++the+philosopher+says+i+m+going+to+explain+to+you+how+that+s+done
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+not+my+department+i+m+sorry
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+now+i+m+going+to+illustrate+how+philosophers+explain+consciousness++but+i+m+going+to+try+to+also
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=show+you+that+consciousness+isn+t+quite+as+marvelous+your+own+consciousness+isn+t+quite+as
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=wonderful+as+you+may+have+thought+it+is+this+is+something+by+the+way+that+lee+siegel+talks+about
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+his+book+he+marvels+at+how+he+ll
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=do+a+magic+show+and+afterwards+people+will+swear+they+saw+him+do+x+y+and+z
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+never+did+those+things+he+didn+t+even+try+to+do+those+things+people+s+memories+inflate+what+they+think+they+saw
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+same+is+true+of+consciousness
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+let+s+see+if+this+will+work
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+right+let+s+just+watch+this
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+working+with+a+young
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=documentarian+named+nick+deamer++and+this+is+a+little+demo+that+he+s+done+for+me
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=part+of+a+larger+project+some+of+you+may+be+interested+in+we+re+looking+for+a+backer
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=documentary+on+consciousness++ok+now+you+all+saw+what+changed+right
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+many+of+you+noticed+that+every+one+of+those+squares
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=just+show+you+by+running+it+again
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+they+re+all+going+to+change+color+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+very+hard+to+notice+you+have+to+really+concentrate+to+pick+up+any+of+the+changes+at+all
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now++this+is+an+example+one+of+many+of+a+phenomenon+that+s+now+being+studied+quite+a+bit
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+one+that+i+predicted+in+in+the+last+page+or+two+of+my
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+did+experiments+of+this+sort+you+d+find+that+people+were+unable+to+pick+up+really+large+changes+if+there+s+time+at+the+end+i+ll+show+you+the+much+more+dramatic+case
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now++how+can+it+be
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+there+are+all+those+changes+going+on+and+that+we+re+not+aware+of+them
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+way+your+eye+saccades+the+way+your+eye+moves+around+three+or+four+times+a+second
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+didn+t+mention+the+speed+your+eye+is+constantly+in+motion+moving+around+looking+at+eyes+noses
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=elbows+looking+at+interesting+things+in+the+world++and+where+your+eye+isn+t+looking+you+re+remarkably
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=impoverished+in+your+vision+that+s+because+the+foveal+part+of+your+eye+which+is+the
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=high+resolution+part+is+only+about+the+size+of+your+thumbnail+held+at+arms+length++that+s+the+detail+part+it+doesn+t+seem+that+way+does+it
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+doesn+t+seem+that+way+but+that+s+the+way+it+is+you+re+getting+in+a+lot+less+information+than+you+think
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+s+a+completely+different+effect++this+is+a+painting+by+bellotto
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+in+the+museum+in+north+carolina++bellotto+was+a+student+of+canaletto
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+and+i+love+paintings+like+that+the+painting+is+actually+about+as+big+as+it+is+right+here+and+i+love+canalettos+because+canaletto+has+this+fantastic+detail+and+you+can
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=get+right+up+and+and+see+all+the+details+on+the+painting++and+i+started+across+the+hall
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+north+carolina+because+i+thought+it+was+probably+a+canaletto++and+would+have+all+that+in+detail++and+i+noticed+that
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+bridge+there++there+s+a+lot+of+people+you+can+just+barely+see+them+walking+across+the+bridge+and+i+thought+as+i+got+closer+i+would+be+able+to+see+all+the+detail+of+most+people
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=see+their+clothes+and+so+forth++and+as+i+got+closer+and+closer+i+actually+screamed
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+yelled+out+because+when+i+got+closer+i+found+the+detail+wasn+t+there+at+all
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=were+just+little+artfully+placed+blobs+of+paint
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+as+i+walked+towards+the+picture
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+expecting+detail+that+wasn+t+there++the+artist+had+very+cleverly+suggested
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+and+clothes+and+wagons+and+all+sorts+of+things+and+my+brain+had+taken+the+suggestion
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+get+a+better+view+of+the+blobs+see+when+you+get+close+they+re+really+just+just+blobs+of+paint
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+will+have+seen+something+like+this
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+the+reverse+effect+i+ll
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+to+you+one+more+time++now++what+does+your+brain+do
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+it+takes+the+suggestion+when+an+artful+blob+of+paint+or+two+by+an+artist
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+person+say++one+of
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=marvin+minsky+s+little+society+of+mind+do+they+send+little+painters+out+to+fill+in+all+the+details+in+your+brain+somewhere++i+don+t+think+so
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+a+chance++but+then+how+on+earth+is+it+done++well
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=remember+the+philosopher+s+explanation+of+the+lady+it+s+the+same+thing
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+brain+just+makes+you+think+that+it+s+got+the+detail+there+you+think+the+detail+s+there++but+it+isn+t+there++the+brain+isn+t+actually+putting+the+detail
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+your+head+at+all+it+s+just+making+you+expect+the+detail++let+s+just+do+this+experiment+very+quickly+is+the+shape+on+the+left
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+same+as+the+shape+on+the+right+rotated
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=yes++how+many+of+you+did+it+by+rotating+the+one+on+the+left+in+your+mind+s+eye+to+see+if+it+matched+up+with+the+one+on+the+right++how+many+of+you+rotated+the+one+on+the+right
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+do+you+know+that+s+what+you+did
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+in+fact+been+a+very+interesting
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=debate+raging+for+over+twenty+years+in+cognitive+science+various+experiments+started+by+roger+shepherd+who+measured+the+angular+velocity+of+rotation+of+mental+images
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=yes+it+s+possible+to+do++that++but+the+the+details+of+the+process+are+still
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+read+that+literature+one+of+the+things+that+you+really+have+to+come+to+terms+with+is
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=even+when+you+re+the+subject+in+the+experiment+you+don+t+know+you+don+t+know+how+you+do+it+you+just+know+that+you+have+certain+beliefs
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+come+in+a+certain+order+at+a+certain+time++and+what+explains+the+fact+that+that+s+what+you+think+well+that+s+where+you+have+to+go+backstage+and+ask+the+magician
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+a+figure+that+i+love+bradley+petrie+and+dumais+you+may+think+that+i+ve+cheated+that+i+ve+put
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=whiter+than+white+boundary+there+how+many+of+you+see+that+sort+of+boundary+with+the+necker+cube+floating+in+front+of+the+circles++can+you
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+you+know+in+effect+the+boundary+s+really+there
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+a+certain+sense+your+brain+is+actually+computing+that+boundary++the+boundary+that+goes+right+there
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=everybody+can+see+the+two+ways+of+seeing+the+cube++ok++can+you+see+the+four+ways+of+seeing+the+cube
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+there+s+another+way+of+seeing+it++if+you+re+seeing+it+as+a+cube+floating+in+front+of+some+circles++some+black+circles++there+s+another+way+of+seeing+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+a+cube+on+a+black+background+as+seen+through+a+piece+of+swiss+cheese
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+many+of+you+can+t+get+it+that
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+are+two+very+different+phenomena++when+you+see+the+cube+one+way+behind+the+screen
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+there+s+still+a+sort+of+filling+in+as+we+can+tell+if+we+look+at+this+we+don+t+have+any+trouble+seeing+the+cube+but+where+does+the+color+change
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=does+your+brain+have+to+send+little+painters+in+there+the+purple+painters+and+the+green+painters+fight+over+who+s+going+to+paint+that+bit+behind+the+curtain+no+your+brain+just+lets+it+go+the
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=brain+doesn+t+need+to+fill+that
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+when+i+first+started+talking+about+the+bradley+petrie
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=dumais+example+that+you+just+saw+i+ll+go+back+to+it+this+one+i+said
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+there+was+no+filling+in
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=behind+there++and+i+supposed+that+that+was+just+a+flat+truth+always+true++but+rob+van+lier+has+recently+shown+that+it+isn+t
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=look+in+the+gray+areas+and+see+if+you+seem+to+see+something+sort+of+shadowy+moving+in+there+yeah+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+amazing+there+s+nothing+there+it+s+no+trick
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+ron+rensink+s+work+which+was+in+some+degree+inspired+by+that+suggestion+right+at+the+end+of+the+book+let+me
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=just+pause+this+for+a+second+if+i+can+this+is+change+blindness+what+you+re+going+to+see+is+two+pictures
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+which+is+slightly+different+from+the+other+you+see+here+the+red+roof+and+the+gray+roof+and+in+between+them+there+will+be+a+mask
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=just+a+blank+screen+for+about+a+quarter+of+a+second+so+you+ll+see+the+first+picture+then+a+mask+then+the+second+picture+then+a+mask++and+this+will+just+continue
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+your+job+as+the+subject+is+to+press+the+button+when+you+see+the+change+so
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=show+the+original+picture+for+two+hundred+and+forty+milliseconds
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=blank+show+the+next+picture+for+two+hundred+and+forty+milliseconds++blank+and+keep+going
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=presses+the+button+saying+i+see+the+change+so+now+we+re+going+to+be+subjects+in+the+experiment+we+re
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=no+trouble+there+can+everybody+see
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=took+only+a+little+bit+more+than+a+second+to+press+the+button+can+you
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+many+don+t+see+it+still+what+s+on+the+roof+of+that+barn
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+it+a+bridge+or+a+dock
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+particularly+striking+this+one+because+it+s+so+large
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+yet+it+s+pretty+hard+to+see
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=seconds+is+the+median+time+for
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=subjects+in+his+experiment+there++i+love+this+one+i+ll+end+with+this+one+just+because+it+s+such+an+obvious+and+important+thing
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+many+still+don+t+see+it++how+many+still+don+t+see+it+how
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=many+engines+on+the+wing+of+that+boeing+right+in+the+middle+of+the+picture
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thanks+very+much+for+your+attention+what+i+wanted+to+show+you+is+that+scientists++using+their
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=methods+can+tell+you+things+about+your+own+consciousness+that+you+would+never+dream+of+and+that+in+fact
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+re+not+the+authority+on+your+own+consciousness+that+you+think+you+are+and+we+re+really+making+a+lot+of+progress+on+coming+up+with+a+theory+of+mind+jeff+hawkins+this+morning+was
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=describing+his+attempt+to+get+theory+and+a+good+big+theory+into+the+neuroscience+and+he+s+right+this+is+a+problem
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=harvard+medical+school+once+i+was+at+a+talk+director+of+the+lab+said+in+our+lab+we+have+a+saying
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+work+on+one+neuron++that+s+neuroscience
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+work+on+two+neurons++that+s+psychology
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+have+to+have+more+theory+and+it+can+come+as+much+from+the+top+down+thank+you+very+much
found 0 videos: []
error: no video is found.
sleep 2 seconds to avoid blocking
------<474>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DanDennett_2006.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+wonderful+to+be+back+i+love+this+wonderful+gathering+and+you+must+be+wondering+what+on+earth+have+they+put+up+the+wrong+slide
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ask+the+question++who+designed+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+ted+this+is+technology+entertainment+design+and+there+s+a+dairy+cow+it+s+a
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=quite+wonderfully+designed+animal++and+i+was+thinking+how+do+i+introduce+this+and+i+thought+well+maybe
found 1 videos: [['/talks/dan_dennett_let_s_teach_religion_all_religion_in_schools', '2006']]
selected: /talks/dan_dennett_let_s_teach_religion_all_religion_in_schools
sleep 1 seconds to avoid blocking
------<475>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DanDennett_2009U.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=im+going+around+the+world+giving+talks+about+darwin+and+usually+what+im+talking+about+is+darwins+strange+inversion+of+reasoning
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+that+title+that+phrase+comes+from+a+critic+an+early+critic++and+this+is+a+passage+that+i+just+love+and+would+like+to
found 1 videos: [['/talks/dan_dennett_cute_sexy_sweet_funny', '2009']]
selected: /talks/dan_dennett_cute_sexy_sweet_funny
sleep 2 seconds to avoid blocking
------<476>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DanGilbert_2004.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+speak+two+million+years+seems+like+a+really+long+time++but+evolutionarily+two+million+years+is+nothing+and+yet+in+two+million+years+the+human+brain+has+nearly
found 1 videos: [['/talks/dan_gilbert_the_surprising_science_of_happiness', '2006']]
selected: /talks/dan_gilbert_the_surprising_science_of_happiness
sleep 1 seconds to avoid blocking
------<477>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DanGilbert_2005G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=make+decisions+every+day+we+want+to+know+what+the+right+thing+is+to+do+in+domains+from+the+financial+to+the+gastronomic+to+the+professional+to+the+romantic
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+surely+if+somebody+could+really+tell+us+how+to+do+exactly+the+right+thing+at+all+possible+times+that+would+be+a+tremendous+gift
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=out+that+in+fact++the+world+was+given+this+gift+in
found 2 videos: [['/talks/larry_brilliant_my_wish_help_me_stop_pandemics', '2006'], ['/talks/majora_carter_greening_the_ghetto', '2006']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+a+dutch+polymath+named+daniel+bernoulli+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+i+want+to+talk+to+you+about+today+is+what+that+gift+is
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+also+want+to+explain+to+you+why+it+is+that+it+hasn+t+made+a+damn+bit+of+difference++now++this+is+bernoulli+s+gift
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+a+direct+quote++and+if+it+looks+like+greek+to+you+it+s+because+well++it+s+greek
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+the+simple+english+translation+much+less+precise++but+it+captures+the+gist+of+what+bernoulli+had+to+say+was+this
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+expected+value+of+any+of+our+actions+that+is+the+goodness+that+we+can+count+on+getting
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+the+product+of+two+simple+things+the+odds+that+this+action+will+allow+us+to+gain+something+and+the+value+of+that+gain+to+us
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=bernoulli+was+saying+is+if+we+can+estimate+and+multiply+these+two+things+we+will+always+know+precisely+how+we+should+behave++now++this+simple+equation+even+for+those+of+you+who+don+t+like+equations+is+something+that+you+re+quite+used+to+here+s+an+example
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+i+were+to+tell+you+let+s+play+a+little+coin+toss+game+and+i+m+going+to+flip+a+coin+and+if+it+comes+up+heads+i+m+going+to+pay+you+ten+dollars
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+you+have+to+pay+four+dollars+for+the+privilege+of+playing
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+me+most+of+you+would+say+sure+i+ll+take+that+bet+because+you+know+that+the+odds+of+you+winning+are+one+half+the+gain+if+you+do+is+ten+dollars+that+multiplies+to+five
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+s+more+than+i+m+charging+you+to+play+so+the+answer+is+yes+this+is+what+statisticians+technically+call+a+damn+fine+bet
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+are+horrible+at+estimating+both+of+these+things+and+that+s+what+i+want+to+talk+to+you+about+today+there+are+two+kinds+of+errors+people+make+when+trying+to+decide+what+the+right+thing+is+to+do
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+those+are+errors+in+estimating+the+odds+that+they+re+going+to+succeed+and+errors+in+estimating+the+value+of+their+own+success+now
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+are+six+sides+to+a+die+two+sides+to+a+coin+fifty+two+cards+in+a+deck+you+all+know+what+the+likelihood+is+of+pulling+the+ace+of+spades+or+of+flipping+a+heads
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+as+it+turns+out+this+is+not+a+very+easy+idea+to+apply+in+everyday+life+that+s+why+americans+spend+more+i+should+say++lose+more+gambling+than+on
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+reason+is+this+isn+t+how+people+do+odds+the+way+people+figure+odds+requires+that+we+first+talk+a+bit+about+pigs+now+the+question+i+m+going+to+put+to+you+is+whether+you
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=think+there+are+more+dogs+or+pigs+on+leashes+observed+in+any+particular+day+in+oxford+and+of+course+you+all+know+that+the+answer+is+dogs+and+the+way+that+you+know+that+the+answer+is
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=dogs+is+you+quickly+reviewed+in+memory+the+times+you+ve+seen+dogs+and+pigs+on+leashes+it+was+very
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=easy+to+remember+seeing+dogs+not+so+easy+to+remember+pigs+and+each+one+of+you+assumed+that+if+dogs+on+leashes+came+more+quickly+to+your+mind+then+dogs+on+leashes+are+more+probable
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+not+a+bad+rule+of+thumb++except+when+it+is+so+for+example+here+s+a+word+puzzle
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+there+more+four+letter+english+words+with+r+in+the+third+place+or+r+in+the+first+place
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=very+briefly+make+a+quick+scan+and+it+s+awfully+easy+to+say+to+yourself++ring+rang+rung++and+very+hard+to+say+to+yourself++pare
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=park++they+come+more+slowly++but+in+fact+there+are+many+more+words+in+the+english+language+with+r+in+the+third+than+the+first+place
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+reason+words+with+r+in+the+third+place+come+slowly+to+your+mind+isn+t+because+they+re+improbable+unlikely+or+infrequent+it+s+because
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+mind+recalls+words+by+their+first+letter++you+kind+of+shout+out+the+sound+s+and+the+word+comes+it+s+like+the+dictionary+it+s+hard+to+look+things+up+by+the+third+letter
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+this+is+an+example+of+how+this+idea+that+the+quickness+with+which+things+come+to+mind+can+give+you+a+sense+of+their+probability+how+this+idea+could+lead+you+astray++it+s+not+just+puzzles+though+for+example
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=americans+are+asked+to+estimate+the+odds+that+they+will+die+in+a+variety+of+interesting+ways+these+are+estimates+of+number+of+deaths+per+year+per+two+hundred+million+u+s+citizens
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+these+are+just+ordinary+people+like+yourselves+who+are+asked+to+guess+how+many+people+die+from+tornado+fireworks+asthma+drowning+etc
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=tornadoes+and+fireworks+two+things+are+vastly+underestimated+dying+by+drowning+and+dying+by+asthma++why
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+was+the+last+time+that+you+picked+up+a+newspaper+and+the+headline+was+boy+dies+of+asthma
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+not+interesting+because+it+s+so+common
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+very+easy+for+all+of+us+to+bring+to+mind+instances+of+news+stories+or+newsreels+where+we+ve+seen+tornadoes+devastating+cities+or+some+poor+schmuck+who+s+blown+his+hands+off+with+a+firework+on+the+fourth+of+july
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=drownings+and+asthma+deaths+don+t+get+much+coverage+they+don+t+come+quickly+to+mind+and+as+a+result+we+vastly+underestimate+them++indeed++this+is+kind+of+like+the+sesame+street+game+of+which
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thing+doesn+t+belong+and+you+re+right+to+say+it+s+the+swimming+pool+that+doesn+t+belong+because+the+swimming+pool+is+the+only+thing+on+this+slide+that+s+actually+very+dangerous+the+way+that+more+of+you+are+likely+to+die+than+the+combination+of+all+three+of+the+others+that+you+see+on+the+slide
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=slide+the+lottery+is+an+excellent+example+of+course+an+excellent+test+case+of+people+s+ability+to+compute+probabilities+and+economists
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=forgive+me+for+those+of+you+who+play+the+lottery+but+economists+at+least+among+themselves+refer+to+the+lottery+as+a+stupidity+tax+because+the+odds+of+getting+any+payoff+by
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=investing+your+money+in+a+lottery+ticket+are+approximately+equivalent+to+flushing+the+money+directly+down+the+toilet+which+by+the
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=way+doesn+t+require+that+you+actually+go+to+the+store+and+buy+anything
found 2 videos: [['/talks/sir_ken_robinson_do_schools_kill_creativity', '2006'], ['/talks/amory_lovins_winning_the_oil_endgame', '2007']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=why+in+the+world+would+anybody+ever+play+the+lottery++well++there+are+many+answers+but+one+answer+surely+is+we+see+a+lot+of+winners++right+when+this+couple+wins+the
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=lottery+or+ed+mcmahon+shows+up+at+your+door+with+this+giant+check+how+the+hell+do+you+cash+things+that+size+i+don+t+know++we+see+this+on+tv+we+read+about+it+in+the+paper++when+was+the+last+time+that+you+saw
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=extensive+interviews+with+everybody+who+lost++indeed
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+we+required+that+television+stations+run+a+30+second+interview+with+each+loser+every+time+they+interview+a+winner
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+one+hundred+million+losers+in+the+last+lottery+would+require+nine+and+a+half+years+of+your+undivided+attention+just+to+watch+them+say
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+saw+loss+after+loss+after+loss+and+then+at+the+end+there+s+thirty+seconds+of+and+i+won
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+likelihood+that+you+would+play+the+lottery+is+very+small+look+i+can+prove+this+to+you+here+s+a+little+lottery
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+ten+tickets+in+this+lottery++nine+of+them+have+been+sold+to+these+individuals++it+costs+you+a+dollar+to+buy+the+ticket+and+if+you+win+you+get+twenty+bucks+is+this+a+good+bet
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+bernoulli+tells+us+it+is+the+expected+value+of+this+lottery+is+two+dollars
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+a+lottery+in+which+you+should+invest+your+money+and+most+people+say+ok+i+ll+play+now+a+slightly+different+version+of+this+lottery
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=imagine+that+the+nine+tickets+are+all+owned+by+one+fat+guy+named+leroy+leroy+has+nine+tickets+there+s+one+left+do+you+want+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=most+people+won+t+play+this+lottery+now+you+can+see+the+odds+of+winning+haven+t+changed++but+it+s+now+fantastically+easy+to+imagine+who+s+going+to+win+it+s+easy+to+see
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=right+you+can+t+say+to+yourself+i+m+as+likely+to+win+as+anybody+because+you+re+not+as+likely+to+win+as+leroy
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+fact+that+all+those+tickets+are+owned+by+one+guy+changes+your+decision+to+play++even+though+it+does+nothing+whatsoever+to+the+odds
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now++estimating+odds+as+difficult+as+it+may+seem+is+a+piece+of+cake+compared+to+trying+to+estimate
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=trying+to+say+what+something+is+worth+how+much+we+ll+enjoy+it+how+much+pleasure+it+will+give+us
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+talk+now+about+errors+in+value++how+much+is+this+big+mac+worth+is+it+worth+twenty+five+dollars
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=most+of+you+have+the+intuition+that+it+s+not+you+wouldn+t+pay+that+for
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+but+in+fact+to+decide+whether+a+big+mac+is+worth+twenty+five+dollars
found 1 videos: [['/talks/richard_branson_life_at_30_000_feet', '2007']]
selected: /talks/richard_branson_life_at_30_000_feet
sleep 4 seconds to avoid blocking
------<478>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DanGilbert_2014U.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+every+stage+of+our+lives+we+make+decisions+that+will+profoundly+influence+the+lives+of+the+people+we+re+going+to+become+and+then+when+we+become+those+people+we+re+not+always+thrilled
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+the+decisions+we+made+so+young+people+pay+good+money+to+get+tattoos+removed+that+teenagers+paid+good
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=money+to+get+middle+aged+people+rushed+to+divorce+people+who+young+adults+rushed+to+marry
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=older+adults+work+hard+to+lose+what+middle+aged+adults+worked+hard+to+gain+on+and+on+and+on+the+question+is+as+a+psychologist+that+fascinates+me+is+why+do+we+make+decisions+that+our+future+selves+so+often+regret
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+one+of+the+reasons+i+ll+try+to+convince+you+today+is+that+we+have+a+fundamental+misconception+about+the+power+of+time
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=every+one+of+you+knows+that+the+rate+of+change+slows+over+the+human+lifespan+that+your+your+children+seem+to+change+by+the+minute+but+your+parents+seem+to+change+by+the+year
found 1 videos: [['/talks/dan_gilbert_the_psychology_of_your_future_self', '2014']]
selected: /talks/dan_gilbert_the_psychology_of_your_future_self
sleep 1 seconds to avoid blocking
------<479>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DanGross_2016.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+always+been+weirdly+obsessed+with+advertising
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+remember+watching+saturday+morning+cartoons+paying+more+attention+to+the+commercials+than+to+the+shows+trying+to+figure+out+how+they+were+trying+to+get+inside+my+head
found 1 videos: [['/talks/dan_gross_why_gun_violence_can_t_be_our_new_normal', '2016']]
selected: /talks/dan_gross_why_gun_violence_can_t_be_our_new_normal
sleep 3 seconds to avoid blocking
------<480>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DanieleQuercia_2014S.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+scientist+and+engineer++i+ve+focused+on+efficiency
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+many+years+but+efficiency+can+be+a+cult+and+today
found 3 videos: [['/talks/daniele_quercia_happy_maps', '2015'], ['/talks/amory_lovins_a_40_year_plan_for_energy', '2012'], ['/talks/michael_porter_the_case_for_letting_business_solve_social_problems', '2013']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+d+like+to+tell+you+about+a+journey+that+moved+me+out+of+the+cult+and+back
found 1 videos: [['/talks/amory_lovins_a_40_year_plan_for_energy', '2012']]
selected: /talks/amory_lovins_a_40_year_plan_for_energy
sleep 3 seconds to avoid blocking
------<481>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DanielGoldstein_2011S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+remember+the+story+of+odysseus+and+the+sirens+from+high+school+or+junior+high+school+there+was
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+hero+odysseus+who+s+heading+back+home+after+the+trojan+war+and+he+s+standing+on+the+deck+of+his
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+will+sail+past+those+rocks
found 13 videos: [['/talks/daniel_goldstein_the_battle_between_your_present_and_future_self', '2011'], ['/talks/peter_ward_a_theory_of_earth_s_mass_extinctions', '2009'], ['/talks/phil_plait_how_to_defend_earth_from_asteroids', '2011'], ['/talks/thomas_thwaites_how_i_built_a_toaster_from_scratch', '2011'], ['/talks/malcolm_gladwell_the_unheard_story_of_david_and_goliath', '2013'], ['/talks/caroline_casey_looking_past_limits', '2011'], ['/talks/magnus_larsson_turning_dunes_into_architecture', '2009'], ['/talks/mike_degruy_hooked_by_an_octopus', '2012'], ['/talks/susan_shaw_the_oil_spill_s_toxic_trade_off', '2010'], ['/talks/diana_nyad_never_ever_give_up', '2013'], ['/talks/mark_pagel_how_language_transformed_humanity', '2011'], ['/talks/rachel_sussman_the_world_s_oldest_living_things', '2010'], ['/talks/juan_enriquez_your_online_life_permanent_as_a_tattoo', '2013']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+on+those+rocks+sit+some+beautiful+women+called+sirens++and+these+women+sing+an+enchanting+song
found 1 videos: [['/talks/daniel_goldstein_the_battle_between_your_present_and_future_self', '2011']]
selected: /talks/daniel_goldstein_the_battle_between_your_present_and_future_self
sleep 5 seconds to avoid blocking
------<482>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DanielGoleman_2007.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know+i+m+struck+by+how+one+of+the+implicit+themes+of+ted+is+compassion+these+very+moving+demonstrations+we+ve+just+seen
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=president+clinton+last+night++and+i+d+like+to+do+a+little
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+compassion+and+bring+it+from+the
found 12 videos: [['/talks/robert_wright_the_evolution_of_compassion', '2008'], ['/talks/james_forbes_compassion_at_the_dinner_table', '2008'], ['/talks/jackie_tabick_the_balancing_act_of_compassion', '2008'], ['/talks/feisal_abdul_rauf_lose_your_ego_find_your_compassion', '2008'], ['/talks/robert_thurman_expanding_your_circle_of_compassion', '2008'], ['/talks/karen_armstrong_my_wish_the_charter_for_compassion', '2008'], ['/talks/jane_goodall_what_separates_us_from_chimpanzees', '2007'], ['/talks/daniel_goleman_why_aren_t_we_more_compassionate', '2007'], ['/talks/michelle_obama_a_passionate_personal_case_for_education', '2009'], ['/talks/phil_borges_photos_of_endangered_cultures', '2007'], ['/talks/sunitha_krishnan_the_fight_against_sex_slavery', '2009'], ['/talks/nancy_etcoff_happiness_and_its_surprises', '2009']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=global+level+to+the+personal+i+m+a+psychologist+but+rest+assured+i+will+not+bring+it+to+the+scrotal
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+was+a+very+important+study+done+a+while+ago+at+princeton+theological+seminary+that+speaks+to+why+it+is
found 1 videos: [['/talks/daniel_goleman_why_aren_t_we_more_compassionate', '2007']]
selected: /talks/daniel_goleman_why_aren_t_we_more_compassionate
sleep 4 seconds to avoid blocking
------<483>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DanielKish_2015.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+born+with+bilateral+retinoblastoma++retinal
found 1 videos: [['/talks/daniel_kish_how_i_use_sonar_to_navigate_the_world', '2015']]
selected: /talks/daniel_kish_how_i_use_sonar_to_navigate_the_world
sleep 4 seconds to avoid blocking
------<484>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DanielKraft_2009.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+am+a+pediatric+cancer+doctor
found 1 videos: [['/talks/daniel_kraft_a_better_way_to_harvest_bone_marrow', '2009']]
selected: /talks/daniel_kraft_a_better_way_to_harvest_bone_marrow
sleep 1 seconds to avoid blocking
------<485>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DanielKraft_2011X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=couple+of+years+ago+when+i+was+attending+the+ted+conference+in+long+beach
found 1 videos: [['/talks/daniel_kraft_medicine_s_future_there_s_an_app_for_that', '2011']]
selected: /talks/daniel_kraft_medicine_s_future_there_s_an_app_for_that
sleep 1 seconds to avoid blocking
------<486>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DanielleFeinberg_2015P.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+was+seven+years+old+some+well+meaning+adult+asked+me+what+i+wanted+to+be+when+i+grew+up+proudly
found 1 videos: [['/talks/danielle_feinberg_the_magic_ingredient_that_brings_pixar_movies_to_life', '2016']]
selected: /talks/danielle_feinberg_the_magic_ingredient_that_brings_pixar_movies_to_life
sleep 3 seconds to avoid blocking
------<487>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DanielLevitin_2015G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+few+years+ago++i+broke+into+my+own+house
found 15 videos: [['/talks/joshua_prager_in_search_of_the_man_who_broke_my_neck', '2013'], ['/talks/amy_webb_how_i_hacked_online_dating', '2013'], ['/talks/mia_birdsong_the_story_we_tell_about_poverty_isn_t_true', '2015'], ['/talks/manal_al_sharif_a_saudi_woman_who_dared_to_drive', '2013'], ['/talks/jennifer_brea_what_happens_when_you_have_a_disease_doctors_can_t_diagnose', '2017'], ['/talks/adam_driver_my_journey_from_marine_to_actor', '2016'], ['/talks/shah_rukh_khan_thoughts_on_humanity_fame_and_love', '2017'], ['/talks/boyd_varty_what_i_learned_from_nelson_mandela', '2013'], ['/talks/carolyn_jones_a_tribute_to_nurses', '2017'], ['/talks/niki_okuk_when_workers_own_companies_the_economy_is_more_resilient', '2017'], ['/talks/andrew_solomon_depression_the_secret_we_share', '2013'], ['/talks/daniel_levitin_how_to_stay_calm_when_you_know_you_ll_be_stressed', '2015'], ['/talks/benjamin_grant_what_it_feels_like_to_see_earth_from_space', '2017'], ['/talks/keren_elazari_hackers_the_internet_s_immune_system', '2014'], ['/talks/edward_snowden_here_s_how_we_take_back_the_internet', '2014']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+had+just+driven+home+it+was+around+midnight+in+the+dead+of+montreal+winter+i+had+been+visiting+my+friend+jeff+across+town++and
found 1 videos: [['/talks/daniel_levitin_how_to_stay_calm_when_you_know_you_ll_be_stressed', '2015']]
selected: /talks/daniel_levitin_how_to_stay_calm_when_you_know_you_ll_be_stressed
sleep 2 seconds to avoid blocking
------<488>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DanielLibeskind_2009.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=start+with+my+favorite+muse++emily+dickinson+who+said+that
found 1 videos: [['/talks/daniel_libeskind_17_words_of_architectural_inspiration', '2009']]
selected: /talks/daniel_libeskind_17_words_of_architectural_inspiration
sleep 4 seconds to avoid blocking
------<489>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DanielPauly_2010Z.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+speak+about+a+tiny+little+idea++and+this+is+about+shifting+baseline++and+because+the+idea
found 1 videos: [['/talks/daniel_pauly_the_ocean_s_shifting_baseline', '2012']]
selected: /talks/daniel_pauly_the_ocean_s_shifting_baseline
sleep 2 seconds to avoid blocking
------<490>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DanielPink_2009G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=need+to+make+a+confession+at+the+outset+here+a+little+over+twenty+years+ago++i+did+something+that+i+regret+something+that+i+m+not
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=particularly+proud+of+something+that+in+many+ways+i+wish+no+one+would+ever+know++but+here+i+feel+kind+of
error: request timeout
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+a+moment+of+youthful+indiscretion+i+went+to+law+school
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+america++law+is+a+professional+degree+after+your+university+degree+you+go+on
found 1 videos: [['/talks/dan_pink_the_puzzle_of_motivation', '2009']]
selected: /talks/dan_pink_the_puzzle_of_motivation
sleep 1 seconds to avoid blocking
------<491>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DanielReisel_2013.stm
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+how+we+can+change+our+brains+and+our+society++meet+joe+joe+s+thirty+two+years+old
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+a+murderer++i+met+joe+thirteen+years+ago+on+the+lifer+wing+at+wormwood+scrubs
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=high+security+prison+in+london+i
found 3 videos: [['/talks/dan_reisel_the_neuroscience_of_restorative_justice', '2014'], ['/talks/misha_glenny_hire_the_hackers', '2011'], ['/talks/david_birch_a_new_way_to_stop_identity_theft', '2012']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=d+like+you+to+imagine+this+place+it+looks+and+feels+like+it+sounds+wormwood+scrubs
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=built+at+the+end+of+the+victorian+era+by+the+inmates+themselves++it+is+where+england+s+most+dangerous+prisoners+are+kept
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+individuals+have+committed+acts+of+unspeakable+evil
found 1 videos: [['/talks/dan_reisel_the_neuroscience_of_restorative_justice', '2014']]
selected: /talks/dan_reisel_the_neuroscience_of_restorative_justice
sleep 3 seconds to avoid blocking
------<492>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DanielSuarez_2013G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=d+probably+think+something+like+this
found 7 videos: [['/talks/tim_hansen_how_to_read_music', '2013'], ['/talks/nick_hanauer_beware_fellow_plutocrats_the_pitchforks_are_coming', '2014'], ['/talks/rajesh_rao_a_rosetta_stone_for_a_lost_language', '2011'], ['/talks/susan_cain_the_power_of_introverts', '2012'], ['/talks/latif_nasser_the_amazing_story_of_the_man_who_gave_us_modern_pain_relief', '2015'], ['/talks/peter_singer_the_why_and_how_of_effective_altruism', '2013'], ['/talks/charles_hazlewood_trusting_the_ensemble', '2011']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+m+actually+not+here+to+talk+about+fiction++i+m+here+to+talk+about+very+real+killer+robots+autonomous+combat+drones
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=referring+to+predator+and+reaper+drones++which+have+a+human+making+targeting+decisions+i+m+talking+about+fully+autonomous+robotic+weapons
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+make+lethal+decisions+about+human+beings+all+on+their+own+there+s+actually+a+technical+term+for+this+lethal+autonomy
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=killer+robots+would+take+many+forms
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=flying+driving+or+just+lying+in+wait
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+actually+they+re+very+quickly+becoming+a+reality
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+are+two+automatic+sniper+stations+currently+deployed+in+the+dmz+between+north+and+south+korea
found 1 videos: [['/talks/daniel_suarez_the_kill_decision_shouldn_t_belong_to_a_robot', '2013']]
selected: /talks/daniel_suarez_the_kill_decision_shouldn_t_belong_to_a_robot
sleep 1 seconds to avoid blocking
------<493>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DanielTammet_2011.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+a+savant+or+more+precisely+a
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=autistic+savant+it+s+a+rare+condition+and+rarer+still+when
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=very+often+when+i+meet+someone+and+they+learn+this+about+me+there+s+a+certain+kind+of+awkwardness
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+can+see+it+in+their+eyes+they+want+to+ask+me+something
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+in+the+end++quite+often+the+urge+is+stronger+than+they+are
found 1 videos: [['/talks/daniel_tammet_different_ways_of_knowing', '2011']]
selected: /talks/daniel_tammet_different_ways_of_knowing
sleep 5 seconds to avoid blocking
------<494>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DanielWolpert_2011G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+a+neuroscientist++and+in+neuroscience+we+have+to+deal+with+many+difficult+questions+about+the+brain
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+want+to+start+with+the+easiest+question+and+the+question+you+really+should+have+all+asked+yourselves+at+some+point+in+your+life
found 1 videos: [['/talks/daniel_wolpert_the_real_reason_for_brains', '2011']]
selected: /talks/daniel_wolpert_the_real_reason_for_brains
sleep 3 seconds to avoid blocking
------<495>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DanitPeleg_2015Y.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+past+few+months+i+ve+been+traveling+for+weeks+at+a+time+with+only+one+suitcase+of+clothes+one+day+i+was+invited+to+an+important+event+and+i+wanted+to+wear+something+special+and+new+for+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+looked+through+my+suitcase+and+i+couldn+t+find+anything+to+wear
found 1 videos: [['/talks/danit_peleg_forget_shopping_soon_you_ll_download_your_new_clothes', '2015']]
selected: /talks/danit_peleg_forget_shopping_soon_you_ll_download_your_new_clothes
sleep 4 seconds to avoid blocking
------<496>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DanMeyer_2010X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+please+recall+a+time+when+you+really+loved+something+a+movie+an+album+a+song+or+a+book+and+you+recommended+it+wholeheartedly
found 1 videos: [['/talks/dan_meyer_math_class_needs_a_makeover', '2010']]
selected: /talks/dan_meyer_math_class_needs_a_makeover
sleep 3 seconds to avoid blocking
------<497>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DannyDorling_2016X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+d+like+you+to+imagine+the+world+anew
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+d+like+to+show+you+some+maps+which+have+been+drawn+by+ben+hennig
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+the+planet+in+a+way+that+most+of+you+will+never+have+seen+the+planet
found 13 videos: [['/talks/simon_anholt_which_country_does_the_most_good_for_the_world', '2014'], ['/talks/rodin_lyasoff_how_autonomous_flying_taxis_could_change_the_way_you_travel', '2018'], ['/talks/armando_azua_bustos_the_most_martian_place_on_earth', '2017'], ['/talks/harry_cliff_have_we_reached_the_end_of_physics', '2016'], ['/talks/danny_dorling_maps_that_show_us_who_we_are_not_just_where_we_are', '2016'], ['/talks/ameenah_gurib_fakim_and_stephanie_busari_an_interview_with_mauritius_s_first_female_president', '2017'], ['/talks/jane_fonda_and_lily_tomlin_a_hilarious_celebration_of_lifelong_female_friendship', '2015'], ['/talks/sebastian_guo_why_we_need_to_pay_attention_to_chinese_millennials', '2017'], ['/talks/mac_stone_stunning_photos_of_the_endangered_everglades', '2015'], ['/talks/anna_rothschild_why_you_should_love_gross_science', '2018'], ['/talks/sara_seager_the_search_for_planets_beyond_our_solar_system', '2015'], ['/talks/emma_marris_nature_is_everywhere_we_just_need_to_learn_to_see_it', '2016'], ['/talks/amy_edmondson_how_to_turn_a_group_of_strangers_into_a_team', '2018']]
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=an+image+that+you+re+very+familiar+with
found 1 videos: [['/talks/peter_weinstock_lifelike_simulations_that_make_real_life_surgery_safer', '2017']]
selected: /talks/peter_weinstock_lifelike_simulations_that_make_real_life_surgery_safer
sleep 1 seconds to avoid blocking
------<498>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DannyHillis_1994.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+i+usually+take+the+role+of+trying+to+explain+to+people
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+wonderful+the+new+technologies+that+are+coming+along+are+going+to+be++and+i+thought+that+since+i+was+among+friends+here
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+would+tell+you+what+i+really+think+and+try+to+look+back+and+try+to+understand+what+is+really+going+on+here
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=jumps+in+technology+that+seem+so+fast+that+we+can+we+can+barely+keep+on+top+of+it++so+i+m+going+to+start+out+by+showing+just+one+very+boring+technology+slide
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+if+you+can+just+turn+on+the
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+just+a+random+slide+that+i+i+picked+out+of+my+file
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+i+want+to+show+you+is+not+so+much+the+details+of+the+slide+but+the+general+form+of+it+this+happens+to+be+a+slide+of+some+analysis+that+we+were+doing
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+power+of+risc+microprocessors+versus+the+power+of+local+area+networks
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+interesting+thing+about+it+is+that+this+slide+like+so+many+technology+slides+that+we+re+used+to+is+a+sort+of+a+straight
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=line+on+a+semi+log+curve
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+other+words+every+step+here+represents+an+order+of+magnitude+in+performance+scale
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+is+a+new+thing+that+we+talk+about+technology
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=something+really+weird+is+going+on+here++and+that+s+basically+what+i+m+going+to+be+talking+about+so+if+you+could+bring+up+the
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=bring+up+the+lights+higher+because+i+m+just+going+to+use+a+piece+of+paper+here
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+why+do+we+draw+technology+curves+in+semi+log+curves+well+the+answer+is+if+i+drew+it+on+a+normal+curve
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=where+let+s+say+this+is+years+this+is+time+of+some+sort++and+this+is+whatever+measure+of+the+technology
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+that+i+m+trying+to
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+graphs+look+sort+of+silly++they+sort+of+go+like+this+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+don+t+tell+us+much++now
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+i+graph+for+instance++some+other+technology+say+transportation+technology
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+a+semi+log+curve+it+would+look+very+stupid+it+would+look+like+a+flat+line+but
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+something+like+this+happens+things+are+qualitatively+changing++so+if+transportation+technology+was+moving+along+as+fast+as+microprocessor+technology
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+day+after+tomorrow+i+would+be+able+to+get+in+a+taxi+cab+and+be+in+tokyo+in+thirty+seconds
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+not+moving+like+that+and+there+s+nothing+precedented+in+the+history+of+technology+development+of+this+kind+of+self+feeding+growth+where+you+go+by+orders+of+magnitude+every+few+years
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+the+question+that+i+d+like+to+ask
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+look+at+these+these+exponential+curves++they+don+t+go+on+forever+things+just+can+t+possibly+keep+changing
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+fast+as+they+are+one+of+two+things+is+going+to+happen+either+it+s+going+to+turn+into+a+sort+of+classical+++s+curve
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+this++until+something+totally+different+comes+along+or+maybe+it+s+going+to+do+this
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+i+m+an+optimist+so+i+sort+of+think+it+s+probably+going+to+do+something+like+that
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+so+that+means+that+what+we+re+in+the+middle+of+right+now+is+a+transition+we+re+sort+of+on+this+line
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+a+transition+from+the+way+the+world+used+to+be+to+some+new+way+that+the+world+is
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+what+i+m+trying+to+ask+what+i+ve+been+asking+myself+is+what+s+this+new+way+that+the+world+is+what+s+that+new+state+that+the+world+is
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+transition+seems+very+very+confusing+when+we+re+right+in+the+middle+of+it+now+when+i+was+a+kid+growing+up
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+future+was+kind+of+the+year+two+thousand+and+people+used+to+talk+about+what+would+happen+in+the+year+two+thousand
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+here+s+a+conference+in+which+people+talk+about+the+future++and+you+notice+that+the+future+is+still+at+about+the+year+two+thousand+it+s+about+as+far+as+we+go
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+in+other+words+the+future+has+kind+of+been+shrinking+one+year+per+year
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+my+whole+lifetime+now+i+think+that+the+reason
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+because+we+all+feel+that+something+s+happening+there+that+transition+is+happening+we+can+all+sense+it
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+know+that+it+just+doesn+t+make+too+much+sense+to+think+out+thirty+fifty+years+because+everything+s+going+to+be+so+different
error: request timeout
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=doing+just+doesn+t+make+any+sense+at+all+so+what+i+would+like+to+talk+about+is+what+that+could+be+what+that+transition+could+be+that+we+re+going+through
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+in+order+to+do+that+i+m+going+to+have+to+talk+about+a+bunch+of+stuff+that+really+has+nothing+to+do+with
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=technology+and+computers+because+i+think+the+only+way+to+understand+this+is+to+really+step+back
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+take+a+long+time+scale+look+at+things+so+the+time+scale+that+i+would+like+to+look+at+this+on
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+time+scale+of+of+life+on+earth+so
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+picture+makes+sense+if+you+look+at+it+a+few+billion+years+at+a+time
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+if+you+go+back+about+two+and+a+half+billion+years++the+earth+was+this+big+sterile+hunk+of+rock+with+a+lot+of+chemicals+floating+around+on+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+look+at+the+way+that+the+chemicals+got+organized+we+begin+to+get+a+pretty+good+idea+of+how+they+do+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+think+that+there+s+theories+that+are+beginning+to+understand+about+how+it+started+with+rna+but+i+m+going+to+tell+a+sort+of+simple+story+of+it
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+is+that+at+that+time+there+were+little+drops+of+oil+floating+around+with+all+kinds+of+different+recipes+of+chemicals+in+them
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+some+of+those+drops+of+oil+had+a+particular+combination+of+chemicals+in+them
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+incorporate+chemicals+from+the+outside+and+grow+the+drops+of+oil
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+those+that+were+like+that+started+to+split+and+divide++and+those+were+the+most+primitive+forms+of+cells+in+a+sense+those+little+drops+of+oil
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+now+those+drops+of+oil+weren+t+really+alive+as+we+say+it+now+because+every+one+of+them+was+a+little+random+recipe+of+chemicals
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=unequal+division+of+the+chemicals+within+them+and+so+every+drop+was+a+little+bit+different
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+fact+the+drops+that+were+different+in+a+way+that+caused+them+to+be+better+at+incorporating+chemicals+around+them
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=grew+more+and+incorporated+more+chemicals+and+divided+more++so+those+tended+to+live+longer+get+expressed+more
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=just+a+very+simple+chemical+form+of+life
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+when+these+drops+learned+a+trick+about+abstraction++somehow
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+ways+that+we+don+t+quite+understand+these+little+drops+learned+to+write+down+information+they+learned+to+record+the+information+that+was+the+recipe+of+the+cell
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=onto+a+particular+kind+of+chemical
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+in+other+words+they+worked+out+in+this+mindless+sort+of+evolutionary+way
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+form+of+writing+that+let+them+write+down+what+they+were+so+that+that+way+of+writing+it+down+could+get+copied
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+amazing+thing+is+that+that+way+of+writing+seems+to+have+stayed+steady+since+it+evolved+two+and+a+half+billion+years+ago++in+fact+the+recipe+for+us+our+genes+is+exactly+that+same+code+and+that+same+way+of+writing
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+fact+every+living+creature+is+written
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+exactly+the+same+set+of+letters+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=same+code++in+fact+one+of+the+things+that+i+did+just+for+amusement+purposes+is+we+can+now+write+things+in+this+code+and+i+ve+got+here+a+little+one
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=try+not+to+let+the+security+people+see+at+airports+but+this+has+in+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+i+did+is+i+took+this+code
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+code+has+standard+letters+that+that+we+use+for+symbolizing+it++and+i+wrote+my+business+card+onto+a+piece+of+dna
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+amplified+it+ten+to+the+twenty+two+times
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+if+anyone+would+like+a+hundred+million+copies+of+my+business+card+i+have+plenty+for+everyone+in+the+room+and+in+fact+everyone+in+the+world++and+it+s+right+here
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+would+have+put+it+into+a+virus+and+released+it+in+the+room
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+what+was+the+next+step+writing+down+the+dna+was+an+interesting+step
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+caused+these+cells+that+kept+them+happy+for+another+billion+years++but+then+there+was+another+really+interesting+step+where+things+became+completely+different+which+is+these
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=cells+started+exchanging+and+communicating+information+so+that+they+began+to+get+communities+of+cells++i+don+t+know+if+you+know+this+but+bacteria+can+actually+exchange+dna+now
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+why+for+instance+antibiotic+resistance+has+evolved+some+bacteria+figured+out+how+to+stay+away+from+penicillin
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+went+around+sort+of+creating+its+little+dna+information+with
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=other+bacteria+and+now+we+have+a+lot+of+bacteria+that+are+resistant+to+penicillin+because+bacteria+communicate
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+what+this+communication+allowed+was+communities+to+form
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+in+some+sense+were+in+the+same+boat+together+they+were+synergistic
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+they+survived+or+they+failed+together+which+means+that+if+a+community+was+very+successful+all+the+individuals+in+that+community
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=were+repeated+more+and+they+were+favored+by
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+the+transition+point+happened+when+these+communities+got+so+close+that+in+fact+they+got+together+and+decided+to+write+down+the+whole+recipe+for+the+community+together
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+the+next+stage+that+s+interesting+in+life+took+about+another+billion+years+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+that+stage+we+have+multi+cellular+communities+communities+of+lots+of+different+types+of+cells++working+together
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+are+not+out+for+themselves+anymore+your+skin+cell+is+really+useless+without
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+heart+cell+muscle+cell+a+brain+cell+and+so+on
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+these+communities+began+to+evolve+so+that+the+interesting+level+on+which+evolution+was+taking+place+was+no+longer+a+cell
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+a+community+which+we+call+an+organism
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+the+next+step+that+happened
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=communities+of+cells++again+began+to+abstract+information+and+they+began+building+very+special+structures+that+did+nothing+but+process+information+within+the+community
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+those+are+the+neural+structures+so+neurons+are+the+information+processing+apparatus+that+those+communities+of+cells+built+up+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+fact+they+began+to+get+specialists+in+the+community+and+special+structures
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=understanding+learning+information+and+that+was+the+brains+and+the+nervous+system
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+those+communities++and+that+gave+them+an+evolutionary+advantage+because+at+that+point
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=learning+could+happen+within+the+time+span+of+a+single+organism++instead+of+over+this+evolutionary+time+span++so
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=an+organism+could+for+instance+learn+not+to+eat+a+certain+kind+of+fruit+because
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+tasted+bad+and+it+got+sick+last+time+it+ate
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+that+could+happen+within+the+lifetime+of+a+single+organism++whereas+before+they+d+built+these+special+information+processing+structures
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+would+have+had+to+be+learned+evolutionarily+over
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hundreds+of+thousands+of+years+by+by+the+individuals+dying+off+that+ate+that+kind+of+fruit++so+that+nervous+system+the+fact+that+they+built+these+special+information+structures
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=up+the+whole+process+of+evolution+because+evolution+could+now+happen+within+an+individual+it+could+happen+in+learning+time+scales+but
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=then+what+happened+was+the+individuals+worked+out+of+course+tricks+of+communicating
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+for+example+the+most+sophisticated+version+that+we+re+aware+of+is+human+language+it+s+really+a+pretty+amazing+invention+if+you+think+about+it+here+i+have+a+very
error: request timeout
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=idea+in+my+head+i+m+sitting+here+making+grunting+sounds+basically++and+hopefully+constructing+a+similar+messy+confused+idea+in+your+head+that+bears+some+analogy+to+it
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+we+re+taking+something+very+complicated+turning+it+into+sound++sequences+of+sounds+and+producing+something+very+complicated+in+your+brain
error: request timeout
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+allows+us+now+to+begin+to+start+functioning+as+a+single+organism
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+in+fact++what+we+ve+done
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+we+humanity+have+started+abstracting+out+we+re+going+through+the+same+levels+that+multi+cellular+organisms+have+gone+through
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=abstracting+out+our+methods+of+recording++presenting++processing+information++so+for+example+the+invention+of+language+was+a+tiny+step+in+that
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+on+are+all+our+specialized+mechanisms+that+we+ve+now+built+within+our+society+for+handling+that+information
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+all+connects+us+together
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=into+something+that+is+much+bigger+and+much+faster+and+able+to+evolve+than+than+what+we+were+before
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+now+evolution+can+take+place+on+a+scale+of+microseconds+and+you+saw+ty+s+little+evolutionary+example+where+he+sort+of+did+a+little+bit+of+evolution
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+the+convolution+program+right+before+your+eyes
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+now+we+ve+speeded+up+the+time+scales+once+again+so+the+first+steps+of+the+story+that+i+told+you+about+took+a+billion+years+a+piece
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+next+steps+like+nervous+systems+and+brains+took+a+few+hundred+million+years++then+the+next
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+language+and+so+on+took+less+than+a+million+years++and+these+next+steps+like+electronics+seem+to+be+taking+only+a+few+decades
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+process+is+feeding+on+itself+and+becoming
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+guess++autocatalytic+is+the+word+for+it+when+something+reinforces+its+rate+of+change+the+more+it+changes+the+faster+it+changes+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+that+that+s+what+we+re+seeing+here+in+this+explosion+of+curve+we+re+seeing+this+process+feeding+back+on+itself
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+know+that+the+mechanisms+that+i+use+to+design+computers+would+be+impossible
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=without+recent+advances+in+computers+so+right+now+what+i+do+is+i+design+objects+at+such+complexity
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+it+s+really+impossible+for+me+to+design+them+in+the+traditional+sense+i+don+t+know+what+every+transistor+in+the+connection+machine+does++there+are+billions
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+do+and+what+the+designers+at+thinking+machines+do+is+we+think+at+some+level+of+abstraction+and+then+we+hand+it+to+the+machine+and+the+machine+takes+it
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=beyond+what+we+could+ever+do+much+farther+and+faster+than+we+could+ever+do++and+in+fact+sometimes+it+takes+it+by+methods+that+we+don+t+quite+even+understand
error: request timeout
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+particularly+interesting+that+that+i+ve+been+using+a+lot+lately+is+evolution+itself++so+what+we+do+is+we+put
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+process+of+evolution+that+takes+place+on+the+microsecond+time+scale
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+for+example+in+the+most+extreme+cases++we+can+actually+evolve+a+program
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+starting+out+with+random+sequences+of+instructions++say+computer+would+you+please+make+a+hundred+million+random+sequences+of
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+would+you+please+run+all+of+those+random+sequences+of+instructions+run+all+of+those+programs+and+pick+out+the+ones+that+came+closest+to+doing+what+i+wanted
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+in+other+words+i+define+what+i+wanted+let+s+say+i+want+to+sort+numbers+as+a+simple+example+i+ve+done+it+with
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+find+the+programs+that+come+closest+to+sorting+numbers
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+of+course+random+sequences+of+instructions+are+very+unlikely+to+sort+numbers++so+none+of+them+will+really+do+it+but+one+of+them+by+luck+may
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=put+two+numbers+in+the+right+order
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=would+you+please+now+take+the+ten+percent+of+those+random+sequences+that+did+the+best+job++save+those+kill+off+the+rest
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+now+let+s+reproduce+the+ones+that+sorted+numbers+the+best
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+let+s+reproduce+them+by+a+process+of+recombination+analogous+to+sex+take+two+programs+and+they+produce+children+by+exchanging+their+subroutines+and+the+children+inherit+the+traits+of+the+subroutines+of+the
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+ve+got+now+a+new+generation+of+programs+that+are+produced+by+combinations+of+the+programs+that+did+a+little+bit+better+job++say+please+repeat+that+process+score+them+again++introduce+some+mutations+perhaps
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+try+that+again+and+do+that+for+another+generation
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+every+one+of+those+generations+just+takes+a+few+milliseconds
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+can+do+the+equivalent+of+millions+of+years+of+evolution+on+that
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+a+few+minutes+or+in+the+complicated+cases+in+a+few+hours
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+the+end+of+that+i+end+up+with+programs+that+are+absolutely+perfect+at+sorting+numbers
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+fact+they+are+programs+that+are+much+more+efficient+than+programs+i+could+have+ever+written+by+hand
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+if+i+look+at+those+programs+i+can+t+tell+you+how+they+work+i+ve+tried+looking+at+them+and+telling+you+how+they+work+they+re+obscure+weird+programs
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+they+do+the+job++and+in+fact+i+know
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=m+very+confident+that+they+do+the+job+because+they+come+from+a+line+of+hundreds+of+thousands+of+programs+that+did+the+job++in+fact+their+life+depended+on+doing+the+job
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=laughter+i+was+riding+in+a+seven+hundred+and+forty+seven+with+marvin+minsky+once+and+he+pulls+out+this+card+and+says+oh+look
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=look+at+this+it+says++this+plane+has+hundreds+of+thousands+of+tiny+parts+working+together+to+make+you+a+safe+flight
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=doesn+t+that+make+you+feel+confident
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+fact+we+know+that+the+engineering+process+doesn+t+work+very+well+when+it+gets+complicated
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+we+re+beginning+to+depend+on+computers+to+do+a+process+that+s+very+different
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=than+engineering+and+it+lets+us+produce+things+of+much+more+complexity+than+normal+engineering+lets+us+produce++and+yet+we+don+t
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=quite+understand+the+options+of+it+so+in+a+sense+it+s+getting+ahead+of+us
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+re+now+using+those+programs+to+make+much+faster+computers+so+that+we+ll+be+able+to+run+this+process+much+faster+so+it+s+feeding+back+on+itself+the
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thing+is+becoming+faster+and+that+s+why+i+think+it+seems+so+confusing+because+all+of+these+technologies+are+feeding+back+on+themselves
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+what+we+are+is+we+re+at+a+point+in+time+which+is+analogous+to+when+single+celled+organisms+were+turning+into+multi+celled+organisms+so+we
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=re+the+amoebas+and+we+can+t+quite+figure+out+what+the+hell+this+thing+is+we+re+creating+we+re+right+at+that+point+of+transition
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+think+that+there+really+is+something+coming+along+after+us+i+think+it+s+very+haughty+of+us+to+think+that+we+re+the+end+product+of+evolution
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+all+of+us+here+are+a+part+of+producing+whatever+that+next+thing+is
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+lunch+is+coming+along++and+i+think+i+will+stop+at+that+point+before+i+get+selected+out
found 0 videos: []
error: no video is found.
sleep 4 seconds to avoid blocking
------<499>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DannyHillis_2010P.stm
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+a+little+bit+nervous+here+because+i+m+going+to+say+some+radical+things+about+how+we+should+think+about+cancer+differently+to+an+audience+that+contains+a+lot+of+people+who
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=cancer+than+i+do++but+i+will+also+contest+that+i+m+not+as+nervous+as+i+should+be+because+i+m+pretty+sure+i+m+right+about+this
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+this+in+fact+will+be+the+way+that+we+treat+cancer+in+the+future
found 9 videos: [['/talks/william_li_can_we_eat_to_starve_cancer', '2010'], ['/talks/daniel_kraft_medicine_s_future_there_s_an_app_for_that', '2011'], ['/talks/danny_hillis_understanding_cancer_through_proteomics', '2011'], ['/talks/lauren_hodge_shree_bose_naomi_shah_award_winning_teenage_science_in_action', '2012'], ['/talks/alex_tabarrok_how_ideas_trump_crises', '2009'], ['/talks/harvey_fineberg_are_we_ready_for_neo_evolution', '2011'], ['/talks/julian_treasure_shh_sound_health_in_8_steps', '2010'], ['/talks/elizabeth_murchison_fighting_a_contagious_cancer', '2011'], ['/talks/yoav_medan_ultrasound_surgery_healing_without_cuts', '2011']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+order+to+talk+about+cancer+i+m+going+to
found 2 videos: [['/talks/ben_goldacre_battling_bad_science', '2011'], ['/talks/jason_fried_why_work_doesn_t_happen_at_work', '2010']]
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=get+the+big+slide+here+first+i+m+going+to+try+to+give+you+a+different+perspective+of+genomics+i+want+to+put+it+in+perspective
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+the+bigger+picture+of+all+the+other+things+that+are+going+on
found 13 videos: [['/talks/juan_enriquez_the_next_species_of_human', '2009'], ['/talks/christopher_mcdougall_are_we_born_to_run', '2011'], ['/talks/daniel_tammet_different_ways_of_knowing', '2011'], ['/talks/jonathan_foley_the_other_inconvenient_truth', '2012'], ['/talks/neil_pasricha_the_3_a_s_of_awesome', '2011'], ['/talks/garrett_lisi_an_8_dimensional_model_of_the_universe', '2008'], ['/talks/danny_hillis_understanding_cancer_through_proteomics', '2011'], ['/talks/andrea_ghez_the_hunt_for_a_supermassive_black_hole', '2009'], ['/talks/henry_markram_a_brain_in_a_supercomputer', '2009'], ['/talks/richard_wilkinson_how_economic_inequality_harms_societies', '2011'], ['/talks/alison_gopnik_what_do_babies_think', '2011'], ['/talks/jeremy_jackson_how_we_wrecked_the_ocean', '2010'], ['/talks/sean_carroll_distant_time_and_the_hint_of_a_multiverse', '2011']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+talk+about+something+you+haven+t+heard+so+much+about+which+is+proteomics+having+explained+those+that+will+set+up+for+what+i
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=think+will+be+a+different+idea+about+how+to+go+about+treating+cancer
found 2 videos: [['/talks/danny_hillis_understanding_cancer_through_proteomics', '2011'], ['/talks/david_agus_a_new_strategy_in_the_war_on_cancer', '2010']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+let+me+start+with+genomics++it+is+the+hot+topic+it+is+the+place+where+we+re+learning+the+most+this+is+the
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+it+has+its+limitations+and+in+particular+you+ve+probably+all+heard+the+analogy+that+the+genome+is+like+the+blueprint+of+your+body
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+if+that+were+only+true+it+would+be+great+but+it+s+not+it
found 16 videos: [['/talks/ray_kurzweil_a_university_for_the_coming_singularity', '2009'], ['/talks/michelle_obama_a_passionate_personal_case_for_education', '2009'], ['/talks/regina_dugan_from_mach_20_glider_to_hummingbird_drone', '2012'], ['/talks/steven_pinker_human_nature_and_the_blank_slate', '2008'], ['/talks/peter_diamandis_abundance_is_our_future', '2012'], ['/talks/james_hansen_why_i_must_speak_out_about_climate_change', '2012'], ['/talks/dan_gilbert_why_we_make_bad_decisions', '2008'], ['/talks/luca_turin_the_science_of_scent', '2008'], ['/talks/eames_demetrios_the_design_genius_of_charles_ray_eames', '2009'], ['/talks/robert_neuwirth_the_power_of_the_informal_economy', '2012'], ['/talks/bill_strickland_rebuilding_a_neighborhood_with_beauty_dignity_hope', '2008'], ['/talks/nathan_myhrvold_archeology_animal_photography_bbq', '2008'], ['/talks/bruce_feiler_the_council_of_dads', '2011'], ['/talks/margaret_wertheim_the_beautiful_math_of_coral', '2009'], ['/talks/david_byrne_how_architecture_helped_music_evolve', '2010'], ['/talks/nicholas_negroponte_one_laptop_per_child_two_years_on', '2008']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+like+the+parts+list+of+your+body++it+doesn+t+say+how+things+are+connected+what+causes+what+and+so+on
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+if+i+can+make+an+analogy+let+s+say+that+you+were+trying+to+tell+the+difference+between+a+good+restaurant+a+healthy+restaurant+and+a+sick+restaurant
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+all+you+had+was+the+list+of+ingredients+that+they+had+in+their+larder++so+it+might+be+that+if+you+went+to+a+french+restaurant
found 2 videos: [['/talks/danny_hillis_understanding_cancer_through_proteomics', '2011'], ['/talks/mark_bittman_what_s_wrong_with_what_we_eat', '2008']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+looked+through+it+and+you+found+they+only+had+margarine+and+they+didn+t+have+butter++you+could+say+ah+i+see+what+s+wrong+with+them+i+can+make+them+healthy
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+there+probably+are+special+cases+of+that+you+could+certainly+tell+the+difference+between+a+chinese+restaurant+and+a+french+restaurant+by+what+they+had+in+a
found 1 videos: [['/talks/danny_hillis_understanding_cancer_through_proteomics', '2011']]
selected: /talks/danny_hillis_understanding_cancer_through_proteomics
sleep 5 seconds to avoid blocking
------<500>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DannyHillis_2013.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+deceptively+large+there+s+actually+only+about+twenty+people+on+each+page
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+we+have+the+name+address+and+telephone+number+of+every+single+person
found 2 videos: [['/talks/danny_hillis_the_internet_could_crash_we_need_a_plan_b', '2013'], ['/talks/richard_ledgett_the_nsa_responds_to_edward_snowden_s_ted_talk', '2014']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+in+fact+everybody+s+listed+twice+because+it+s+sorted+once+by+name+and+once+by+email+address
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+were+only+two+other+dannys+on+the+internet+then+i+knew+them+both+we+didn+t+all+know+each+other+but+we+all+kind+of+trusted+each+other
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+that+basic+feeling+of+trust+permeated+the+whole+network++and+there+was+a+real+sense+that
found 1 videos: [['/talks/danny_hillis_the_internet_could_crash_we_need_a_plan_b', '2013']]
selected: /talks/danny_hillis_the_internet_could_crash_we_need_a_plan_b
sleep 1 seconds to avoid blocking
------<501>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DanPacholke_2014X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+organization+that+is+the+bucket+for+failed+social+policy
found 1 videos: [['/talks/dan_pacholke_how_prisons_can_help_inmates_live_meaningful_lives', '2014']]
selected: /talks/dan_pacholke_how_prisons_can_help_inmates_live_meaningful_lives
sleep 5 seconds to avoid blocking
------<502>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DanPallotta_2013.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=want+to+talk+about+social+innovation
found 12 videos: [['/talks/rodrigo_canales_the_deadly_genius_of_drug_cartels', '2013'], ['/talks/david_brooks_the_social_animal', '2011'], ['/talks/dan_pallotta_the_way_we_think_about_charity_is_dead_wrong', '2013'], ['/talks/steve_keil_a_manifesto_for_play_for_bulgaria_and_beyond', '2011'], ['/talks/toby_eccles_invest_in_social_change', '2013'], ['/talks/rebecca_mackinnon_let_s_take_back_the_internet', '2011'], ['/talks/mohamed_ali_the_link_between_unemployment_and_terrorism', '2013'], ['/talks/tim_berners_lee_a_magna_carta_for_the_web', '2014'], ['/talks/clay_shirky_how_the_internet_will_one_day_transform_government', '2012'], ['/talks/beth_noveck_demand_a_more_open_source_government', '2012'], ['/talks/amos_winter_the_cheap_all_terrain_wheelchair', '2012'], ['/talks/daniel_suarez_the_kill_decision_shouldn_t_belong_to_a_robot', '2013']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+social+entrepreneurship+i+happen+to+have+triplets+they+re+little+they+re+five+years+old+sometimes+i+tell+people+i+have+triplets
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+picture+of+the+kids+that+s+sage++and+annalisa+and+rider++now++i+also+happen+to+be+gay
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=being+gay+and+fathering+triplets+is+by+far+the+most+socially+innovative+socially+entrepreneurial+thing+i+have+ever+done
found 1 videos: [['/talks/dan_pallotta_the_way_we_think_about_charity_is_dead_wrong', '2013']]
selected: /talks/dan_pallotta_the_way_we_think_about_charity_is_dead_wrong
sleep 1 seconds to avoid blocking
------<503>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DanPallotta_2016.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+think+about+dreams+like+many+of+you+i+think+about+this+picture
found 19 videos: [['/talks/dan_pallotta_the_dream_we_haven_t_dared_to_dream', '2016'], ['/talks/minda_dentler_what_i_learned_when_i_conquered_the_world_s_toughest_triathlon', '2018'], ['/talks/deeyah_khan_what_we_don_t_know_about_europe_s_muslim_kids', '2017'], ['/talks/chetan_bhatt_dare_to_refuse_the_origin_myths_that_claim_who_you_are', '2017'], ['/talks/tim_urban_inside_the_mind_of_a_master_procrastinator', '2016'], ['/talks/sue_desmond_hellmann_a_smarter_more_precise_way_to_think_about_public_health', '2016'], ['/talks/fabien_cousteau_what_i_learned_from_spending_31_days_underwater', '2014'], ['/talks/jude_kelly_why_women_should_tell_the_stories_of_humanity', '2017'], ['/talks/robert_waldinger_what_makes_a_good_life_lessons_from_the_longest_study_on_happiness', '2015'], ['/talks/jose_miguel_sokoloff_how_christmas_lights_helped_guerrillas_put_down_their_guns', '2014'], ['/talks/sharon_brous_it_s_time_to_reclaim_religion', '2016'], ['/talks/linus_torvalds_the_mind_behind_linux', '2016'], ['/talks/stephen_wilkes_the_passing_of_time_caught_in_a_single_photo', '2016'], ['/talks/melissa_fleming_let_s_help_refugees_thrive_not_just_survive', '2014'], ['/talks/mia_birdsong_the_story_we_tell_about_poverty_isn_t_true', '2015'], ['/talks/brittney_cooper_the_racial_politics_of_time', '2017'], ['/talks/max_tegmark_how_to_get_empowered_not_overpowered_by_ai', '2018'], ['/talks/verna_myers_how_to_overcome_our_biases_walk_boldly_toward_them', '2014'], ['/talks/arthur_brooks_a_conservative_s_plea_let_s_work_together', '2016']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+eight+when+i+watched+neil+armstrong
found 2 videos: [['/talks/chris_hadfield_what_i_learned_from_going_blind_in_space', '2014'], ['/talks/dan_pallotta_the_dream_we_haven_t_dared_to_dream', '2016']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=step+off+the+lunar+module+onto+the+surface+of+the+moon+i+had+never
found 1 videos: [['/talks/dan_pallotta_the_dream_we_haven_t_dared_to_dream', '2016']]
selected: /talks/dan_pallotta_the_dream_we_haven_t_dared_to_dream
sleep 4 seconds to avoid blocking
------<504>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DanPhillips_2010X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=between+seventy+and+eighty+percent+recycled+material+stuff+that+was+headed+to+the+mulcher+the+landfill+the+burn+pile
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+all+just+gone+this+is+the+first+house+i+built
found 13 videos: [['/talks/roz_savage_why_i_m_rowing_across_the_pacific', '2010'], ['/talks/jamie_heywood_the_big_idea_my_brother_inspired', '2010'], ['/talks/stephen_ritz_a_teacher_growing_green_in_the_south_bronx', '2012'], ['/talks/dan_phillips_creative_houses_from_reclaimed_stuff', '2010'], ['/talks/juan_enriquez_the_next_species_of_human', '2009'], ['/talks/john_graham_cumming_the_greatest_machine_that_never_was', '2012'], ['/talks/deb_roy_the_birth_of_a_word', '2011'], ['/talks/frank_gehry_a_master_architect_asks_now_what', '2008'], ['/talks/willard_wigan_hold_your_breath_for_micro_sculpture', '2009'], ['/talks/rob_hopkins_transition_to_a_world_without_oil', '2009'], ['/talks/corneille_ewango_a_hero_of_the_congo_forest', '2008'], ['/talks/danny_hillis_understanding_cancer_through_proteomics', '2011'], ['/talks/ethan_zuckerman_listening_to_global_voices', '2010']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+double+front+door+here+with+the+three+light+transom+that+was+headed+to+the+landfill
found 1 videos: [['/talks/dan_phillips_creative_houses_from_reclaimed_stuff', '2010']]
selected: /talks/dan_phillips_creative_houses_from_reclaimed_stuff
sleep 3 seconds to avoid blocking
------<505>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DaphneBavelier_2012X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+a+brain+scientist+i+m+actually+interested+in+how+the+brain+learns
found 1 videos: [['/talks/ami_klin_a_new_way_to_diagnose_autism', '2012']]
selected: /talks/ami_klin_a_new_way_to_diagnose_autism
sleep 3 seconds to avoid blocking
------<506>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DaphneKoller_2012G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+many+of+you+i+m+one+of+the+lucky+people+i+was+born+to+a+family+where+education+was+pervasive
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+a+third+generation+phd+a+daughter+of+two+academics+in+my+childhood+i+played+around+in+my+father+s+university+lab
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+it+was+taken+for+granted+that+i+attend+some
found 2 videos: [['/talks/daphne_koller_what_we_re_learning_from_online_education', '2012'], ['/talks/michael_specter_the_danger_of_science_denial', '2010']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+the+best+universities+which+in+turn+opened+the+door+to+a+world+of+opportunity
found 1 videos: [['/talks/daphne_koller_what_we_re_learning_from_online_education', '2012']]
selected: /talks/daphne_koller_what_we_re_learning_from_online_education
sleep 1 seconds to avoid blocking
------<507>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DariavandenBercken_2014S.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+flew+over+a+crowd+of+thousands+of+people+in+brazil+playing+music+by+george++frideric+handel
found 1 videos: [['/talks/daria_van_den_bercken_why_i_take_the_piano_on_the_road_and_in_the_air', '2014']]
selected: /talks/daria_van_den_bercken_why_i_take_the_piano_on_the_road_and_in_the_air
sleep 5 seconds to avoid blocking
------<508>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DaveBrain_2015X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+be+here++i+m+glad+you+re+here++because+that+would+be+a+little+weird
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+glad+we+re+all+here++and+by+here+i+don+t+mean+here
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=mean+those+of+us+in+this+auditorium++but+life+all+life+on+earth
found 2 videos: [['/talks/dave_brain_what_a_planet_needs_to_sustain_life', '2016'], ['/talks/wendy_freedman_this_telescope_might_show_us_the_beginning_of_the_universe', '2015']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=from+complex+to+single+celled+from+mold+to+mushrooms+to+flying+bears+laughter
found 1 videos: [['/talks/dave_brain_what_a_planet_needs_to_sustain_life', '2016']]
selected: /talks/dave_brain_what_a_planet_needs_to_sustain_life
sleep 2 seconds to avoid blocking
------<509>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavedeBronkart_2010X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+an+amazing+thing+that+we+re+here+to+talk+about+the+year+of+patients+rising
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+heard+stories+earlier+today+about+patients+who+are+taking+control+of+their+cases
found 2 videos: [['/talks/dave_debronkart_meet_e_patient_dave', '2011'], ['/talks/ed_boyden_a_light_switch_for_neurons', '2011']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=patients+who+are+saying+you+know+what+i+know+what+the+odds+are++but+i+m+going+to+look+for+more+information+i+m+going+to+define
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=define+what+the+terms+of+my+success+are
found 10 videos: [['/talks/melinda_gates_what_nonprofits_can_learn_from_coca_cola', '2010'], ['/talks/simon_sinek_how_great_leaders_inspire_action', '2010'], ['/talks/r_a_mashelkar_breakthrough_designs_for_ultra_low_cost_products', '2010'], ['/talks/michael_merzenich_growing_evidence_of_brain_plasticity', '2009'], ['/talks/dave_debronkart_meet_e_patient_dave', '2011'], ['/talks/simon_lewis_don_t_take_consciousness_for_granted', '2011'], ['/talks/hans_rosling_the_good_news_of_the_decade_we_re_winning_the_war_against_child_mortality', '2010'], ['/talks/john_wooden_the_difference_between_winning_and_succeeding', '2009'], ['/talks/dan_buettner_how_to_live_to_be_100', '2010'], ['/talks/rachel_botsman_the_case_for_collaborative_consumption', '2010']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+be+sharing+with+you+how+four+years+ago+i+almost+died+found+out+i+was+in+fact++already+almost+dead+and+what+i+then+found+out+about+what+s+called+the
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=explain+what+that+term+means+i+had+been+blogging+under+the+name+patient+dave+and+when+i+discovered+this+i+just+renamed
found 1 videos: [['/talks/dave_debronkart_meet_e_patient_dave', '2011']]
selected: /talks/dave_debronkart_meet_e_patient_dave
sleep 4 seconds to avoid blocking
------<510>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DaveEggers_2008.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thank+you+so+much+everyone+from+ted+and+chris+and+amy+in+particular+i+cannot+believe
found 2 videos: [['/talks/dave_eggers_my_wish_once_upon_a_school', '2008'], ['/talks/sarah_jones_a_one_woman_global_village', '2009']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+here+i+have+not+slept+in+weeks+neil+and+i+were+sitting+there+comparing+how+little+we+ve+slept
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+anticipation+for+this+i+ve+never+been+so+nervous+and+i+do+this+when+i+m+nervous+i+just+realized
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+talk+about+sort+of+what+we+did+at+this+organization+called+eight+hundred+and+twenty+six+valencia+and+then+i+m+going+to+talk+about+how+we+all+might+join+in+and+do+similar+things+back+in+about+two+thousand++i+was
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+living+in+brooklyn++i+was+trying+to+finish+my+first+book+i+was+wandering+around+dazed+every+day+because+i+wrote+from
found 1 videos: [['/talks/dave_eggers_my_wish_once_upon_a_school', '2008']]
selected: /talks/dave_eggers_my_wish_once_upon_a_school
sleep 5 seconds to avoid blocking
------<511>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DaveIsay_2015.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+try+to+make+the+case+that+inviting+a+loved+one+a+friend+or+even+a+stranger+to+record+a+meaningful+interview+with+you
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=just+might+turn+out+to+be+one+of+the+most+important+moments+in+that+person+s+life++and+in+yours+when+i+was
found 2 videos: [['/talks/travis_kalanick_uber_s_plan_to_get_more_people_into_fewer_cars', '2016'], ['/talks/kate_adams_4_larger_than_life_lessons_from_soap_operas', '2016']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=twenty+two+years+old+i+was+lucky+enough+to+find+my+calling+when+i+fell+into+making+radio+stories
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+almost+the+exact+same+time+i+found+out+that+my+dad+who+i+was+very+very+close+to
found 7 videos: [['/talks/dave_isay_everyone_around_you_has_a_story_the_world_needs_to_hear', '2015'], ['/talks/johann_hari_everything_you_think_you_know_about_addiction_is_wrong', '2015'], ['/talks/sebastian_bortnik_the_conversation_we_re_not_having_about_digital_child_abuse', '2017'], ['/talks/celeste_headlee_10_ways_to_have_a_better_conversation', '2016'], ['/talks/kevin_b_jones_why_curiosity_is_the_key_to_science_and_medicine', '2016'], ['/talks/andrew_solomon_love_no_matter_what', '2013'], ['/talks/nancy_kanwisher_a_neural_portrait_of_the_human_mind', '2014']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+gay+i+was+taken+completely+by+surprise+we+were+a+very+tight+knit+family
found 1 videos: [['/talks/dave_isay_everyone_around_you_has_a_story_the_world_needs_to_hear', '2015']]
selected: /talks/dave_isay_everyone_around_you_has_a_story_the_world_needs_to_hear
sleep 2 seconds to avoid blocking
------<512>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DaveMeslin_2010X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+often+do+we+hear+that+people+just+don+t+care++how+many+times+have+you+been+told+that+real+substantial+change+isn+t+possible
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+most+people+are+too+selfish+too+stupid+or+too+lazy+to+try+to+make+a+difference+in+their+community++i+propose+to+you+today+that+apathy
found 1 videos: [['/talks/dave_meslin_the_antidote_to_apathy', '2011']]
selected: /talks/dave_meslin_the_antidote_to_apathy
sleep 2 seconds to avoid blocking
------<513>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DaveTroy_2014U.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+we+think+about+mapping+cities+we+tend+to+think+about+roads+and+streets+and+buildings
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+settlement+narrative+that+led+to+their+creation+or+you+might+think+about+the+bold+vision+of+an+urban+designer
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+there+s+other+ways+to+think+about+mapping+cities+and+how+they+got+to+be+made++today+i+want+to+show+you+a+new+kind+of+map+this+is
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+a+geographic+map+this+is+a+map+of+the+relationships+between+people+in+my+hometown+of+baltimore+maryland
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+what+you+can+see+here+is+that+each+dot+represents+a+person+each+line+represents+a+relationship+between+those+people+and+each+color+represents+a+community+within+the+network
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+i+m+here+on+the+green+side+down+on+the+far+right
found 2 videos: [['/talks/anant_agarwal_why_massive_open_online_courses_still_matter', '2014'], ['/talks/chip_kidd_the_art_of_first_impressions_in_design_and_life', '2015']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=side+of+the+network+you+tend+to+have+primarily++african+american+and+latino+folks+who+are+really+concerned+about+somewhat+different+things+than+the+geeks+are
found 1 videos: [['/talks/dave_troy_social_maps_that_reveal_a_city_s_intersections_and_separations', '2014']]
selected: /talks/dave_troy_social_maps_that_reveal_a_city_s_intersections_and_separations
sleep 1 seconds to avoid blocking
------<514>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidAgus_2009P.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+a+cancer+doctor+and+i+walked+out+of+my+office+and+walked+by+the+pharmacy+in+the+hospital
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=three+or+four+years+ago++and+this+was+the+cover+of+fortune+magazine+sitting+in+the+window+of+the+pharmacy
found 1 videos: [['/talks/david_agus_a_new_strategy_in_the_war_on_cancer', '2010']]
selected: /talks/david_agus_a_new_strategy_in_the_war_on_cancer
sleep 5 seconds to avoid blocking
------<515>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidAnderson_2013X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+raise+your+hand+if+you+know+someone+in+your+immediate+family+or+circle+of+friends+who+suffers+from+some+form+of+mental+illness+yeah
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+thought+so+not+surprised++and+raise+your+hand+if+you+think+that+basic+research+on+fruit+flies+has+anything+to+do
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+understanding+mental+illness+in+humans
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=yeah+i+thought+so+i+m+also+not+surprised+i+can+see+i+ve+got+my+work+cut+out+for+me+here
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+we+heard+from+dr+insel+this+morning+psychiatric+disorders+like+autism+depression+and+schizophrenia+take+a+terrible+toll+on+human+suffering
found 1 videos: [['/talks/david_anderson_your_brain_is_more_than_a_bag_of_chemicals', '2013']]
selected: /talks/david_anderson_your_brain_is_more_than_a_bag_of_chemicals
sleep 2 seconds to avoid blocking
------<516>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidAutor_2016X.stm
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+forty+five+years+since+the+introduction+of+the+automated+teller+machine+those+vending+machines+that+dispense+cash
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+number+of+human+bank+tellers+employed+in+the+united+states+has+roughly+doubled+from+about+a+quarter+of+a+million
found 1 videos: [['/talks/david_autor_will_automation_take_away_all_our_jobs', '2016']]
selected: /talks/david_autor_will_automation_take_away_all_our_jobs
sleep 3 seconds to avoid blocking
------<517>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidBinder_2012G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+had+been+waiting+my+whole+life+to+get+to+sydney++i+got+to+the+airport+to+the+hotel+checked+in+and+sitting+there+in+the+lobby+was+a+brochure+for+the+sydney+festival+i+thumbed+through+it+and+i+came+across+a+show+called
found 1 videos: [['/talks/david_binder_the_arts_festival_revolution', '2012']]
selected: /talks/david_binder_the_arts_festival_revolution
sleep 5 seconds to avoid blocking
------<518>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidBirch_2012X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=talk+about+identity+that+s+sort+of+an+interesting+enough+topic+to+me+and+the+reason+was+because+when+i+was+asked+to+do+this+i+d+just+read+in
found 1 videos: [['/talks/david_birch_a_new_way_to_stop_identity_theft', '2012']]
selected: /talks/david_birch_a_new_way_to_stop_identity_theft
sleep 2 seconds to avoid blocking
------<519>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidBismark_2010G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=few+things+that+bring+us+humans+together+in+the+way+that+an+election+does+we+stand+in+elections+we+vote+in+elections+we+observe+elections
found 1 videos: [['/talks/david_bismark_e_voting_without_fraud', '2010']]
selected: /talks/david_bismark_e_voting_without_fraud
sleep 1 seconds to avoid blocking
------<520>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidBlaine_2009P.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+a+magician+i+try+to+create+images+that+make+people+stop+and+think++i+also+try+to+challenge+myself+to+do+things+that
found 1 videos: [['/talks/david_blaine_how_i_held_my_breath_for_17_minutes', '2010']]
selected: /talks/david_blaine_how_i_held_my_breath_for_17_minutes
sleep 3 seconds to avoid blocking
------<521>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidBolinsky_2007.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+come+from+a+slightly+different+point+of+view+i+ve+been+watching+since+i+grew+up+the+expressions+of+truth+and+beauty+in+the+arts+and+truth+and+beauty+in+the+sciences+and+while+these+are+both+wonderful+things+in+their+own
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=very+wonderful+things+going+for+them+truth+and+beauty+as+as+ideals+that+can+be+looked+at+by+the+sciences+and+by+math+are+are+almost+like+the+ideal+conjoined+twins+that+a+scientist+would+want+to+date
found 1 videos: [['/talks/david_bolinsky_visualizing_the_wonder_of_a_living_cell', '2007']]
selected: /talks/david_bolinsky_visualizing_the_wonder_of_a_living_cell
sleep 3 seconds to avoid blocking
------<522>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidBrooks_2011.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=got+my+current+job+i+was+given+a+good+piece+of+advice+which+was+to+interview+three+politicians+every+day
found 1 videos: [['/talks/david_brooks_the_social_animal', '2011']]
selected: /talks/david_brooks_the_social_animal
sleep 3 seconds to avoid blocking
------<523>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidBrooks_2014U.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+ve+been+thinking+about+the+difference+between+the+rsum+virtues+and+the+eulogy+virtues+the+rsum+virtues+are+the+ones+you+put+on+your+rsum+which
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+the+skills+you+bring+to+the+marketplace+the+eulogy+virtues+are+the+ones+that+get+mentioned+in+the+eulogy+which+are+deeper+who+are+you+in+your+depth
found 1 videos: [['/talks/david_brooks_should_you_live_for_your_resume_or_your_eulogy', '2014']]
selected: /talks/david_brooks_should_you_live_for_your_resume_or_your_eulogy
sleep 4 seconds to avoid blocking
------<524>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidBurkus_2016X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+much+do+you+get+paid+don
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=t+answer+that+out+loud++but+put+a+number+in+your+head++now+how+much+do+you+think+the+person+sitting+next+to+you+gets+paid
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+much+do+you+think+the+person+sitting+in+the+cubicle+or+the+desk+next+to+you+gets+paid
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=do+you+know+should+you+know++notice+it+s+a+little+uncomfortable+for+me+to+even+ask+you+those+questions++but+admit+it
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+kind+of+want+to+know++most+of+us+are+uncomfortable+with+the+idea+of+broadcasting+our
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+supposed+to+tell+our+neighbors+and+we+re+definitely+not+supposed+to+tell+our+office+neighbors
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+assumed+reason+is+that+if+everybody+knew+what+everybody+got+paid++then+all+hell+would+break+loose+there+d+be+arguments+there+d+be+fights+there+might+even+be+a+few+people+who+quit
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+what+if+secrecy+is+actually+the+reason+for+all+that+strife+and+what+would+happen+if+we+removed+that+secrecy
found 1 videos: [['/talks/david_burkus_why_you_should_know_how_much_your_coworkers_get_paid', '2016']]
selected: /talks/david_burkus_why_you_should_know_how_much_your_coworkers_get_paid
sleep 2 seconds to avoid blocking
------<525>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidByrne_2010.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+the+venue+where+as+a+young+man+some+of+the+music+that+i+wrote+was+first+performed
found 1 videos: [['/talks/david_byrne_how_architecture_helped_music_evolve', '2010']]
selected: /talks/david_byrne_how_architecture_helped_music_evolve
sleep 1 seconds to avoid blocking
------<526>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidCamarillo_2016X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+word+concussion+evokes+a+fear+these+days+more+so+than+it+ever+has+and+i+know+this+personally
found 1 videos: [['/talks/david_camarillo_why_helmets_don_t_prevent_concussions_and_what_might', '2016']]
selected: /talks/david_camarillo_why_helmets_don_t_prevent_concussions_and_what_might
sleep 3 seconds to avoid blocking
------<527>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidCameron_2010.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+that+basis+i+feel+like+i+ve+really+arrived++the+other+thing+to+think+of+is+what+an+honor+it+is+as+a+politician+to+give+a+ted+talk
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=politics+with+the+expenses+scandal+has+sunk+so+low+there+was+even+a+story+recently+that+scientists+had+thought+about+actually+replacing
found 1 videos: [['/talks/david_cameron_the_next_age_of_government', '2010']]
selected: /talks/david_cameron_the_next_age_of_government
sleep 4 seconds to avoid blocking
------<528>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidCarson_2003.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=up+till+the+pretty+much+last+few+days+but+was+denied+access+to+a+slide+projector
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+neat+thing+about+a+slide+projector+is+you+can+actually+focus+the+work+unlike+powerpoint+and+some+other+programs
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+are+certain+concessions+and+you+know
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+use+a+slide+projector+you+re+not+able+to+have+the+the+bad+type+swing+in+from+the+back+or+the+side+or+up+or+down
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+maybe+that+s+an+o+k+trade+off+to+trade+that+off+for+a+focus+it+s+a+thought+just+a
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thought+and+there+s+something+nice+about+slides+getting+stuck
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+thing+you+really+hope+for+is+occasionally+they+burn+up++which+we+won+t+see+tonight++so
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+that+let+s+get+the+first+slide+up+here+this+as+many+of+you+have+probably+guessed+is+a
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=recently+emptied+beer+can+in+portugal
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+i+had+just+arrived+in+barcelona+for+the+first+time++and+i+thought+you+know++fly+all+night
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+thought+wow+how+clean+you+come+into+this+major+airport+and+they+simply+have+a+b
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+mean+how+nice+is+that+everything+s+gotten+simpler+in+design+and+here+s+this
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=mega+airport+and+god+i+just+i+took+a+picture+i+thought+god+that+is+the+coolest+thing+i+ve+ever+seen+at+an+airport
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=till+a+couple+months+later++i+went+back+to+the+same+airport+same+plane+i+think+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=looked+up+and+it+said+c
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+only+then+that+i+realized+it+was+simply+a+gate+that+i+was+coming+into+i+m
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+message+that+s+sent+before+somebody+begins+to+read+before+they+get+the+rest+of+the+information+what+is+the+emotional+response+they+get+to+the+product+to+the+story+to+the+painting+whatever+it+is
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+area+of+design+interests+me+the+most+and+i+think+this+for+me+is+a+real+clear
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+what+i+m+talking+about+these+are+a+couple+of+garage+doors+painted+identical++situated+next+to+each+other+so+here+s+the+first+door
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+get+the+message++you+know+it+s+pretty+clear++take+a+look+at+the+second+door
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+see+if+there+s+any+different+message+o+k+which+one+would+you+park+in+front+of
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=same+color+same+message+same+words+the+only+thing+that+s+different+is+the+expression+that+the+individual+door+owner+here+put+into+the+piece
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=yet+it+doesn+t+say+that+it+doesn+t+need+to+say+that+i+would+probably+park+in+front+of+the+other+one
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+sure+a+lot+of+you+are+aware+that+graphic+design+has+gotten+a+lot+simpler+in+the+last
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=five+years+or+so+it+s+gotten+so+simple+that+it+s+already+starting+to+kind+of+come+back+the+other+way+again+and+get+a+little+more+expressive+but+i+was+in+milan+and+saw+this+street+sign+and+was+very+happy+to
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=see+that+apparently+this+idea+of+minimalism+has+even+been+translated+by+the+graffiti+artist+laughter
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+graffiti+artist+has+come+along+made+this+sign+a+little+bit+better++and+then+moved+on
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+didn+t+overpower+it+like+they+have+a+tendency+to+do
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+took+some+photos+and+this+is
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+billboard+in+florida+and+either+they+hadn+t+paid+their+rent+or+they+didn+t+want+to+pay+their+rent+again+on+the+sign+and+the+billboard+people+were+too+cheap+to+tear+the+whole+sign+down+so+they+just+teared+out+sections+of+it
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+would+argue+that+it+s+possibly+more+effective+than+the+original+billboard
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+terms+of+getting+your+attention+getting+you+to+look+over+that+way+and+hopefully+you+don+t+stop+and+buy+those+awful+pecan+things
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=stuckey+s+this+is+from+my
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=second+book+the+first+book+is+called+the+end+of+print+and+it+was+done
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=along+with+a+film++working+with+william+burroughs+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+end+of+print+is+now+in+its+fifth+printing
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+first+contacted+william+burroughs+about+being+part+of+it+he+said+no+he+said+he+didn+t+believe+it+was+the+end+of
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=print++and+i+said+well+that+s+fine+i+just+would+love+to+have+your+input+on+this+film+and+and+this+book+and+he+finally+agreed+to+it+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+the+end+of+the+film+he++says+in+this+great+voice+that+i+can+t+mimic+but+i+ll+kind+of+try+but+not+really
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=apparently+when+photography+was+perfected+there+were+people
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=going+around+saying+that+s+it+you+ve+just+ruined+painting+people+are+just+going+to+take+pictures+now
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+of+course++that+wasn+t+the+case+so+this+is+from+2nd+sight+a+book+i+did+on+intuition+i+think+it+s
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+the+only+ingredient+in+design+but+possibly
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+most+important+it+s+something+everybody+has+it+s+not+a+matter+of+teaching+it+in+fact+most+of+the+schools+tend+to+discount
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=intuition+as+an+ingredient+of+your+working+process
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+they+can+t+quantify+it+it+s+very+hard+to+teach+people+the+four+steps+to+intuitive+design+but+we+can+teach+you+the+four+steps+to+a+nice+business+card
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+a+newsletter+so+it+tends+to+get+discounted+this+is+a+quote
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+intellect+has+little+to+do+on+the+road+to+discovery+there+comes+a+leap+in+consciousness+call+it+intuition+or+what+you+will
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+solution+just+comes+to+you+and+you+don+t+know+from+where+or+why
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+it+s+kind+of+like+when+somebody+says+who+did+that+song+and+the+more+you+try+to+think+about+it++the+further+the+answer+gets+from+you+and+the+minute+you+stop+thinking+about+it+your+intuition+gives+you+that+answer+in+a+sense
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+this+for+a+couple+of+reasons+if+you+ve+had+any+design+courses+they+would+teach+you+you+can+t+read+this
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+you+eventually+can+and+more+importantly+i+think+it+s+true+don+t+mistake+legibility+for+communication+just+because+something+s+legible+doesn+t+means+it+communicates+more+importantly+it+doesn+t+mean+it+communicates+the+right+thing+so+what+is+the+message+sent+before
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sometimes+an+overlooked+area++this+is+working+with+marshall+mcluhan+i+stayed+and+worked+with+his
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=wife+and+son+eric++and+we+we+came+up+with
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=close+to+six+hundred+quotes+from+marshall+that+are+just+amazing+in+terms+of+being+ahead+of+the+times+predicting+so+much+of+what+has+happened+in+the
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=advertising+television+media+world++and+so+this+book+is+called
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=another+word+for+quotes++and+it+s+a+lot+of+them+are+never
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+never+been+published+before+and+basically+i+ve+interpreted
error: request timeout
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+this+was+the+contents+page+originally+when+i+got+done+it+was+five+hundred+and+forty+pages++and+then+the+the+publisher+gingko+press++ended+up
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=cutting+it+down+considerably+it+s+just+under+four+hundred+pages+now+but+i+decided+i+liked+this+contents+page+i+liked+the+way+it+looks
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+now+has+no+relevance+to+the+book+whatsoever+but+it+s+a+nice+spread++i+think+in+there
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+a+couple+spreads+from+the+book+here+mcluhan+says+the+new+media+are+not+bridges+between+man+and+nature++they+are+nature
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=invention+of+printing+did+away+with+anonymity++fostering+ideas+of+literary+fame+and+the+habit+of+considering+intellectual+effort+as+private+property
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+had+never+been+done+before+printing
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+new+technologies+impose+themselves+on+societies+long+habituated+to+older+technologies+anxieties+of+all+kinds+result
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=while+people+are+engaged+in+creating+a+totally+different+world+they+always
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=form+vivid+images+of+the+preceding+world
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+hate+this+stuff+it+s+hard+to+read
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=except+the+globe+and+no+possible+occupation+except+information+gathering
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+was+it+that+s+all+he+saw+as+the+options+and+not+too+far+off+so
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+a+project+for+nine+inch+nails+and+i+only+show+it+because+it+seemed+like+it+got+all+this+relevancy+all+of+a+sudden+and+it+was+done+right+after+nine+eleven
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+bomb+shelter+in+the+backyard+of+a+house+i
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=bought+in+la+that+the+real+estate+person+hadn+t+pointed+out+there+was
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+bomb+shelter+built+apparently+in+the++60s+cuban+missile+crisis+and+i+asked+the+real+estate+guy+what+it+was+as+we+were+walking+by+and+he+goes+it+s+something+to+do+with+the+sewage+system+i+was+o+k+that+s
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+finally+went+down+there+and+it+was+this+old+rusted
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=circular+thing+and+two+beds+and+very+kind+of+creepy+and+weird+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=also+surprisingly+it+was+done+in+kind+of+a+cheap+metal+and+it+had+completely+rusted+through+and+water+everywhere+and+spiders+and+i+thought+you+know
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+were+they+thinking+you+d+think+maybe+cement+possibly+or+something+but
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=used+this+for+a+cover+for+the+nine+inch+nails+dvd++and+i+ve+also+now+fixed
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=trying+to+use+print+as+a+medium+to+get+people+to+the+web+so+this+is+a+six+shot+sequence
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+taken+one+shot+i+cropped+it+a+few+different+ways++and+then+the+tiny+line+of+copy+says+if+you+want+to+see+this
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=entire+sequence+how+this+whole+ride+was+go+to+the+website+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+guess+is+that+a+lot+of+the+surf+kids+did+go+to+the+site+to+to+get+this+entire+picture
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=got+no+way+of+tracking+it+so+i+could+be+totally+wrong
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+don+t+have+the+site+it+s+just+the+piece+itself+this+is+a+group+in+new+york+called+the+coalition+for+a+smoke+free+environment+asked+me+to+do+these+posters
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=were+wild+posted+around+new+york+city+you+can+t+really+well+you+can+t+see+it+at+all+but+the+second+line+is+really+the+more+kind+of+payoff+in+a+sense+it+says
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+the+cigarette+companies+can+lie+then+so+can+we
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=grunge+type+or+something+it+looked+like+they+might+be+real+anyway
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=poster+for+atlantic+center+for+the+arts+a+school+in+florida++this+amazes+me+this+is+a+product+i+just+found+out+i+was+in+the
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=caribbean+at+christmas+and+i+m+just+blown+away+that+in+this+day+and+age+they+will+still+sell+not+that+they+will+sell+that+there+is+felt+a+need+for+people+to+lighten+the+color+of+their+skin++this+was+either+an+old+product+with+new+packaging
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+just+thought+yikes+how+s+that+still+happening
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+do+a+lot+of+workshops+all+over+the+world+really+and+this+particular+assignment+was+to+come+up+with+new+symbols+for+the+restroom+doors
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+felt+this+was+one+of+the+more+successful
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=just+always+have+this+vision+of+this+elderly+couple+going+to+use+the+restroom
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+did+some+work+for+microsoft+a+few+years+back+it+was+a+worldwide+branding+campaign+and+it+was+interesting+to+me+my+background+is+in
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sociology+i+had+no+design+training+and+sometimes+people+say+well+that+explains+it
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+microsoft+they+were+trying+to+improve++they+thought+some+people+didn+t+like+them
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+found+out+that+s+very+true
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=working+on+this+campaign+worldwide+and+our+goal+was+to+try+to+humanize+them+a+bit+and+what+i+did+was+add
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+to+the+ad+which+the+previous+campaign+had+not+had+and+nobody+remembered+them+and+nobody+referenced+them+and+we+were+trying+to+say+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hey+some+of+these+guys+that+work+there+are+actually+ok+some+of+them+actually+have+friends+and+family+and+they+re
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+all+awful+people++and+the+umbrella+campaign+was
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thank+god+it+s+monday+so+we+tried+to+take+this+what+was+perceived+as+a+negative
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=working+hours+and+turn+it+into+a+positive+and+not+run+from+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know+thank+god+it+s+monday+i+get+to+go+back+to+that+little+cubicle+those+fake+gray+walls++and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hear+everybody+else+s+conversations+f+or+ten+hours+and+then+go+home++but+anyway+this+is+one+of+the+ads+i+was
error: request timeout
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+they+were+all+elaborately+art+directed+and+this+one+i+thought+actually+felt+like+the+girl+was+looking+at+the+computer+it+says+wonder+around+and+then+it+s+a+piece+of+the+software++and+this+is+how+the+ad+ran+around+the+world
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+germany+they+made+one+small+change
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=without+checking+with+me+nor+did+they+have+to+because+it+was+done+through+agencies+but+see+if+you+can+tell+the+difference+this+is+how+the+ad+ran+throughout+the+world+germany+made+one+slight+change+in+the+ad+now+there
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+kind+of+two+issues+here+if+you+re+going+to+put+a+kid+in+the+ad+pick+one+that+looks
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=just+have+a+feeling+this+kid+s+been+there+for+a+week+you+know+he+s+just+really+hoping+that+boots+up+and+you+know
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+the+agency+explained+to+me+they+said+look+we+don+t+have+little+green+people+in+our+country+why+would+we+put+little+green+people+in+our
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+understand+their+logic+i+totally+disagree+with+it+i+think+it+s+a+very+small+minded+approach+the+world+is+certainly+much+more+global+and+i+certainly+think+the+people+of
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=germany+could+have+handled+a+little+black+girl+sitting+in+front+of+a+computer+though
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+ll+never+know+this+is+some+work+from+ray+gun++and+the+point+of+this+magazine+was+to+read+the+articles++listen+to+the+music+and+try+to+interpret+it+there+s+no+grid+there+s+no+system+there+s+nothing+set+up+in
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+an+opener+for+brian+eno++and+it+s+just+kind+of+my+personal+interpretation+of+the+music+this+is
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=rockstars+talking+about+teachers+they+had+lusted+after+in+in+school+there
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+a+lot+of+great+writing+in+ray+gun
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+was+fortunate+to+find+a+photograph+of+a+teacher+sitting+on+some+books
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=article+on+bryan+ferry+just+really+boring+article+so+i+set+the+whole+article+in+dingbat
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+could+you+could+highlight+it++you+could+make+it+helvetica+or+something+it+is+the+actual+article
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+suppose+you+could+eventually+decode+it+but
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+really+not+very+well+written+it+really+wouldn+t+be+worthwhile+having+done+a+lot+of+magazines
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=very+curious+how+big+magazines+handle
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=big+stories+and+i+was+very+curious+to+see+how+time+and+newsweek+would+handle+nine+eleven+and+i+was+basically+pretty+disappointed+to+see+that+they+had
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=chosen+to+show+the+photo+we+d+already+seen+a+million+times+which+was+basically+the+moment+of+impact+and+people+magazine+i+thought+got+probably+the+best+shot+it+s
error: request timeout
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+texture+the+second+plane+not+quite+hitting+there+was+something+more+enticing
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+right+it+s+not+the+right+word+but+in+this+cover+than+time+or+newsweek+but+when+i+got+into+this+magazine+there+s+something+kind+of+disturbing
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+continued+on+the+left+we+see+people+dying+we+see+people+running+for+their+lives++and+on+the+right+we+learn+that+there+s+a+new+way+to+support+your+breast
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+coveted+right+hand+page+was+not+given+up+to+the+whole+issue+look+at+the+image+of+this+lady+who+knows+what+she+s+going+through
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+copy+says+he+knows+just+how+to+give+me+goosebumps+yeah+he+jumps+out+of+buildings+it+s
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=unfortunately+this+one+works+kind+of+as+a+spread++and+this+continued+through+the+entire+magazine+it+did+not+let+up
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+says+one+clean+fits+all+there+were+a+lot+of+orphans+made+this+day
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+here+s+a+dead+body+being
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=just+seems+to+me+possibly+even+a+blank+page+would+have+been+more
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=appropriate++and+this+one+i+think+is+possibly+the+worst+two+ladies++both+facing+the+same+way+both+wearing+jeans
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+who+knows+what+she+s+going+through+the+other+one+is+worried+about+model+behavior+and+milk++and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+gave+a+talk+in+new+york+a+couple+months+after+this+and+afterwards+somebody+came+up+to+me+and+they+said+that+they+actually+emailed+me+and+they+said
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+they+appreciated+the+talk+and+when+they+got+back+to+their+car
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+found+a+note+on+their+car+that+made+them+think+maybe+new+york+was+getting+back+to+being+new+york+again+after+this+event+it+had+been+a+few+months+this+was+what+they+found+on+their+car
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=very+few+times+you+d+be+happy+to+find+this+on+your+car+but+it+did+seem+to+indicate+that+we+were+coming+back+this+is+my
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=desktop+somebody+told+me+today+there+was+this+thing+called+folders+but+i+don+t+know+what
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+notes+for+the+talk+there+might+be+a+correlation+here+we+are+wrapping+up+this+i+saw+on+the+plane+flying+in+for+hot+new+products+i+m+not+sure+this+is+an+improvement
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+a+good+idea+because+like+if+you+don+t+spend+quite+enough+time+in+front+of+your+computer+you+can+now+get+a+plate+in+the+keyboard
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+there+s+no+more+faking+it+that+you+don+t+really+sit+at+your+desk+all+day+and+eat+and+work+anyway+now+there+s+a+plate+and+it+would+be+really+really+convenient+to+get+a+piece+of+pizza+then+type+a+little+bit
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=just+not+sure+this+is+improvement++if+you+ever+doubt+the+power+of+graphic+design+this+is+a+very+generic+sign+that+literally+says+vote+for+hitler+it+says+nothing
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=else++and+this+to+me+is+an+extreme+case+of+the+power+of+emotion+of+graphic+design+even+though+in+fact+was+a+very+generic+poster+at+the+time
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+importance+of+people+becomes+more+than+it+s+ever+been+before
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+have+to+utilize+who+you+are+in+your+work+nobody+else+can+do+that+nobody+else+can+pull+from+your+background+from+your+parents+your+upbringing+your+whole+life+experience+if+you+allow+that+to+happen
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+really+the+only+way+you+can+do+some+unique+work
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+re+going+to+enjoy+the+work+a+lot+more+as+well++this+is+i+like+found+art+hand+lettering+s+coming+back+in+a+big+way+and+i+thought+this+was+a+great+example+of+both+this+lady
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+advertising+for+her+lost+pit+bull+it+s+friendly+she+s+underlined+friendly
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+probably+why+she+calls+it+hercules+or+hercles+she+can+t+spell
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+more+importantly+she+s+willing+to+give+you+twenty+bucks+to+go+find+this+lost+pit+bull
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+m+thinking+yeah+right+i+ll+go+look+for+a+lost+pit+bill+for+twenty+bucks+i+have+visions+of+people+going+down+alleyways+yelling+out+for+hercles
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+get+charged+by+this+thing+and+you+go+oh+please+be+hercles+please+be+the+friendly+one
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+sure+she+never+found+the+dog+because+i+took+the+sign+but+i
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+asked+to+give+a+talk+at+a+conference+in+sacramento+a+few+years+back+and+the+theme+was+courage+and+they+asked+me+to+talk+about+how+courageous+it+is+to+be+a+graphic+designer
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+remembered+seeing+this+photograph
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+father+who+was+a+test+pilot+and+he+told+me+that+when+you+signed+up+to+become+a+test+pilot++they+told+you+that+there+was+a+forty+to+fifty+percent+chance+of+death+on+the+job
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+pretty+high+for+most+occupations+but+you+know+the
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=government+would+make+a+plane+they+d+say+go+see+if+that+one+flies+would+you+some+of+them+did+some+of+them
found 0 videos: []
error: no video is found.
sleep 3 seconds to avoid blocking
------<529>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidCasarett_2016P.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+would+like+to+tell+you+about+the+most+embarrassing+thing+that+has+ever+happened+to+me+in+my+years+of+working+as+a+palliative+care+physician
found 1 videos: [['/talks/david_casarett_a_doctor_s_case_for_medical_marijuana', '2017']]
selected: /talks/david_casarett_a_doctor_s_case_for_medical_marijuana
sleep 5 seconds to avoid blocking
------<530>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidChalmers_2014.stm
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=inside+your+head++it+s+an+amazing+multi+track+movie++it+has+3d+vision+and+surround+sound+for+what+you+re+seeing+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hearing+right+now++but+that+s+just+the+start+of+it+your+movie+has+smell+and+taste+and+touch
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+has+a+sense+of+your+body++pain++hunger++orgasms
found 1 videos: [['/talks/david_chalmers_how_do_you_explain_consciousness', '2014']]
selected: /talks/david_chalmers_how_do_you_explain_consciousness
sleep 4 seconds to avoid blocking
------<531>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidChristian_2011.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+scrambled+egg++but+as+you+look+at+it+i+hope+you+ll+begin+to+feel+just
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+you+may+notice+that+what+s+actually+happening+is+that+the+egg+is+unscrambling+itself
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+ll+now+see+the+yolk+and+the+white+have+separated++and+now+they+re+going+to+be+poured+back+into+the+egg++and+we+all+know+in+our+heart+of+hearts+that+this+is+not+the+way+the+universe+works
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+scrambled+egg+is+mush+tasty+mush+but+it+s+mush+an+egg+is+a+beautiful+sophisticated+thing+that+can+create+even+more+sophisticated+things+such+as+chickens
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+know+in+our+heart+of+hearts+that+the+universe+does+not+travel+from+mush+to+complexity
found 1 videos: [['/talks/david_christian_the_history_of_our_world_in_18_minutes', '2011']]
selected: /talks/david_christian_the_history_of_our_world_in_18_minutes
sleep 2 seconds to avoid blocking
------<532>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidDeutsch_2005G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+ve+been+told+to+go+out+on+a+limb+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=say+something+surprising+so+i+ll+try+and+do+that+but+i+want+to+start+with+two+things+that+everyone
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=already+knows++and+the+first+one+in+fact+is+something+that
found 3 videos: [['/talks/david_deutsch_chemical_scum_that_dream_of_distant_quasars', '2006'], ['/talks/steven_pinker_the_surprising_decline_in_violence', '2007'], ['/talks/ngozi_okonjo_iweala_want_to_help_africa_do_business_here', '2007']]
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+recorded+history++and+that+is+that
found 1 videos: [['/talks/kevin_kelly_how_technology_evolves', '2006']]
selected: /talks/kevin_kelly_how_technology_evolves
sleep 2 seconds to avoid blocking
------<533>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidDeutsch_2009G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=our+ancestors+looked+up+at+the+night+sky+and+wondered+what+stars+are+wondering+therefore
found 1 videos: [['/talks/david_deutsch_a_new_way_to_explain_explanation', '2009']]
selected: /talks/david_deutsch_a_new_way_to_explain_explanation
sleep 2 seconds to avoid blocking
------<534>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidDow_2012X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=two+weeks+ago++i+was+sitting+at+the
found 16 videos: [['/talks/eric_dishman_health_care_should_be_a_team_sport', '2013'], ['/talks/robin_chase_excuse_me_may_i_rent_your_car', '2012'], ['/talks/amy_webb_how_i_hacked_online_dating', '2013'], ['/talks/hasan_elahi_fbi_here_i_am', '2011'], ['/talks/eric_whitacre_a_virtual_choir_2_000_voices_strong', '2011'], ['/talks/rose_george_inside_the_secret_shipping_industry', '2013'], ['/talks/nancy_frates_meet_the_mom_who_started_the_ice_bucket_challenge', '2014'], ['/talks/sara_lewis_the_loves_and_lies_of_fireflies', '2014'], ['/talks/shimon_schocken_what_a_bike_ride_can_teach_you', '2010'], ['/talks/leymah_gbowee_unlock_the_intelligence_passion_greatness_of_girls', '2012'], ['/talks/eric_topol_the_wireless_future_of_medicine', '2010'], ['/talks/jorge_soto_the_future_of_early_cancer_detection', '2014'], ['/talks/joan_halifax_compassion_and_the_true_meaning_of_empathy', '2011'], ['/talks/sheryl_sandberg_why_we_have_too_few_women_leaders', '2010'], ['/talks/sal_khan_let_s_use_video_to_reinvent_education', '2011'], ['/talks/anant_agarwal_why_massive_open_online_courses_still_matter', '2014']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=kitchen+table+with+my+wife+katya+and+we+were+talking+about+what+i+was+going+to+talk+about+today
found 1 videos: [['/talks/david_r_dow_lessons_from_death_row_inmates', '2012']]
selected: /talks/david_r_dow_lessons_from_death_row_inmates
sleep 2 seconds to avoid blocking
------<535>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidEagleman_2015.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+are+built+out+of+very+small+stuff++and+we+are+embedded+in+a+very+large+cosmos+and+the+fact+is+that+we+are+not+very+good+at+understanding
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=reality+at+either+of+those+scales+and+that+s+because+our+brains+haven+t+evolved+to+understand+the+world
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+that+scale+instead+we+re+trapped+on+this+very+thin+slice+of+perception+right+in+the+middle
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+it+gets+strange+because+even+at+that+slice+of+reality+that+we+call+home+we+re+not+seeing+most+of+the+action+that+s+going+on
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+take+the+colors+of+our+world+this
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=electromagnetic+radiation+that+bounces+off+objects+and+it+hits+specialized+receptors+in+the+back+of+our+eyes
found 1 videos: [['/talks/david_eagleman_can_we_create_new_senses_for_humans', '2015']]
selected: /talks/david_eagleman_can_we_create_new_senses_for_humans
sleep 2 seconds to avoid blocking
------<536>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidEpstein_2014.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+athletes+have+fulfilled+that+motto
found 1 videos: [['/talks/david_epstein_are_athletes_really_getting_faster_better_stronger', '2014']]
selected: /talks/david_epstein_are_athletes_really_getting_faster_better_stronger
sleep 3 seconds to avoid blocking
------<537>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidGallo_1998.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=bill+lange+i+m+dave+gallo+and+we+re+going+to+tell+you+some+stories+from+the+sea+here+in+video++we+ve+got+some+of+the+most+incredible+video+of+titanic
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+ever+been+seen+and+we+re+not+going+to+show+you+any+of+it
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=truth+of+the+matter+is+that+the+titanic+even+though+it+s+breaking+all+sorts+of+box+office+records+it+s+not+the+most+exciting
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=story+from+the+sea+and+the+problem+i+think+is+that
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+take+the+ocean+for+granted+when+you+think+about+it+the+oceans+are+seventy+five+percent+of+the+planet+most+of+the+planet+is+ocean+water
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+average+depth+is+about+two+miles+part+of+the+problem+i+think+is+we+stand+at+the+beach+or+we+see+images+like+this+of+the+ocean
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+look+out+at+this+great+big+blue+expanse+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+shimmering+and+it+s+moving+and+there+s+waves+and+there+s+surf+and+there+s+tides+but+you+have+no+idea+for+what+lies+in+there+and+in+the+oceans+there+are+the+longest+mountain+ranges+on+the+planet+most+of+the+animals+are+in+the+oceans
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=most+of+the+earthquakes+and+volcanoes+are+in+the+sea+at+the+bottom+of+the+sea++the+biodiversity+and+the+biodensity+in+the+ocean+is+higher+in+places+than+it++is+in+the+rainforests++it+s+mostly+unexplored+and+yet+there
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=beautiful+sights+like+this+that+captivate+us+and+make+make+us+become+familiar+with+it+but+when+you+re+standing+at+the+beach+i+want+you+to+think+that+you+re+standing+at+the+edge+of+a+very+unfamiliar+world++we+have+to+have+a+very+special+technology+to+get+into+that+unfamiliar+world++we+use+the+submarine+alvin+and+we+use+cameras
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+cameras+are+something+that+bill+lange+has
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=developed+with+the+help+of+sony+marcel+proust+said+the+true+voyage+of+discovery+is+not+so+much+in+seeking+new+landscapes+as+in+having
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+that+have+partnered+with+us+have+given+us+new+eyes+not+only+on+what+exists+the+new+landscapes+at+the+bottom+of+the+sea
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+also+how+we+think+about+life+on+the+planet+itself+here+s+a+jelly+it+s+one+of+my+favorites+because+it+s+got+all+sorts+of+working+parts+this+turns+out+to+be+the+longest+creature+in+the+oceans++it+gets+up+to+about+one+hundred+and+fifty+feet+long
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+see+all+those+different+working+things+i+love+that+kind+of+stuff+it+s+got+these+fishing+lures+on+the+bottom+they+re+going+up+and+down+it+s+got+tentacles+dangling+swirling
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=around+like+that+it+s+a+colonial+animal+these+are+all+individual+animals+banding+together+to+make+this+one+creature+and+it+s+got+these+jet+thrusters+up+in+front
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+it+ll+use+in+a+moment+and+a+little+light
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+take+all+the+big+fish+and+and+schooling+fish+and+all+that+put+them+on+one+side+of+the+scale+put+all+the+jelly+type+of+animals+on+the+other+side+those+guys+win+hands+down
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=most+of+the+biomass+in+the+ocean+is+made+out+of+creatures+like+this+here+s+the
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=use+the+lights+for+attracting+mates+and+attracting+prey+and+communicating+we+couldn+t+begin+to+show+you+our+archival
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=stuff+from+the+jellies+they+come+in+all+different+sizes+and+shapes+bill+lange+we+tend+to+forget+about+the+fact+that+the+ocean+is+miles+deep+on+average+and+that+we+re+real+familiar+with+the+animals+that+are+in+the+first+two+hundred+or+three+hundred+feet
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+we+re+not+familiar+with+what+exists+from+there+all+the+way+down+to+the+bottom+and+these+are+the+types+of+animals+that+live+in+that+three+dimensional+space+that+micro+gravity+environment+that+we+really+haven+t+explored
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+hear+about+giant+squid+and+things+like+that+but+some+of+these+animals+get+up+to+be+approximately+one+hundred+and+forty+one+hundred+and+sixty+feet+long+they+re+very+little+understood+dg+this+is+one+of+them+another
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+our+favorites+because+it+s+a+little+octopod+you+can+actually+see+through+his+head+and+here+he+is+flapping+with+his+ears+and+very+gracefully+going+up+we+see+those+at+all+depths+and+even+at+the+greatest+depths
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+go+from+a+couple+of+inches+to+a+couple+of+feet++they+come+right+up+to+the+submarine+they+ll+put+their+eyes+right+up+to+the+window+and+peek+inside+the+sub++this+is+really+a+world+within+a+world+and+we+re+going+to+show+you+two+in+this+case+we+re+passing+down+through+the++mid+ocean+and+we+see+creatures+like+this+this+is
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=kind+of+like+an+undersea+rooster++this+guy+that+looks+incredibly+formal+in+a+way
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+one+of+my+favorites++what+a+face
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+basically+scientific+data+that+you+re+looking+at+it+s+footage+that+we+ve+collected+for+scientific+purposes+and+that+s+one+of+the+things+that+bill+s+been+doing+is+providing+scientists+with+this+first+view
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+animals+like+this+in+the+world+where+they+belong+they+don+t+catch+them+in+a+net+they+re+actually+looking+at+them+down+in+that
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=world+we+re+going+to+take+a+joystick+sit+in+front+of+our+computer+on+the+earth+and+press+the+joystick+forward
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+fly+around+the+planet+we+re+going+to+look+at+the+mid+ocean+ridge
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+average+depth+at+the+top+of+it+is+about+a+mile+and+a+half+and+we+re+over+the+atlantic+that+s+the+ridge+right+there+but+we+re+going+to+go+across+the+caribbean+central+america++and+end+up+against+the+pacific++nine+degrees+north+we+make
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=maps+of+these+mountain+ranges+with+sound+with+sonar+and+this+is+one+of+those+mountain+ranges+we+re+coming+around+a+cliff+here+on+the+right
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=out+there+that+haven+t+been+mapped+yet++this+is+a+volcanic+ridge+we+re+getting+down+further+and+further+in+scale+and+eventually+we+can+come+up+with+something+like+this+this+is+an+icon+of+our+robot
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+can+sit+in+a+room+like+this+with+a+joystick+and+a+headset+and+drive+a+robot+like+that+around+the+bottom+of+the+ocean+in+real+time
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+the+things+we+re+trying+to+do+at+woods+hole+with+our+partners+is+to+bring+this+virtual+world+this+world+this+unexplored+region
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=back+to+the+laboratory+because+we+see+it+in+bits+and+pieces+right+now+we+see+it+either+as+sound+or+we+see+it+as+video
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+see+it+as+photographs+or+we+see+it+as+chemical+sensors++but+we+never+have+yet+put+it+all+together+into+one+interesting+picture++here+s+where+bill+s+cameras+really+do+shine
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+what+s+called+a+hydrothermal+vent+and+what+you+re+seeing+here+is+a+cloud+of+densely+packed
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=water+coming+out+of+a+volcanic+axis+on+the+sea+floor+gets+up+to+six+hundred+seven
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=somewhere+in+that+range+so+that+s+all+water+under+the+sea+a+mile+and+a+half+two+miles+three+miles+down++and+we+knew+it+was+volcanic+back+in+the
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+we+had+some+hint+that+these+things+existed+all+along+the+axis+of+it+because+if+you+ve+got+volcanism+water+s+going+to+get+down
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=from+the+sea+into+cracks+in+the+sea+floor+come+in+contact+with+magma+and+come+shooting+out+hot
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+weren+t+really+aware+that+it+would+be+so+rich+with+sulfides+hydrogen+sulfides+we+didn+t+have+any+idea
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+these+things+which+we+call+chimneys+this
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+these+hydrothermal+vents+six+hundred+degree+f+water+coming+out+of+the+earth
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+either+side+of+us+are+mountain+ranges+that+are+higher+than+the+alps+so+the+setting+here+is+very+dramatic+bl+the+white+material+is+is+a+type+of+bacteria+that+thrives+at+one+hundred+and+eighty+degrees+c+dg
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+that+s+one+of+the+greatest+stories+right+now+that+we+re+seeing+from+the+bottom+of+the+sea+is+that+the+first+thing+we+see+coming+out+of+the+sea+floor+after+a+volcanic+eruption+is+bacteria
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+started+to+wonder+for
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=long+time+how+did+it+all+get+down+there+what+we+find+out+now+is+that+it+s+probably+coming+from+inside+the+earth+not+only+is+it+coming+out+of+the+earth+so+biogenesis+made+from+volcanic+activity
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+that+bacteria+supports+these+colonies+of+life
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+pressure+here+is+four+thousand+pounds+per+square+inch+a+mile+and+a+half+from+the+surface+to+two+miles+to+three+miles+no+sun+has+ever+gotten+down+here
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+the+energy+to+support+these+life+forms+is+coming+from+inside+the+earth
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+can+see+how+dense+the+population+is+these+are+called+tube+worms+bl+these+worms+have+no+digestive+system+they+have+no+mouth
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+they+have+two+types+of+gill+structures+one+for+extracting+oxygen+out+of+the+deep+sea+water++another+one+which+houses+this+chemosynthetic+bacteria
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hydrothermal+fluid+that+hot+water+that+you+saw+coming+out+of+the+bottom+and+converts+that
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=into+simple+sugars+that+the+tube+worm+can
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=digest+dg+you+can+see+here+s+a+crab+that+lives+down+there+he+s+managed+to+grab+a+tip+of+these+worms+now+they+normally+retract+as+soon+as+a+crab+touches+them+oh+good+going
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+as+soon+as+a+crab+touches+them+they+retract+down+into+their+shells+just+like+your+fingernails+there+s+a+whole+story+being+played+out+here+that+we+re+just+now+beginning+to+have+some+idea+of+because+of+this
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+worms+live+in+a+real+temperature+extreme
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=their+foot+is+at+about+two+hundred+degrees+c+and+their+head+is+out+at+three+degrees+c+so+it+s+like+having+having+your+hand+in+boiling+water+and+your+foot+in+freezing+water+that+s+how+they+like+to+live
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=female+of+this+kind+of+worm+and+here+s+a+male++you+watch+it+doesn+t+take+long+before+two+guys+here+this+one+and+one+that+will+show+up+over+here+start+to+fight
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=see+is+played+out+in+the+pitch+black+of+the+deep+sea+there+are+never+any+lights+there+except+the+lights+that+we+bring++here+they+go
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+one+of+the+last+dive+series+we+counted+two+hundred+species+in+these+areas+one+hundred+and+ninety+eight+were+new+new+species+bl+one+of+the+big+problems+is+that+for+the+biologists+working+at+these+sites
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+rather+difficult+to+collect+these+animals+and+they+disintegrate+on+the+way+up+so+the+imagery+is+is+critical+for+the+science+dg+two+octopods+at+about
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=two+miles+depth+this+pressure+thing+really+amazes+me+that+these+animals+can+exist+there+at+a+depth+with+pressure+enough+to+crush+the+titanic+like+an+empty+pepsi+can
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+we+saw+up+till+now+was+from+the+pacific+this+is+from+the+atlantic+even+greater+depth+you
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=can+see+this+shrimp+is+harassing+this+poor+little+guy+here+and+he+ll+bat+it+away+with+his+claw+whack
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+same+thing+s+going+on+over+here++what+they+re+getting+at+is+that+on+the+back+of+this+crab+the+foodstuff+here
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=very+strange+bacteria+that+lives+on+the+backs+of+all+these+animals+and+what+these+shrimp+are+trying+to+do+is+actually+harvest+the+bacteria+from+the+backs+of+these+animals+and+the+crabs+don+t+like+it+at+all
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+long+filaments+that+you+see+on+the+back+of+the+crab+are+actually+created+by+the+product+of+that+bacteria+so+the+bacteria+grows+hair+on+the+crab+on+the+back+you+see+this+again+the+red+dot+is+the+laser+light+of+the+submarine+alvin+to+give+us+an+idea+about+how+far+away+we+are
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=those+are+all+shrimp++you+see+the+hot+water+over+here++here+and+here+coming+out+they+re+clinging+to+a+rock+face
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+actually+scraping+bacteria+off+that+rock+face
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+s+a+tiny+little+vent+that+s+come+out+of+the+side+of
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+pillar+those+pillars+get+up+to+several+stories++so+here+you+ve+got+this+valley+with+this+incredible+alien+landscape+of+pillars+and+hot+springs+and+volcanic+eruptions+and+earthquakes+inhabited+by+these
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=very+strange+animals+that+live+only+on+chemical+energy+coming+out+of+the+ground+they+don+t+need+the+sun
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+all+bl+you+see+this+white++v+shaped+mark+on+the+back+of+the+shrimp+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+actually+a+light+sensing+organ+it+s+how+they+find+the+hydrothermal+vents+the+vents+are+emitting+a+black+body+radiation+an+ir+signature+and+so+they+re+able+to+to+find+these+vents+at+considerable
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+this+stuff+is+happening+along+that+40+000+mile+long+mountain+range+that+we+re+calling+the+ribbon+of+life+because+just+even+today+as+we+speak+there+s+life+being+generated+there+from+volcanic+activity
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+the+first+time+we+ve+ever+tried+this+any+place+we+re+going+to+try+to+show+you+high+definition+from+the+pacific
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+re+moving+up+one+of+these+pillars+this+one+s+several+stories+tall++in+it+you+ll+see+that+it+s+a+habitat+for+a+lot+of+different+animals+there+s+a+funny+kind+of+hot+plate+here+with
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=vent+water+coming+out+of+it+so+all+of+these+are+individual+homes+for+worms
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+closer+view+of+that+community
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+s+crabs+here+worms+here++there+are+smaller+animals+crawling+around+here+s+pagoda+structures++i+think+this+is+the+neatest+looking+thing+i+just+can+t+get+over+this+that+you+ve+got+these+little+chimneys
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sitting+here+smoking+away+this+stuff+is+toxic+as+hell+by+the+way+you+could+never+get+a+permit+to+dump+this+in+the+ocean+and+it+s+coming+out+all+from
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+unbelievable+it+s+basically+sulfuric+acid+and+it+s+being+just+dumped+out+at+incredible+rates
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+animals+are+thriving+and+we+probably+came+from+here+that+s+probably+where+we+evolved+from+bl+this+bacteria+that+we+ve+been+talking+about+turns+out+to+be+the+most+simplest+form+of+life+found
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+are+a+number+of+groups+that+are+proposing+that+life+evolved+at+these+vent+sites++although+the+vent+sites
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=an+individual+site+may+last+only+ten+years+or+so
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+an+ecosystem+they+ve+been+stable+for+for+millions+well+billions+of+years+dg
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+works+too+well++you+see+there+re+some+fish+inside+here+as+well+there+s+a+fish+sitting+here+here+s+a+crab+with+his+claw+right+at+the+end+of+that+tube+worm+waiting+for+that+worm+to+stick+his+head+out+bl
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+biologists+right+now+cannot+explain+why+these+animals+are+so+active+the+worms+are+growing+inches+per+week
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=perspective+is+toxic+as+hell++not+only+that+but+on+top+the+lifeblood+that+plumbing+system+turns+off+every+year+or+so+their+plumbing+system+turns+off+so+the+sites+have+to+move++and
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=then+there+s+earthquakes+and+then+volcanic+eruptions+on+the+order+of+one+every+five+years+that+completely+wipes+the+area+out
error: request timeout
error: no video is found.
sleep 3 seconds to avoid blocking
------<538>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidGallo_2007.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+re+going+to+go+on+a+dive+to+the+deep+sea++and+anyone+that+s+had+that+lovely+opportunity
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=knows+that+for+about+two+and+half+hours+on+the+way+down+it+s+a+perfectly+positively+pitch+black+world+and+we+used+to
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=see+the+most+mysterious+animals+out+the+window+that+you+couldn+t+describe+these+blinking+lights+a+world+of+bioluminescence+like+fireflies
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=dr+edith+widder+she+s+now+at+the+ocean+research+and+conservation+association
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+able+to+come+up+with+a+camera+that+could+capture+some+of+these+incredible+animals+and+that+s+what+you+re+seeing+here+on+the+screen
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+all+bioluminescence+like+i+said+just+like+fireflies++there+s+a+flying+turkey+under+a+tree
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+a+geologist+by+training+but+i+love+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+see+some+of+the+bioluminescence+they+use+to+avoid+being+eaten+some+they+use+to+attract+prey++but+all+of+it+from+an+artistic+point+of+view+is+just+positively+amazing
found 1 videos: [['/talks/david_gallo_underwater_astonishments', '2008']]
selected: /talks/david_gallo_underwater_astonishments
sleep 3 seconds to avoid blocking
------<539>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidGrady_2013S.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=settling+in+for+the+day+at+work+and+this+guy+that+you+sort+of+recognize+from+down+the+hall++walks+right+into+your+cubicle+and+he+steals+your+chair+doesn+t
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=say+a+word+just+rolls+away+with+it
found 15 videos: [['/talks/sarah_kay_how_many_lives_can_you_live', '2011'], ['/talks/david_grady_how_to_save_the_world_or_at_least_yourself_from_bad_meetings', '2014'], ['/talks/rajiv_maheswaran_the_math_behind_basketball_s_wildest_moves', '2015'], ['/talks/julie_burstein_4_lessons_in_creativity', '2012'], ['/talks/jill_shargaa_please_please_people_let_s_put_the_awe_back_in_awesome', '2014'], ['/talks/sting_how_i_started_writing_songs_again', '2014'], ['/talks/kevin_breel_confessions_of_a_depressed_comic', '2013'], ['/talks/sheryl_sandberg_so_we_leaned_in_now_what', '2014'], ['/talks/eric_dishman_health_care_should_be_a_team_sport', '2013'], ['/talks/morgan_spurlock_the_greatest_ted_talk_ever_sold', '2011'], ['/talks/julian_treasure_5_ways_to_listen_better', '2011'], ['/talks/julian_treasure_how_to_speak_so_that_people_want_to_listen', '2014'], ['/talks/young_ha_kim_be_an_artist_right_now', '2013'], ['/talks/carl_safina_what_are_animals_thinking_and_feeling', '2015'], ['/talks/malcolm_gladwell_the_unheard_story_of_david_and_goliath', '2013']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=doesn+t+give+you+any+information+about+why+he+took+your+chair+out+of+all+the+other+chairs+that+are+out+there+doesn+t+acknowledge+the+fact+that+you+might+need+your+chair+to+get+some+work+done+today
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+wouldn+t+stand+for+it+you+d+make+a+stink+you+d+follow+that+guy+back+to+his+cubicle+and+you+d+say+why+my+chair
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=okay++so+now+it+s+tuesday+morning+and+you+re+at+the+office
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+a+meeting+invitation+pops+up+in+your+calendar
found 1 videos: [['/talks/david_grady_how_to_save_the_world_or_at_least_yourself_from_bad_meetings', '2014']]
selected: /talks/david_grady_how_to_save_the_world_or_at_least_yourself_from_bad_meetings
sleep 4 seconds to avoid blocking
------<540>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidGriffin_2008.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=start+by+looking+at+some+great+photographs
found 18 videos: [['/talks/alison_jackson_an_unusual_glimpse_at_celebrity', '2008'], ['/talks/rachel_sussman_the_world_s_oldest_living_things', '2010'], ['/talks/jonathan_harris_the_web_s_secret_stories', '2007'], ['/talks/david_gallo_life_in_the_deep_oceans', '2008'], ['/talks/david_griffin_how_photography_connects_us', '2008'], ['/talks/ron_eglash_the_fractals_at_the_heart_of_african_designs', '2007'], ['/talks/gordon_brown_wiring_a_web_for_global_good', '2009'], ['/talks/john_maeda_designing_for_simplicity', '2007'], ['/talks/paul_debevec_animating_a_photo_real_digital_face', '2009'], ['/talks/edward_burtynsky_my_wish_manufactured_landscapes_and_green_education', '2006'], ['/talks/vik_muniz_art_with_wire_sugar_chocolate_and_string', '2007'], ['/talks/james_watson_how_we_discovered_dna', '2007'], ['/talks/jehane_noujaim_my_wish_a_global_day_of_film', '2006'], ['/talks/richard_pyle_a_dive_into_the_reef_s_twilight_zone', '2009'], ['/talks/ryan_lobo_photographing_the_hidden_story', '2009'], ['/talks/ze_frank_my_web_playroom', '2010'], ['/talks/frank_gehry_my_days_as_a_young_rebel', '2008'], ['/talks/cameron_sinclair_my_wish_a_call_for_open_source_architecture', '2006']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+an+icon+of+national+geographic++an+afghan+refugee+taken+by+steve+mccurry++but+the+harvard+lampoon
found 1 videos: [['/talks/david_griffin_how_photography_connects_us', '2008']]
selected: /talks/david_griffin_how_photography_connects_us
sleep 2 seconds to avoid blocking
------<541>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidGruber_2015Z.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+national+geographic++but+i+want+to+share+a+secret
found 3 videos: [['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013'], ['/talks/emma_marris_nature_is_everywhere_we_just_need_to_learn_to_see_it', '2016'], ['/talks/david_gruber_glow_in_the_dark_sharks_and_other_stunning_sea_creatures', '2016']]
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=totally+incorrect+i+see+a+couple+of+people+crying+in+the+back+that+i+ve+blown+their+idea+of+mermaids
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=right+the+mermaid+is+indeed+real++but+anyone+who+s+gone+on+a+dive+will+know+that+the+ocean+looks+more+like+this
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+because+the+ocean+is+this+massive+filter++and+as+soon+as+you+start+going+underwater+you+re+going+to+lose+your+colors+and+it+s+going+to+get+dark+and+blue+very+quickly+but+we+re+humans+we+re+terrestrial
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+ve+got+trichromatic+vision++so+we+see+in+red+green+and+blue++and+we+re+just+complete+color+addicts+we+love+eye+popping+color
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+try+to+bring+this+eye+popping+color+underwater+with+us+so+there+s+been+a+long+and+sordid+history+of+bringing+color+underwater+and+it+starts+eighty+eight+years+ago
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+bill+longley+and+charles+martin+who+were+trying+to+take+the
found 1 videos: [['/talks/david_gruber_glow_in_the_dark_sharks_and_other_stunning_sea_creatures', '2016']]
selected: /talks/david_gruber_glow_in_the_dark_sharks_and_other_stunning_sea_creatures
sleep 1 seconds to avoid blocking
------<542>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidHanson_2009.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+build+robots+with+character+and+by+that+i+mean+that+i+develop+robots+that+are+characters++but+also+robots+that+will+eventually+come+to+empathize+with+you
found 1 videos: [['/talks/david_hanson_robots_that_show_emotion', '2009']]
selected: /talks/david_hanson_robots_that_show_emotion
sleep 2 seconds to avoid blocking
------<543>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidHoffman_2007.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fifty+years+ago+in+the+old+soviet+union+a+team+of+engineers+was+secretly+moving+a+large+object+through+a+desolate+countryside
found 1 videos: [['/talks/david_hoffman_sputnik_mania', '2008']]
selected: /talks/david_hoffman_sputnik_mania
sleep 2 seconds to avoid blocking
------<544>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidHoffman_2008.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+my+books+my+dad+s+books+my+photographs
found 3 videos: [['/talks/ben_saunders_why_did_i_ski_to_the_north_pole', '2006'], ['/talks/nathan_myhrvold_archeology_animal_photography_bbq', '2008'], ['/talks/reed_kroloff_a_tour_of_modern_architecture', '2008']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+just+looked+at+it++and+i+didn+t+know+what+to+do++i+mean+this+was
found 9 videos: [['/talks/john_maeda_designing_for_simplicity', '2007'], ['/talks/david_pogue_cool_tricks_your_phone_can_do', '2009'], ['/talks/eve_ensler_what_security_means_to_me', '2008'], ['/talks/spencer_wells_a_family_tree_for_humanity', '2008'], ['/talks/peter_ward_a_theory_of_earth_s_mass_extinctions', '2009'], ['/talks/james_watson_how_we_discovered_dna', '2007'], ['/talks/chris_abani_telling_stories_from_africa', '2007'], ['/talks/richard_dawkins_militant_atheism', '2007'], ['/talks/juan_enriquez_the_life_code_that_will_reshape_the_future', '2007']]
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+always+live+in+the+present+i+love+the+present+i+cherish+the+future+and
found 1 videos: [['/talks/david_hoffman_what_happens_when_you_lose_everything', '2008']]
selected: /talks/david_hoffman_what_happens_when_you_lose_everything
sleep 3 seconds to avoid blocking
------<545>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidHolt_2004.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+aunt+zip+from+sodom+north+carolina++she+was+one+hundred+and+five+years+old+when+i+took+this+picture++she+was+always+saying+things+that+made+me+stop+and+think+like
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=time+may+be+a+great+healer+but+it+ain+t+no
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+flow+here+and+all+do+this+one+together+and+i+m+going+to+have+michael+manring+play+bass+with+me
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+few+more+jumps+and+i+ll+be
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=picture+aunt+zip+at+one+hundred+and+five+years+old+in+sodom+north+carolina+i+d+go+up+and+learn+these+old+songs+from+her
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=she+couldn+t+sing+much+couldn+t+play+anymore+and+i+d+pull+her+out+on+the+front+porch
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=down+below+there+was+her+grandson+plowing+the+tobacco+field+with+a+mule+a+double+outhouse+over+here+on+the+side
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ducks+on+the+millpond+geese+in+the+ocean++devil+in+the+pretty+girl+when+she+takes+a+notion+hey
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=santa+barbara+in+the+college+of+creative+studies++taking+majors+in+biology+and+art++he+came+to+the+campus+this+was+in+one+thousand+nine+hundred+and+sixty+eight
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+guess+it+was++and+he+played+his+bluegrass+style+of+music+but+near+the+end+of+the+concert+he+played+the+old+timing+style+of+banjo+picking+that+came+from+africa+along+with+the+banjo
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+he+had+learned+from+his+mother+and+grandmother++i+fell+in+love+with+that+i+went+up+to+him+and+said+how+can+i+learn+that+he+said+well+you+can+go+back+to+clinch+mountain+where+i+m+from+or
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=asheville+or+mount+airy+north+carolina+some+place+that+has+a+lot+of+music+because+there+s+a+lot+of+old+people
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=still+living+that+play+that+old+style++so+i+went+back+that+very+summer++i+just+fell+in+love+with+the+culture
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+came+back+to+school+i+finished+my+degrees+and+told+my+parents+i+wanted+to+be+a+banjo+player++you+can+imagine+how+excited+they+were++so+i+thought
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+would+just+like+to+show+you+some+of+the+pictures+i+ve+taken+of+some+of+my+mentors+just+a+few+of+them+but+maybe+you+ll+get+just+a+little+hint+of+some+of+these+folks+and+play+a+little
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=those+last+few+pictures+were+of+ray+hicks+who+just+passed+away+last+year+he+was+one+of+the+great
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=american+folk+tale+tellers+the+old+jack+tales+that+he+had+learned+he+talked+like+this+you+could
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hardly+understand+him++but+it+was+really+wonderful+and+he+lived+in+that+house+that+his
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=had+built+no+running+water++no+electricity+a+wonderful+wonderful+guy++and+you+can+look+at+more+pictures+i+ve+actually+got+a+website+that+s+got+a+bunch+of+photos
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+i+ve+done+of+some+of+the+other+folks+i+didn+t+get+a+chance+to+show+you
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+instrument+came+up+in+those+pictures+it+s+called+the+mouth+bow
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+is+definitely+the+first+stringed+instrument+ever+in+the+world+and+still+played+in+the+southern+mountains
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now++the+old+timers+didn+t+take+a+fancy
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=guitar+string+and+make+anything+like+this+they+would+just+take+a+stick+and+a+catgut+and+string+it+up++it+was+hard+on+the+cats
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+made+a+great+little+instrument
found 2 videos: [['/talks/sirena_huang_an_11_year_old_s_magical_violin', '2006'], ['/talks/eve_ensler_happiness_in_body_and_soul', '2006']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=wide+when+the+yankees+saw+them+coming
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=were+driving+in+the+car+outside+of+gatesville+texas+where+i+grew+up
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+early+part+of+my+life
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=outside+of+gatesville+we+were+coming+back+from+the+grocery+store+my+mom+was+driving+my+brother+and+i+were+in+the+back+seat++we+were+really+mad+at+my+mom+we+looked+out+the+window
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=surrounded+by+thousands+of+acres+of+cotton+fields+you+see+we+d+just+been+to+the+grocery+store+and+my+mom+refused+to+buy+us
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+jar+of+ovaltine+that+had+the+coupon+for+the+captain+midnight+decoder+ring+in+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+buddy+that+made+us+mad+well+my+mom+didn+t+put+up+with+much+either+and+she+was+driving+and+she+said+you+boys++you+think+you+can+have+anything+you+want+you+don+t+know+how+hard+it+is+to+earn+money+your+dad+works+so+hard
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+think+money+grows+on+trees
found 2 videos: [['/talks/dan_gilbert_the_surprising_science_of_happiness', '2006'], ['/talks/amy_smith_simple_designs_to_save_a_life', '2006']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=brother+and+i+stepped+out+of+the+car+we
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=were+standing+on+the+edge+of+thousands+of+acres+of+cotton+there+were+about+a+hundred+black+folks+out+there+picking++my+mom+grabbed+us+by+the+shoulders+she+marched+us+out+in+the+field++she+went+up+to+the+foreman+she+said+i+ve+got+these+two+little+boys+never+worked+a
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+that+foreman+put+these+two+middle+class+little+white+boys+out+in+a+cotton+field+in+august+in+texas+it+s+hot
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+he+gave+us+each+a+cotton+sack+about+ten+feet+long+about+that+big+around+and+we+started+picking+now
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=cotton+is+soft+but+the+outside+of+the+plant+is+just+full+of+stickers+and+if+you+don+t+know+what+you+re+doing+your+hands+are+bleeding+in+no+time++and+my+brother+and+i+started
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+foreman+could+see+he+was+in+over+his+head+i+guess++he+kind+of+just+snuck+up+behind+us+and+he+sang+out+in+a+low+voice+he+just+sang+well
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+a+long+white+robe+in+heaven+i+know++don
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=want+it+to+leave+me+behind+there+s+a
found 1 videos: [['/talks/dan_gilbert_the_surprising_science_of_happiness', '2006']]
selected: /talks/dan_gilbert_the_surprising_science_of_happiness
sleep 3 seconds to avoid blocking
------<546>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidKeith_2007S.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+ve+all+seen+lots+of+articles+on+climate+change+and+here+s+yet+another+new+york+times+article+just+like+every+other+darn+one+you+ve+seen+it+says+all+the+same+stuff+as+all+the+other+ones+you+ve+seen++it+even+has+the+same+amount+of+headline+as+all+the+other+ones+you+ve+seen+what+s+unusual+about+this+one
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+reason+i+m+saying+this+is+that+you+may+have+the+idea+this+problem+is+relatively+recent++that+people+have+just+sort+of+figured+out+about+it+and+now+with+kyoto+and+the+governator+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+beginning+to+actually+do+something+we+may+be+on+the+road+to+a+solution+the+fact+is+uh+uh
found 2 videos: [['/talks/david_keith_a_critical_look_at_geoengineering_against_climate_change', '2007'], ['/talks/mallika_sarabhai_dance_to_change_the_world', '2009']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+the+growth+rate+of+co2+in+the+atmosphere+you+ve+seen+this+in+various+forms++but+maybe+you+haven+t+seen+this+one+what+this+shows+is+that+the+rate+of+growth+of+our+emissions+is+accelerating++and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+it+s+accelerating+even+faster+than+what+we+thought+was+the+worst+case+just+a+few+years+back+so+that+red+line+there+was+something+that+a+lot+of+skeptics+said+the+environmentalists+only+put+in+the+projections+to+make+the+projections+look+as+bad+as+possible+that+emissions+would+never+grow
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+fast+as+that+red+line+but+in+fact+they+re+growing+faster
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+s+some+data+from+actually+just+ten+days+ago++which+shows+this+year+s+minimum+of+the+arctic+sea+ice+and+it+s+the+lowest+by+far++and+the+rate+at+which+the+arctic+sea+ice
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+going+away+is+a+lot+quicker+than+models+so+despite+all+sorts+of+experts+like+me+flying+around+the+planet+and+burning
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+politicians+signing+treaties+in+fact+you+could+argue+the+net+effect+of+all+this+has+been+negative+because+it+s+just+consumed+a+lot+of+jet+fuel
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=terms+of+what+we+really+need+to+do+to+put+the+brakes+on+this+very+high+inertial+thing+our+big+economy+we+ve+really+hardly+started+really+we+re+doing+this++basically
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+don+t+want+to+depress
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+too+much+the+problem+is+absolutely+soluble++and+even+soluble+in+a+way+that+s+reasonably+cheap+cheap+meaning+sort+of+the+cost+of+the+military+not+the+cost
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+of+medical+care++cheap+meaning+a+few+percent+of+gdp
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=no+this+is+really+important+to+have+this+sense+of+scale++so+the+problem+is+soluble+and+the+way+we+should+go+about+solving+solving+it+is+say++dealing+with+electricity+production+which+causes+something+like
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=percent+and+rising+of+co2+emissions+and+we+could+do+that+by+perfectly+sensible+things+like+conservation++and+wind+power+nuclear+power+and+coal+to+co2+capture+which+are+all+things+that+are+ready+for+giant+scale+deployment+and+work
error: request timeout
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=action+to+actually+spend+the+money+to+put+those+into+place++instead+we+spend+our+time+talking+but+nevertheless+that+s+not+what+i+m+going+to+talk+to+you+about+tonight+what+i+m+going+to+talk+to
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+tonight+is+stuff+we+might+do+if+we+did+nothing++and+it+s+this+stuff+in+the+middle+here++which+is+what+you+do+if+you+don+t+stop+the+emissions+quickly+enough+and
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+need+to+deal+somehow+break+the+link+between+human+actions+that+change+climate+and+the+climate+change+itself++and+that+s+particularly+important+because+of+course+while+we+can+adapt+to+climate+change
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+s+important+to+be+honest+here+there+will+be+some+benefits+to+climate+change+oh+yes+i+think+it+s+bad+i+ve+spent+my+whole+life+working+to+stop+it+but+one+of+the+reasons+it+s+politically+hard+is+there+are+winners+and+losers+not+all+losers
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=losers+but+of+course+the+natural+world+polar+bears+i+spent+time+skiing+across+the+sea+ice+for+weeks+at+a+time+in+the+high+arctic+they+will+completely+lose+and+there+s+no+adaption
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+this+problem+is+absolutely+soluble+this+geo+engineering+idea+in+it+s+simplest+form+is+basically+the+following+you+could+put
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=signed+particles+say+sulfuric+acid+particles+sulfates+into+the+upper
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+stratosphere+where+they+d+reflect+away+sunlight+and+cool+the+planet
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+know+for+certain+that+that+will+work++not+that+there+aren+t+side+effects+but+i+know+for+certain+it+will+work++and+the+reason+is+it+s+been+done
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+was+done+not+by+us+not+by+me+but+by+nature+here+s+mount+pinatubo+in+the+early++90s+that+put+a+whole+bunch+of+sulfur+in+the+stratosphere
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+a+sort+of+atomic+bomb+like+cloud++the+result+of+that+was+pretty+dramatic+after+that+and+some+previous+volcanoes+we+have+you+see+a+quite+dramatic+cooling+of+the+atmosphere++so+this+lower+bar+is
found 1 videos: [['/talks/david_keith_a_critical_look_at_geoengineering_against_climate_change', '2007']]
selected: /talks/david_keith_a_critical_look_at_geoengineering_against_climate_change
sleep 2 seconds to avoid blocking
------<547>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidKelley_2002.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=things+happening+in+the+design+world+and+at+ideo+this+past+year+and+i+m+pleased+to+get+a+chance+to+share+some+of+those+with+you
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+didn+t+attend+the+first+ted
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+ve+been+to+a+lot+of+them+since+that+time+i+thought+it+[+would+]+kind+of+be+interesting+to+think+back+to+that+time
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+richard+got+the+whole+thing+started+thank+you+very+much+richard+it+s+been+a+big+enjoyable+part+of+my+life+coming+here
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+thinking+back+i+was+thinking+those+of+us+in+silicon+valley+were+really+focused+on+products+or+objects+certainly+technological+objects
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+great+fun+in+those+days+and+some+of+those+of+those+of+you+who+are+in+the
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=audience+were+my+clients+we+d+come+in+with+some
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=prototype+underneath+a+black+cloth+and+we+d+put+it+on+the+conference+table+and+we+d+pull+off+the+black+cloth+and+everybody+would+ooh+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ah+that+was+a+really+good+time+and+so+we+ll+continue+to+to+focus+on+products+as+we+always+have
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+probably+wrestled+you+to+the+floor+and+tried+to+show+you+my+new+eyemodule+two+which+was+a+camera+that+plugged+into+the+handspring
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+took+i+took+a+lot+of+pictures+last+year+very+few+people+knew+what+i+was+up+to+but
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+took+a+lot+of+pictures+this+year+maybe+you+could
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=show+the+slides+this+year+we+re+carrying+this+treo+which+we+had+a+lot+to+do+with+and+helped+handspring+design
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=though+we+designed+it+a+few+years+ago+it+s+just+become+ubiquitous+in+the+last+year+or+so+this+heartstream+defibrillator+which+is+saving+lives+maybe+you+ve+seen+them+in+the+airports+they+seem+to+be+everywhere+now+lots+of+lives+are+being+saved+by+those
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+re+just+about+to+announce+the
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=reader+product+that+that+i+believe+will+make+magazines+even+more+enjoyable+to+read+so+we+really+will+continue+to+focus+on+products+but
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=something+s+happened+in+the+last+eighteen+years+since+richard+started+ted+and+that+s+that
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+like+us+i+know+people+in+other+places+have+caught+onto+this+for+a+long+time
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+ve+really+just+started+we+ve+kind+of+climbed+maslow+s+hierarchy+a+little+bit+and+so+we+re+now+focused
error: request timeout
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+personality+into+products+and+i+think+you+re+starting+to+see+that+and+it+s+making+our+job+even+more+enjoyable
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=interestingly+enough+we+used+to+primarily+build+3+d+models+you+know+you+ve+seen+some+today+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+3+d+renderings+then+we+d+go+and+we+d+show+those+as+communicating+our
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+firms+like+ours+are+having+to+move+to+to+a+point+where+we+get+those+objects+that+we+re+designing+and+get+them+in+motion
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=showing+how+they+ll+be+used++and+so
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+order+to+do+that+we+ve+been+forming+internal
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=groups+in+order+to+make+these+kind+of+experience+prototypes+that+show+just+what+we+mean+about+the
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=relationship+and+it+s+it+s+a+much+better+way+to+see+it+s+kind+of+like+architects+who+show+people+in+their+houses
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+opposed+to+them+being+empty+so+i+thought+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+would+show+you+a+few+a+few+videos+to+show+off+this+new
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=broader+definition+of+design+in+products+and+services+and+environments
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+have+a+few+of+them+they+re+no+more+than+a+minute+or+a+minute+and+a+half+apiece
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+thought+you+might+be+interested+in+seeing+some+of+our+work+over+the+last
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=responds+in+video+so+prada+new+york++we+were+asked+by+rem+koolhaas+and+oma+to+help+us+conceive
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+technology+that+s+in+their+retail+store+in+new+york++he+wanted
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+new+kind+of+store+a+new+one+a+store+that+had+a+cultural+role+as+well+as+a+retail
error: request timeout
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=actually+designing+custom+technology+as+opposed+to+just+buying+things+off+the+shelf+and+putting+them+to+use+so
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+re+lots+of+things+everything+has+rf+tags+there+s+rf+tags+on+the+user+on+the+cards++there+s+the+staff+devices+that+are+all+around+the+store
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+pick+them+up+and+once+you+see+something+that+you+re+interested+in
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+staff+person+can+scan+them+in+and+then+they+can+be+shown+on+any+screen+throughout+the+store++you+can+look+at+color+and+sizes+and+how+it+appeared+on+the+runway+or+whatever
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=merchandise+that+you+re+interested+in+can+be+scanned+it+s+taken+into+the+dressing+room++and+in+the+dressing+room+there+are+scanners+so+that+we+know+exactly+what
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=clothing+you+have+in+the+dressing+room++we+can+put+that+up+on+a+on+a+touch+screen+and+you+can
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=play+with+that+and+get+more+information+about+the+clothing+that+you+re+interested
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+as+you+re+trying+it+on+it+s+been+used+a+lot+of+places+but+i+particularly+like+the+the+use+here+of+liquid+crystal
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=displays+in+the+changing+room+the+last+time+i+went+to+to+see+this+store+there+was+a+huge+buzz+about+people+standing+outside+and+wondering+am+i+going+to+actually+get+to+see+the+people+changing+clothes+here
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+push+the+button+of+course+the+whole
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+try+to+get+approval+or+not+for+whatever+you+re+wearing
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+one+of+my+favorite+features+of+the+technology+is+the+magic+mirror+where
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+put+on+the+clothes+there+s+a+big+display+in+the
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+mirror++and+you+can+turn+around+but+there+s+a+three+second+delay+so+you+can+see+what+you+look+like+from+the+back+or+all+the+way+around
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+a+year+and+a+half+ago+we
error: request timeout
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=an+installation+in+the+museum+this+is+a+new+wing+of+the+science+museum+in+london++and+it+s+primarily+about+digital+and+biomedical+issues
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+group+at+itch+which+is+now+part+of+ideo
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=designed+this+interactive+wall+that+s+about+four+stories+tall+i+don+t+know+if+anybody+s+seen+this+it+s+pretty+spectacular+in+the+room
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=anyway+it+s+based+on+the+london+subway+system+and+so+you+can+see+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+goal+is+to+bring+some+of+the+feedback+that+the+people+who+had+gone+to+the+museum
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=were+giving+and+get+it+up+on+the+wall+so+everybody+could+see+just+for+everybody+to+see+so+you+enter+your+information+then+like+the+london+tube+system++the+little+trains+go+around+with
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+you++re+thinking+about++and+then+when+you+get+to+a+station+it+s
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=expanded+so+that+you+can+actually+read+it+then+when+you+exit+the+imax+theatre+on+the+fourth+floor+mostly+teenagers+coming+out+of+there+there+s+this+big+open
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=space+that+has+these+tables+in+it+that+have+interactive+games+which+are+quite+fun+also+designed+by+durrell+[+bishop+]+and+andrew+[+hirniak+]+of+itch++and+the+topics
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=things+that+the+museum+is+about++male+fertility++choosing+the+sex+of+your+baby+or+what+a+driverless+car+might+be+like
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+lots+of+room+so+people+can+come+up+and+understand+what+it+is+before+they+get+involved++and+also+it+s+not+shown+in+the+video+but+these+are+very+beautiful+they+go+to+the+top+of+the+wall+and+when+they+reach+all+the+way+to+the+top+after+they+ve+bounced+around+they
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=disperse+into+bits+and+go+off+into+the+atmosphere
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+next+video+is+not+done+by+us+this+is+cbs+sunday+morning+that+aired+about
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=scott+adams+ran+into+us+and+asked+us+if+we+wouldn+t+help+to+design+the+ultimate+cubicle+for+dilbert+which+sounded+like+a+fun+thing+and+so
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+couldn+t+pass+it+up+he+s+always+been+interested+in+technology+in+the+future+video+scott+adams+i+realized+that+at+some+point+i+might+be+the+world+s+expert+on+what+s+wrong+with+cubicles
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+we+thought+well+wouldn+t+it+be+fun+to+get+together+with+some+of+the+smartest+design+guys+in+the+world
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+try+to+figure+out+if+we+could+make+the+cubicle+better+narrator+though+they+work+in+a
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=space+spectacularly+set+under+san+francisco+s+oakland+bay+bridge
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+team+built+their+own+little+cubicles+to+fully+experience+the+problems
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+first+group+builds+a+cubicle+in+which+the+walls+are+screens
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+the+computer+and+for+family+photos+in+the+second+group+s+scenario++the+walls+are+alive
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+actually+give+dilbert+a+group+hug
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=behind+the+humor+is+the+idea+of+making+the+cubicle+more+human
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+here+s+the+final+thing+complete+with+orange+lighting+that+follows+the+sun+across+that+follows+the+tracks+of+the+sun+across+the+the+sky+so+you+feel+that+in+your
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+your+cubicle+and+my+favorite+feature+which+is+a+flower+in+a+vase+that+wilts+when+you+leave+in+disappointment++and+then+when+you+come+back+it+comes+up
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=something+to+be+aggressive+with+to+release+tension+dk+and+of+course+a+hammock+for+your+afternoon+nap
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=life+would+be+sweet+in+a+cubicle+like+this+dk
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+next+project+we+were+asked+to+design+a+pavilion+to+celebrate+the+recycling+of+the+water+on+the+millennium+dome
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+london++the+dome+has+an+incredible+amount+of+water+that+washes+off+of+it+as+well+as+wastewater
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+this+building+actually+celebrates+the+water+as+it+comes+out+of+the+recycling+plant+and+goes+into+the+reed+bed+so+that+it+can+be+filtered+for+the+final+time
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+pavilion+s+design+goal+was+to+be+kind+of+quiet+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+contrast+to+if+you+went+inside+the+dome+where+it+s+kind+of+wild+and+crazy+and+everybody+s
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=learning+all+kinds+of+things+or+fooling+around+or+whatever+they+re+doing+but+it+was+intended+to+be+quite+quiet
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+you+would+wander+around+and+gather+information+in+a+straightforward+fashion
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+the+recycling+process+and+what+s+being+done+and+how+they+re+going+to+reuse+the+water+once+it+comes
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+panels+actually+rotate+so+you+can+get+the+information+on+the+front+side+but+as+as+they+rotate+you+can+see+the+actual+recycling+plant+behind+with+all+the+machines+as+they+actually+process
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+quick+prototypes+and+we+re+announcing+a+new+product+here+tonight+which+is+the+first+time+this+has+ever+been+shown+in+public
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+called+spyfish+and+it+s
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+company+called+h2eye+started+by+nigel+jagger+in+london
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+s+a+company+that+s+trying+to
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=bring+the+experience+many+people+have+boats+or+enjoy+being+on+boats+but+a+very+small+percentage+of+people+actually
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+the+capability+or+the+interest+in+going+under+the+water
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+actually+seeing+what+s+there+and+enjoying+what+scuba+divers+do+this+product+it+has+two+cameras++you+throw+it+over+the+side+of+your+boat
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+basically+scuba+dive+without+getting+wet
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+us+there+s+the+object+for+us+it+was+two+projects+one+to+design+the+interface
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+that+the+interface+doesn+t+get+in+your+way+you+could+have+that+kind+of+immersive+experience+of+being+underwater+of+feeling+like+you+re+underwater+seeing+what+s+going+on
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+other+one+was+to+design+the+object+and+make+sure+that+it+was
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+a+consumer+product+and+not+a+research+tool+and+so+we+spent+a+lot+of+time+this+has+been+going+on+for+about+seven+or+eight+years+this+project+and+[+we+re+]
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=just+ready+to+start+building+them+narrator
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+spyfish+is+a+revolutionary+subaquatic+video+camera+it+can+dive+to+five+hundred+feet+to+where+sunlight+does
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+is+equipped+with+powerful+lights++it+becomes+your+eyes+and+ears+as+you+venture+into+the+deep
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+battery+powered+spyfish+sends+the+live+video+feed+through+a+slender+cable+dk
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+slender+cable+was+a+huge+technological+advancement+and+it+allowed+the+whole+thing+to+be+the+size+that+it+is+narrator+and+this+central+box+connects+the+whole+system+together
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=maneuvering+the+spyfish+is+simple+with+the+wireless+remote+control++you+watch+the+video+with+superimposed+graphics+that+indicate+your+depth+and+compass+heading
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fluid+graphics+and+ambient+sounds+combine+to+help+you+completely+lose+yourself+underwater
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+last+thing+i+ll+talk+about+is+approtec+which+is+a+project+that+i+m+very+excited+about
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=approtec+is+a+company+started+by+dr+martin+fisher+who+s+a+good+friend+of+mine+he+s+a+ph+d+from+stanford+he+found+himself+in+kenya+on+a+fulbright
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+he+had+a+very+interesting+insight+which+is+that+he+said
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=entrepreneurs+in+kenya+there+must+be+entrepreneurs+everywhere
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+he+noticed+that+for+for+weddings+and+funerals+there+they+could+find+enough+money+to+put+something+together+so+he+decided+to+start+manufacturing
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=products+in+kenya+with+kenyan+manufacturers+designed+by+people+like+us+but
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+this+date+he+s+been+gone+for+only+a+few+years+he+s+started+nineteen+thousand+companies
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+s+made+thirty+thousand+new+jobs+and+just
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+sales+of+the+products+this
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+sales+of+these+products+is+now
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+the+gdp+of+kenya+this+is+one+guy+doing+this+this+is+a+pretty+spectacular+thing+so+we+re+in+the+process+of+helping+them+design
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+order+for+these+people+who+have+a+quarter+acre
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+land+to+be+able+to+grow+crops+in+the+off+season+what+they+do+now+is+they+can+grow+crops+in+the+rainy+season+but+they+can+t+grow+them+in+the+in+the+off+season+and+so+by+doing+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+woman+that+you+saw+in+the+first+thing+she+s+a+school+teacher+always+wanted+to+send+her+kids+to+college+and+she+s+going+to+be+able+to+do+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=very+straightforward+things+that+we+re+designing+my+students+are+doing+this+as+class+projects+and+ideo+has
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=donated+their+time+to+do+this+kind+of+work+it+s+really+amazing+to+see
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+see+his+success+martin++s+we+also+were+thinking+about+the+experience+of+richard++and+so
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+just+have+one+more+thing+to+say+can+you+read+it
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+it+s+always+kind+of+funny+when+he+comes+up+and+hovers+you+know+you+don+t+want+to+be+rude+to+him+and+you+don+t+want+to+feel+guilty+and+so+i+thought+this+would+do+it+where+i+just+sit+here
found 0 videos: []
error: no video is found.
sleep 5 seconds to avoid blocking
------<548>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidKelley_2012.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+wanted+to+talk+to+you+today+about+creative+confidence+i+m+going+to+start+way+back+in+the+third+grade
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+oakdale+school+in+barberton+ohio++i+remember+one+day
found 1 videos: [['/talks/david_kelley_how_to_build_your_creative_confidence', '2012']]
selected: /talks/david_kelley_how_to_build_your_creative_confidence
sleep 4 seconds to avoid blocking
------<549>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidKwong_2014.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+magic+i+work+in+what+most+people+think+are+two+distinct+fields++but+i+believe+they+are+the+same
found 1 videos: [['/talks/david_kwong_two_nerdy_obsessions_meet_and_it_s_magic', '2014']]
selected: /talks/david_kwong_two_nerdy_obsessions_meet_and_it_s_magic
sleep 3 seconds to avoid blocking
------<550>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidLang_2013U.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+this+video+was+taken+at+aquarius+undersea+laboratory+four+miles+off+the+coast+of+key+largo+about+sixty+feet+below+the+surface
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=uses+this+extreme+environment+to+train+astronauts+and+aquanauts++and+last+year+they+invited+us+along+for+the+ride
found 1 videos: [['/talks/david_lang_my_underwater_robot', '2013']]
selected: /talks/david_lang_my_underwater_robot
sleep 3 seconds to avoid blocking
------<551>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidLogan_2009.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=really+here+to+talk+about+is+the+how+okay+so+how+exactly+do+we+create+this
found 17 videos: [['/talks/paul_bloom_the_origins_of_pleasure', '2011'], ['/talks/deb_roy_the_birth_of_a_word', '2011'], ['/talks/barry_schuler_genomics_101', '2009'], ['/talks/sendhil_mullainathan_solving_social_problems_with_a_nudge', '2010'], ['/talks/morgan_spurlock_the_greatest_ted_talk_ever_sold', '2011'], ['/talks/beau_lotto_optical_illusions_show_how_we_see', '2009'], ['/talks/rajesh_rao_a_rosetta_stone_for_a_lost_language', '2011'], ['/talks/jeremy_gilley_one_day_of_peace', '2011'], ['/talks/sebastian_wernicke_lies_damned_lies_and_statistics_about_tedtalks', '2010'], ['/talks/sheena_iyengar_the_art_of_choosing', '2010'], ['/talks/jane_mcgonigal_gaming_can_make_a_better_world', '2010'], ['/talks/pavan_sukhdev_put_a_value_on_nature', '2011'], ['/talks/eric_giler_a_demo_of_wireless_electricity', '2009'], ['/talks/shekhar_kapur_we_are_the_stories_we_tell_ourselves', '2010'], ['/talks/dave_eggers_my_wish_once_upon_a_school', '2008'], ['/talks/marcus_du_sautoy_symmetry_reality_s_riddle', '2009'], ['/talks/itay_talgam_lead_like_the_great_conductors', '2009']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+will++innovation+now+i+want+to+tell+you+a+quick+story+we+ll+go+back+a+little+more
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+fact+the+date+i+m+curious+to+know+if+any+of+you+know+what+happened+on+this+momentous+date+it+was+february+3rd+two+thousand+and+eight
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=anyone+remember+what+happened+february+3rd+two+thousand+and+eight
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=super+bowl+i+heard+it+over+here++it+was+the+date+of+the+super+bowl++and+the+reason+that+this+date+was+so+momentous+is+that+what+my+colleagues+john+king+and+halee+fischer+wright+and+i
found 1 videos: [['/talks/david_logan_tribal_leadership', '2009']]
selected: /talks/david_logan_tribal_leadership
sleep 5 seconds to avoid blocking
------<552>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidMacaulay_2002.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+draw+to+better+understand+things++sometimes+i+make+a+lot+of+drawings+and+i+still+don+t+understand
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+it+is+i+m+drawing+those+of+you+who+are+comfortable+with+digital+stuff+and+even+smug+about+that+relationship
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=might+be+amused+to+know+that+the+guy+who+is
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+best+known+for+the+way+things+work+while+preparing+for
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=part+of+a+panel+for+called+understanding+spent+two+days+trying+to+get+his+laptop+to+communicate
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+knew+about+extension+managers++i+ve+always+managed+my+own+extensions+so+it+never+even+occurred+to+me
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=instructions+but+i+did+finally+figure+it+out+i+had+to+figure+it+out+because+along+with+the+invitation+came+the+frightening
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=reminder+that+there+would+be+no+projector
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+bringing+those+carousels+would+no+longer+be+necessary+but+some+alternate+form+of+communication+would++now
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+could+talk+about+something+that+i+m+known+for+something+that+would+be+particularly+appropriate+for+many+of+the
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+could+talk+about+something+i+really+care+about+i+decided+to+go+with+the+latter+i+m+going
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+talk+about+rome+now+why+would+i+care+about+rome++particularly++well++i+went+to+rhode+island+school+of+design
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+second+half+of+the++60s+to+study+architecture+i+was+lucky+enough+to+spend+my+last+year+my+fifth+year+in+rome+as+a
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+least+reason+was+the+fact+that+i+had+spent+those+first+four+years+living+at+home
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=driving+into+risd+everyday++driving+back++i+missed+the++60s+i+read+about+them
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+understand+they+were+pretty+interesting++i+missed+them++but+i+did+spend+that+extraordinary+year+in+rome+and+it+s+a+place
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+is+never+far+from+my+mind+so+whenever+given+an+opportunity+i+try+to+do+something+in+it+or+with+it+or+for+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+also+make+drawings+to+help+people+understand+things
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=things+that+i+want+them+to+believe+i+understand
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+s+what+i+do+as+an+illustrator+that+s+my+job++so+i+m+going+to+show+you+some+pictures+of+rome+i+ve+made+a+lot+of+drawings+of+rome+over+the+years
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+are+just+drawings+of+rome+i+get+back+as+often+as+possible+i+need+to+all+different
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=materials+all+different+styles+all+different+times++drawings+from+sketchbooks+looking+at+the+details+of+rome
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=part+of+the+reason+i+m+showing+you+these+is+that+it+sort+of+helps+illustrate+this+process+i+go+through+of+trying+to+figure+out+what+it+is+i+feel+about+rome+and+why+i+feel+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+are+sketches+of+some+of+the+little+details+rome+is+a+city+full+of+surprises+i+mean+we+re+talking+about+unusual+perspectives+we+re+talking+about+narrow+little+winding+streets+that+suddenly+open
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=never+though+piazzas+that+are+not+humanly+scaled
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=part+of+the+reason+for+that+is+the+fact+that+they+grew+up+organically+that+amazing+juxtaposition+of+old+and+new
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+come+down+between+the+buildings+that+sort+of+create+a+map+that+s+traveling+above+your+head+of+usually+blue+especially+in+the+summer
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=compared+to+the+map+that+you+would+normally+expect+to+see+of+conventional+streets+and+i+began+to+think+about+how+i+could+communicate+this+in+book+form+how+could+i+share+my
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sense+of+rome+my+understanding+of+rome+and+i+m+going+to+show+you+a+bunch+of+dead+ends+basically
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+primary+reason+for+all+these+dead+ends+is+when+if+you+re+not+quite+sure+where+you+re+going+you+re+certainly+not+going+to+get+there+with+any+kind+of+efficiency
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+s+a+little+map+and+i+thought+of+maps+at+the+beginning+maybe+i+should+just+try+and+do+a+little+atlas+of+my+favorite+streets+and+connections+in+rome+and+here+s+a
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=line+of+text+that+actually+evolves+from+the+exhaust+of+a+scooter+zipping+across+the+the+page+here+that+same+line+of+text+wraps+around+a+fountain+in+an+illustration+that+can+be+turned+upside+down+and+read+both+ways
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=maybe+that+line+of+text+could+be+a+story+to+help+give+some+human
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=aspect+to+this+maybe+i+should+get
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=away+from+this+map+completely+and+really+be+honest+about+wanting+to+show+you+my+favorite+bits+and+pieces+of+rome+and+simply+kick+a+soccer+ball+in+the+air+which+happens
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+so+many+of+the+squares+in+the+city+and+let+it+bounce+off+of+things+and+i+ll+simply+explain+what+each+of+those+things+is+that+the+soccer+ball+hits+that+seemed+like+a+sort+of+a+cheap+shot+but
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=even+though+i+just+started+this+presentation+this+is+not+the+first+thing+that+i+tried+to+do+and+i+was+getting+sort+of+desperate+eventually+i+realized+that+i+had+really+no+content
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+could+count+on+so+i+decided+to+move+towards+packaging+i+mean
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+seems+to+work+for+for+a+lot+of+things+so
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+thought+a+little+box+set+of+four+small+books+might+do+the+trick++but+one+of+the+ideas+that+emerged+from+from+some+of+those+sketches+was+the+notion+of+traveling+through+rome
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+different+aspects+of+rome+sort+of+an+overview+of+rome+and+the+plan+that+you+might+see+from+a+dirigible++quick
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=snapshots+of+things+you+might+see+from+a+speeding+motor+scooter+and+very+slow+walking+through+rome+you+might+be+able+to+study+in+more+detail+some+of+the+wonderful
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=surfaces+and+whatnot+that+you+come+across+anyways+i+went+back+to+the+dirigible+notion+went+to+alberto
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+his+dirigibles+that+had+enough+dimensions+so+i+could+actually+use+it+as+a+scale+that+i+would+then+juxtapose+with
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+of+the+things+in+rome+this+thing+would+be+flying+over+or+past+or+be+parked+in+front+of+but+it+would+be+like+having+a+ruler+sort+of+travel+through+the+pages+without+being+a+ruler
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+that+you+know+how+long+number+eleven+actually+is+but+you+would+be+able+to+compare+number+eleven+against+the+pantheon+with+number+eleven+against+the+baths+of+caracalla+and+so+on+and+so+forth++if+you+were+interested+this+is+beatrix+she+has+a+dog
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+dog+named+ajax+she+has+purchased+a+dirigible+a+small+dirigible+she+s+assembling+the+structure++ajax+is+sniffing+for+holes
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+in+the+balloon+before+they+set+off+she+launches+this+thing+above+the+spanish+steps
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+sets+off+for+an+aerial+tour+of+the+city+over+the+spanish+steps+we+go+a+nice+way+to+show+that+that
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+stream+sort+of+pouring+down+the+hill++unfortunately+just+across+the+road+from+it+or+quite+quite+close+by+is+the+the+column+of+marcus+aurelius+and
error: request timeout
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+the+dirigible+makes+an+impression+as+you+can+see+as+she+starts+trying+to+read+the+story+that+spirals+around+the+column+of+marcus+aurelius+gets+a+little+too+close++nudges+it
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+gives+me+a+chance+to+suggest+to+you+the+structure+of+the+column+of+marcus+aurelius+which+is+really
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=more+than+a+pile+of+quarters+high+thick+quarters+over+the+piazza+of+saint+ignacio+completely+ruining+the+symmetry+but+that+aside
error: request timeout
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=usually+extraordinary+blue+sky+over+the+pantheon+and+the+26+foot+diameter+oculus+she+parks+her+dirigible+lowers+the+anchor+rope+and+climbs+down+for
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+text+here+is+right+side+and+upside+down+so+that+you+are+forced+to+turn+the+book+around+and+you+can+see+it+from
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ground+point+of+view+and+from+her+point+of+view+looking+in+the+hole+getting+a+different+kind+of+perspective+moving+you+around+the+space+particularly+appropriate+in+a+building+that+can+contain+perfectly
error: request timeout
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=dimensions+of+the+diameter+being+the+same+as+the+distance+from+the+center+of+the+floor+to+the+center+of+the+oculus+unfortunately+for+her+the+anchor+line+gets+tangled+around+the+feet+of+some+boy+scouts+who+are+visiting+the
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=pantheon+and+they+are+immediately+yanked+out
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+given+an+extraordinary+but+terrifying+tour+of+some+of+the+domes+of+rome++which+would+from+their+point+of+view+naturally+be+hanging+upside+down
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+bail+out+as+soon+as+they+get+to+the+top+of+saint+ivo+that+little+spiral+structure+you+see+there+she+continues+on+her+way+over+piazza+navona++notices+a+lot+of+activity+at+the+tre+scalini+restaurant+is+reminded+that+it+is+lunchtime+and+she+s+hungry
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=motoring+towards+the+campo+de++fiori
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+they+soon+reach++ajax+the+dog+is+put+in+a+basket+and+lowered+with+a+list+of+food+into+the+marketplace+which+flourishes+there+until+about+one+in+the+afternoon+and+then+is+completely+removed+and+doesn+t+appear+again+until+six+or+seven+the+following+morning
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=anyway++the+pooch+gets+back+to+the+dirigible+with+the+stuff
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=makes+a+lunge+for+it+she+s+managed+to+save+the+prosciutto+but+in+the+process+she+loses+the+tablecloth+which+you+can+see
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=flying+away+in+the+upper++left+hand+corner
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+continue+without+their+tablecloth+looking+for+a+place+to+land+this+thing+so+that+they+can+actually+have+lunch+they+eventually+discover+a+huge+wall+that+s+filled+with+small+holes+ideal+for
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=docking+a+dirigible+because+you+ve+got+a+place+to+tie+up
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=turns+out+to+be+the+exterior+wall+that+part+of+it+that+remains+of+the+coliseum++so+they+park+themselves+there+and+have+a+terrific+lunch+and+have+a+spectacular+view
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+the+end+of+lunch+they+untie+the+anchor+they+set+off+through+the+baths+of+caracalla
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+over+the+walls+of+the+city+and+then+an+abandoned
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=decide+to+take+one+more+look+at+the+pyramid+of+cestius+which+has+this+lightning+rod+on+top+unfortunately+that+s+a+problem+they+get+a+little+too+close
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+when+you+re+in+a+dirigible+you+have+to+be+very+careful+about+spikes+so+that+sort+of+brings+her+little+story+to+a+conclusion+marcello+on+the+other+hand
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+sort+of+a+lazy+guy+but
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+s+not+due+at+work+until+about+noon+so+the+alarm+goes+off+and+it
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+five+to+twelve+or+so+he+gets+up++leaps+onto+his+scooter+races+through+the+city+past+the+church+of+santa+maria+della+pace++down+the+alleys+through+the
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=tourists+may+be+wandering+through++disturbing+the+quiet+backstreet+life+of+rome+at+every+turn+that+speed+with+which+he+is+moving+i+hope+i+have
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=suggested+in+this+little+image+which+again+can+be+turned+around+and+read+from+both+sides+because+there+s+text+on+the+bottom+and+text+on+the+top+one+of+which+is+upside+down+in+this+image
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so++he+keeps+on+moving
error: request timeout
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=an+unsuspecting+waiter+who+is+trying+to+deliver
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=linguine+in+a+delicate+white+wine+clam+sauce+to+diners+who+are+sitting+at+a+table
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=just+outside+of+a+restaurant+in+the+street++waiter+catches+on+but+it+s+too+late++and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=marcello+keeps+moving+in+his+scooter
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=everything+he+sees+from+this+point+on+is+slightly+affected+by+the+linguine+but+keeps+on+moving+because+this+guy+s+got+a+job+to+do
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=removes+some+scaffolding+one+of+the+reasons+rome+remains+the
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+of+scaffolding+and+the+determination+to+maintain+the+fabric+it+is+a+city+that+continues+to+grow+and+adapt+to+the+needs+of+the+particular+time+in+which+it+finds+itself+or+we+find+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=right+through+the+piazza+della+rotonda+in+front+of+the+pantheon+again
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=wreaking+havoc+and+finally+getting+to+work+marcello+as+it+turns+out+is+the+driver
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+ve+been+on+the+number+sixty+four+bus+you+know+that+it+s+driven+with+the+same+kind+of+exuberance+as+marcello+demonstrated+on+his+scooter
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+finally+carletto+you+see+his+apartment+in+the+upper+left+hand+corner+he+s+looking+at+his+table+he+s+planning+to+propose+this+evening
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+his+girlfriend+of+forty+years+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+wants+it+to+be+perfect+he+s+got+candles+out+he+s+got+flowers+in+the+middle+and+he+s+trying+to+figure+out+where+to+put+the+plates+and+the+glasses+but+he+s+not+happy++something+s+wrong
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+phone+rings+anyway++he+s+called+to+the+palazzo+he+saunters+he+saunters+at+a+good+clip+but+as+compared+to+all+the+traveling+we+ve+just+seen+he+s+sauntering
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=carletto+because+he+s+in+entertainment+actually+he+s+in+television+he+s+actually+in+television+repair+++which+is+why+people+know+him
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+they+all+have+his+number+he+arrives+at+the+palazzo++arrives+at+the+big+front+door
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=enters+the+courtyard+and+talks+to+the+custodian+who+tells+him+that+there+s+been+a+disaster+in+the+palazzo++nobody+s+tvs+are+working+and+there+s+a+big+soccer+game+coming+up+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+crowd+is+getting+a+little+restless+and+a+little+nervous+he+goes+down+to+the+basement
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+starts+to+check+the+wiring+and+then+gradually+works+his+way+up+to+the+top+of+the+building+apartment+by
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=every+television+checking+every+connection+hoping+to+find+out+what+this+problem+is+he+works+his+way+up+finally+the+grand+staircase+and+then+a+smaller+staircase+until+he+reaches+the+attic
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+opens+the+window+of+the+attic+of+course+and+there+s+a+tablecloth+wrapped+around+the+building+s+television+antenna
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+removes+it+the+problems+are+solved+everybody+in+the+palazzo+is+happy+and+of+course++he+also+solves+his+own+problem
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+he+has+to+do+now+with+a+perfect+table+is+wait+for+her+to+arrive+that+was+the+first+attempt
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=didn+t+seem+substantial+enough+to+to+convey
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=whatever+it+was+i+wanted+to+convey+about+rome+so+i+thought+well+i+ll+just+do+piazzas+and+i+ll
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=get+inside+and+underneath+and+i+ll+show+these+things+growing+and+show+why+they+re+shaped+the+way+they+are+and+so+on+and+then+i+thought+that+s+too+complicated
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=no+i+ll+just+take+my+favorite+bits+and+pieces+and+i+ll+put+them+inside+the+pantheon
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+you+can+see+the+top+of+sant+ivo+and+the+pyramid+of+cestius+and+the+tempietto+of+bramante+all+side+by+side+in+this+amazing+space
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+that+s+one+drawing+so+i+thought+maybe+it+s+time+for+piranesi+to+meet+escher+laughter
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+see+that+i+m+beginning+to+really+lose+control+here+and+also
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=also+hope+there+s+a+very+thin+blue+line
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+exhaust+that+sort+of+runs+through+this+thing+that+would+be+kind+of+the+trail+that+holds+it+all+together
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+only+a+neat+way+of+collecting+and+storing+information+it+s+a+series+of+layers+i+mean+you+always+peel+one+layer+off+another+we+think+of+them+as+pages+doing+it+a+certain+way+but+think+of+them+as+layers+i+mean+rome+is+a+place+of+layers
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=horizontal+layers+vertical+layers+and+i+thought++well+just+peeling+off+a+page+would+allow+me+to+if+i+got+you+thinking+about+it+the+right
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=would+allow+me+to+sort+of+show+you+the+depth+of+layers+the+stucco+on+the+walls+of+most+of+the+buildings+in+rome+covers
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=centuries+of+change+as+these+structures+have+been+adapted+rather+than+being+torn+down+if+i+do+a+foldout+page+on+the++left+hand+side
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+let+you+just+unfold+it+you+see+behind+it+what+i+mean+by+scar+tissue+you+can+see+that
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+one+thousand+six+hundred+and+thirty+five+it+became+essential+to+make+smaller+windows+because+the+bad+guys+were+coming+or+whatever
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=adaptations+all+get+buried+under+the+stucco+i+could+peel+out+a+page+of+this+palazzo+to+show+you+what+s+going+on+inside+of+it+but+more+importantly+i+could+also
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=show+you+what+it+what+it+looks+like+at+the+corner+of+one+of+those+magnificent+buildings+with+all+the+massive+stone+blocks+or+the+fake+stone+blocks+done+with+brick+and+stucco++which+is+more+often+the+case
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=those+narrow+little+streets+into+one+of+those+surprising+piazzas+by+using+a+double+gate+fold+double+foldout+page
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+if+you+were+like+me+reading+a+pop+up+book+as+a+child+you+hopefully+stick+your+head+into
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+wrap+the+pages+around+your+head+and+are+in+that+piazza+for+that+brief+period+of+time+and+i+ve+really+not+done+anything+much+more+complicated+than+make+foldout+pages
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+thought+maybe+i+could+be+simpler+here
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+s+look+at+the+pantheon+and+the+piazza+della+rotonda+in+front+of+it+here+s+a+book+completely+wide+open
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ok++if+i+don+t+open+the+book+the+whole+way+if+i+just+open+it+ninety+degrees++we+re+looking+down+the+front+of+the+pantheon+and+we+re+looking
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=more+or+less+down+on+the+square+and+if+i+turn+the+book+the+other+way++we+re+looking+across+the+square+at+the+front+of+the+pantheon+no+foldouts+no+tricks+just+a+book+that+isn+t+open+the+whole+way++that+seemed+promising+i+thought+maybe+i+ll+do+it+inside
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+can+even+combine+the+foldouts+with+the+only+partially+opened+book+so+we+get+inside+the+pantheon+and+it+grows+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+on+and+so+forth+and+i+thought+maybe+i+m+on+the+right+track+but+it+sort+of+lost+its+human+quality+so+i+went+back+to+the+notion+of+story+which+is+always+a+good+thing+to+have+if+you+re+trying+to+get+people+to+pay+attention+to+a+book+and+pick+up+information+along+the+way+pigeon
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+catchy+title+if+it+was+a+homing+pigeon+it+would+be+called+homer+s+odyssey+but+it+was+the+journey+of+the+i
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+a+title+works+use+it+but+it+would+be+a+journey+that+went+through+rome+and+showed+all+the+things+that+i+like+about+rome+it+s+a+pigeon+sitting+on+top+of+a+church+goes+off+during+the+day+and+does+normal+pigeon+stuff
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=comes+back+the+whole+place+is+covered+with+scaffolding+and+green+netting+and+there+s+no+way+this+pigeon+can+get+home
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=another+place+to+live+and+that+allows+me+to+go+through+my+catalog+of+favorite+things+and+we+start+with+the+tall+ones+and+so+on+maybe+it+has+to+go+back+and+live+with+family+members+that+s+not+always+a+good+thing+but
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+thought+that+s+sort+of+interesting+but+maybe+there+s+a+person+who+should+be+involved+in+this+in+some+way+so+i+kind+of+came+up+with+this+old+guy+who
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=his+life+looking+after+sick+pigeons+he+ll+go+anywhere+to+get+them+dangerous+places+and+whatnot+and+they+become+really+friends+with+this+guy+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=learn+to+do+tricks+for+him+and+entertain+him+at+lunchtime+and+stuff+like+that
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+a+real+bond+that+develops+between+this+old+man+and+these+pigeons+but+unfortunately+he+gets+sick+he
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=gets+really+sick+at+the+end+of+the+story+he+s+taught+them+to+spell+his+name+which+is+aldo+they+show+up+one+day+after+three+or+four+days+of+not+seeing+him
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+lives+in+this+little+garret+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+spell+his+name+and+fly+around+and+he+finally+gets+enough+strength+together+to+climb+up+the+ladder+onto+the+roof++and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+the+pigeons++a+la+red+balloon+are+there+waiting+for+him+and+they+carry+him+off+over+the+walls+of+the+city
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+forgot+to+mention+this+whenever+he+lost+a+pigeon+he+would+take+that+pigeon+out+beyond+the+walls+of+the+city+in+the+old+roman+custom
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+dead+were+never+buried+within+the+walls+and+i+thought+that+s+a+really+cheery+story
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=going+to+go+a+long+way+so+anyway
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=again++if+packaging+doesn+t+work+and+if+the+stories+aren+t+going+anywhere+i+just+come+up+with+titles+and+hope+that+a+title+will+sort+of+kick+me+off+in+the+right+direction+and+sometimes+it+does+focus+me+enough
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+ll+even+do+a+title+page+so+these+are+all+title+pages+that+eventually+led+me+to+the+solution+i+settled+on+which+is+the+story+of
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+young+woman+who+sends+a+message
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+a+homing+pigeon+she+lives+outside+the+walls+of+the+city+of+rome+to+someone+in+the+city
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+pigeon+is+flying+down+above+the+appian+way+here+you+can+see+the+tombs+and+pines+and+so+on+and+so+forth+along+the+way+if+you+see+the+red+line+you+are+seeing+the+trail+of+the+pigeon
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+don+t+see+the+red+line+you+are+the+pigeon
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+becomes+necessary+and+possible+at+this+point+to+try+to+convey+what+that+sense+would+be+like+of+flying+over+the+city+without+actually
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=past+the+pyramid+of+cestius+these+will+seem+very+familiar+to+you+even+if+you+haven+t+been+to+rome+recently+past+the+gatehouse
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+something+that+s+a+little+bit+unusual+this+pigeon+does+something+that+most+homing+pigeons+do+not+do+it+takes+the+scenic+route+which+was
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+device+that+i+felt+was+necessary+to+actually+extend+this+book+beyond+about+four
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+church+of+santa+maria+in+cosmedin+and+the+temple+of+hercules+towards+the+river++we+almost+collide+with+the+cornice+of+the+palazzo+farnese
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=designed+by+michelangelo++built+of+stone+taken+from+the+coliseum+narrow+escape+we+swoop+down+over+the+campo+de++fiori+this+is+one+of+those+things+i+show+to+my+students
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+it+s+a+complete+bastardization+a+denial+of+any+rules+of+perspective
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+only+rule+of+perspective+that+i+think+matters+is+if+it+looks+believable+you+ve+succeeded++but+you+try+and+figure+out+where+the+vanishing+points+meet+here+a
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=couple+are+on+mars+and++a+couple+of+others+in+cremona+but
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+piazza+in+front+of+santa+maria+della+pace+where+invariably+a+soccer+game+is+going+on+and+we+re+hit+by+a+soccer
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+a+terrible+illustration+of+being+hit+by+a+soccer+ball+i+have+all+the+pieces+there+s+santa+maria+della+pace++there+s+a+soccer+ball+there+s+a+little+bit+of+a+bird+s+wing+nothing+s+happening
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+had+to+rethink+it
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+if+you+do+want+to+see+santa+maria+della+pace+these+books+are+really+flexible++incredibly+interactive+just+turn+it+around+and+look+at+it+the+other+way
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=through+the+alley+we+can+see+the+impact+is+is
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+bird+manages+to+pull+itself+together+past+this+medieval+tower+one+of+the+few+remaining+medieval+towers+towards+the+church+of
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sant++agnese+and+around+the+dome+looking+down+into+piazza+navona+which+we+ve+already+mentioned+and+seen+and+flown+over+a+couple+of+times+there+s+the+bernini+statue+of+the+four+rivers
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+past+the+wonderful+borromini+sant+ivo+stopping+just+long+enough+on+the++26+foot+diameter+oculus+of+the+pantheon+to+catch
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=our+breath+and+then+we+can+swoop+inside+and+around+and+because+we+re+flying+we+don+t+really+have+to+worry+about+gravity+at+this+particular+moment+in+time+so+this+drawing+can+be+oriented+in+any+way
found 0 videos: []
sleep 3 seconds to avoid blocking
error: no video is found.
sleep 1 seconds to avoid blocking
------<553>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidMackay_2012X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+the+industrial+revolution+started+the+amount+of+carbon+sitting+underneath+britain+in+the+form+of+coal
found 1 videos: [['/talks/david_mackay_a_reality_check_on_renewables', '2012']]
selected: /talks/david_mackay_a_reality_check_on_renewables
sleep 1 seconds to avoid blocking
------<554>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidMcCandless_2010G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+suffering+from+information+overload+or+data+glut++and
found 1 videos: [['/talks/david_mccandless_the_beauty_of_data_visualization', '2010']]
selected: /talks/david_mccandless_the_beauty_of_data_visualization
sleep 5 seconds to avoid blocking
------<555>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidPerry_2006.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+grew+up+in+northern+ireland+right+up+in+the+very+very+north+end+of+it+there+where+it+s+absolutely+freezing+cold++this+was+me+running+around+in+the+back+garden++mid+summer
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+couldn+t+pick+a+career+in+ireland+the+obvious+choice+is+the+military+but+to+be+honest+it+actually+kind+of+sucks
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+mother+wanted+me+to+be+a+dentist
found 1 videos: [['/talks/david_perry_are_games_better_than_life', '2008']]
selected: /talks/david_perry_are_games_better_than_life
sleep 1 seconds to avoid blocking
------<556>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidPizarro_2012X.stm
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=had+a+very+successful+perfume+business+for+over+fifty+years+she+ran+it+it+sort+of+ended+abruptly+when+she+was+executed
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+murdering+six+hundred+men+you+see+it+wasn+t+a+very+good+perfume
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+fact+it+was+completely+odorless+and+tasteless+and+colorless++but+as+a+poison+it+was+the+best+money+could+buy++so+women+flocked+to+her
found 1 videos: [['/talks/david_pizarro_the_strange_politics_of_disgust', '2012']]
selected: /talks/david_pizarro_the_strange_politics_of_disgust
sleep 4 seconds to avoid blocking
------<557>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidPogue_2006.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=called+for+tech+support+again+i+ignored+my+boss+s
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+it+s+evening+and+my+dinner
found 1 videos: [['/talks/david_pogue_simplicity_sells', '2006']]
selected: /talks/david_pogue_simplicity_sells
sleep 4 seconds to avoid blocking
------<558>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidPogue_2008P.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+the+weekly+tech+critic+for+the+new+york+times+i+review+gadgets+and+stuff
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+mostly+what+good+dads+should+be+doing+this+time+of+year+is+nestling+with+their+kids+and+decorating+the+christmas+tree+what+i+m+mostly+doing+this+year+is+going+on+cable+tv+and+answering+the+same+question
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+are+the+tech+trends+for
error: request timeout
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+m+like+didn+t+we+just+go+through+this+last+year+but+i+m+going+to+pick+the+one+that+interests+me+most+and+that+is+the+completed+marriage+of+the+cell+phone+and+the+internet+you+know+i+found+that+volcano+on
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=google+images+not+realizing+how+much+it+makes+me+look+like+the+cover+of+dianetics
found 1 videos: [['/talks/david_pogue_cool_tricks_your_phone_can_do', '2009']]
selected: /talks/david_pogue_cool_tricks_your_phone_can_do
sleep 3 seconds to avoid blocking
------<559>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidPogue_2013U.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+noticed+something+interesting+about+society+and+culture+everything+risky+requires+a+license++so
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=learning+to+drive++owning+a+gun+getting+married++there+s+a+certain
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+true+in+everything+risky+except+technology
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+some+reason+there+s+no+standard+syllabus+there+s+no+basic+course+they+just+sort+of+give+you+your+computer+and+then+kick+you+out+of+the+nest
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+re+supposed+to+learn+this+stuff+how+just+by+osmosis+nobody+ever+sits+down+and+tells+you+this+is+how+it+works+so+today+i+m+going+to+tell+you+ten+things+that+you+thought+everybody+knew+but+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+the+web+if+you+want+to+scroll+down+don+t+pick+up+the+mouse+and+use+the+scroll+bar+that+s+a+terrible+waste+of+time+do+that+only+if+you+re+paid+by+the+hour+instead+hit+the+space+bar+the+space+bar
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=scrolls+down+one+page++hold+down+the+shift+key+to+scroll+back+up+again++so+space+bar+to+scroll+down+one+page++works+in+every+browser+in+every+kind+of+computer++also
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+the+web+when+you+re+filling+in+one+of+these+forms+like+your+addresses+i+assume+you+know+that+you+can+hit+the+tab+key+to+jump+from+box+to
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=box+to+box++but+what+about+the+pop+up+menu+where+you+put+in+your+state
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=don+t+open+the+pop+up+menu+that+s+a+terrible+waste+of+calories+type+the+first+letter+of+your+state+over+and+over+and+over+so+if+you+want+connecticut+go+c+c+c+if
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+want+texas+go+t+t++and+you+jump+right+to+that+thing+without+even+opening+the++pop+up+menu
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+the+text+is+too+small+what+you+do+is+hold+down+the+control+key+and+hit+plus+plus+plus++you+make+the+text+larger+with+each+tap
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=works+on+every+computer+every+web+browser+or+minus+minus+to+get+smaller+again+if+you+re+on+the+mac+it+might+be+command+instead
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+you+re+typing+on+your+blackberry+android++iphone+don+t+bother+switching+layouts+to+the+punctuation+layout+to+hit+the+period+and+then+a+space+then+try+to+capitalize+the+next+letter+just+hit+the+space+bar+twice+the+phone+puts+the+period
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=space+and+the+capital+for+you
found 15 videos: [['/talks/rachel_botsman_the_currency_of_the_new_economy_is_trust', '2012'], ['/talks/shaka_senghor_why_your_worst_deeds_don_t_define_you', '2014'], ['/talks/toby_shapshak_you_don_t_need_an_app_for_that', '2014'], ['/talks/david_brooks_the_social_animal', '2011'], ['/talks/dame_ellen_macarthur_the_surprising_thing_i_learned_sailing_solo_around_the_world', '2015'], ['/talks/enrique_penalosa_why_buses_represent_democracy_in_action', '2013'], ['/talks/david_pogue_10_top_time_saving_tech_tips', '2013'], ['/talks/jill_tarter_calculating_the_odds_of_intelligent_alien_life', '2012'], ['/talks/simon_lewis_don_t_take_consciousness_for_granted', '2011'], ['/talks/elon_musk_the_mind_behind_tesla_spacex_solarcity', '2013'], ['/talks/amory_lovins_a_40_year_plan_for_energy', '2012'], ['/talks/mohamed_ali_the_link_between_unemployment_and_terrorism', '2013'], ['/talks/jeremy_howard_the_wonderful_and_terrifying_implications_of_computers_that_can_learn', '2014'], ['/talks/kate_orff_reviving_new_york_s_rivers_with_oysters', '2011'], ['/talks/meera_vijayann_find_your_voice_against_gender_violence', '2014']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=go+space+space++it+is+totally+amazing
found 10 videos: [['/talks/allan_adams_the_discovery_that_could_rewrite_physics', '2014'], ['/talks/larry_page_where_s_google_going_next', '2014'], ['/talks/hannah_fry_the_mathematics_of_love', '2015'], ['/talks/johann_hari_everything_you_think_you_know_about_addiction_is_wrong', '2015'], ['/talks/stefon_harris_there_are_no_mistakes_on_the_bandstand', '2011'], ['/talks/thomas_goetz_it_s_time_to_redesign_medical_data', '2011'], ['/talks/charles_hazlewood_british_paraorchestra_the_debut_of_the_british_paraorchestra', '2012'], ['/talks/jeff_hancock_the_future_of_lying', '2012'], ['/talks/marc_kushner_why_the_buildings_of_the_future_will_be_shaped_by_you', '2015'], ['/talks/david_pogue_10_top_time_saving_tech_tips', '2013']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=also+when+it+comes+to+cell+phones+on+all+phones++if+you+want+to+redial+somebody+that+you+ve+dialed+before+all+you+have+to+do+is+hit+the+call+button+and+it+puts+the+last
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=phone+number+into+the+box+for+you+and+at+that+point+you+can+hit+call+again+to+actually+dial+it+no+need+to+go+to+the+recent+calls+list+if+you+re+trying+to
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=somebody+just+hit+the+call+button+again+something+that+drives+me+crazy+when+i+call+you+and+leave+a+message+on+your+voice+mail+i+hear+you+saying+leave+a+message+and+then+i+get+these+fifteen+seconds+of+freaking+instructions+like+we+haven+t+had+answering+machines+for
error: request timeout
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+turns+out+there+s+a+keyboard+shortcut+that+lets+you+jump+directly+to+the+beep+like+this+phone+at+the+tone+please+david+pogue
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=unfortunately+the+carriers+didn+t+adopt+the+same+keystroke+so+it+s+different+by+carrier+so+it+devolves+upon+you+to+learn+the+keystroke+for+the+person+you+re+calling
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+didn+t+say+these+were+going+to+be+perfect
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+most+of+you+think+of+google+as+something+that+lets+you+look+up+a+web+page+but+it+is+also+a+dictionary+type+the+word+define+and+the+word+you+want+to+know+you
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=t+even+have+to+click+anything+there+s+the+definition+as+you+type+it+s+also+a+complete+faa+database+type+the+name+of+the+airline+and+the+flight+it+shows+you+where+the+flight+is+the+gate+the+terminal
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+long+until+it+lands+you+don+t+need+an+app+it+s+also+unit+and+currency+conversion
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=while+we+re+talking+about+text+when+you+want+to+highlight+this+is+just+an+example
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=laughter+when+you+want+to+highlight+a+word++please+don+t+waste+your+life+dragging+across+it+with+the+mouse+like+a+newbie+double+click+the+word+watch+two+hundred
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+go+double+click+it+neatly+selects+just+that+word+also+don+t+delete+what+you+ve+highlighted+you+can+just+type+over+it+this+is+in+every+program+also+you+can+go+double+click+drag+to+highlight+in
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=increments+as+you+drag+much+more+precise+again+don+t+bother+deleting+just+type+over+it
found 1 videos: [['/talks/david_pogue_10_top_time_saving_tech_tips', '2013']]
selected: /talks/david_pogue_10_top_time_saving_tech_tips
sleep 4 seconds to avoid blocking
------<560>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidPuttnam_2013X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+i+may+with+the+story+of+the+paisley+snail
found 1 videos: [['/talks/david_puttnam_does_the_media_have_a_duty_of_care', '2014']]
selected: /talks/david_puttnam_does_the_media_have_a_duty_of_care
sleep 3 seconds to avoid blocking
------<561>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidRockwell_2002.stm
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+hog+for+the+limelight+but+is+sufficiently+reticent+or+at+least+pretends+to+be+that+he+asked+me+to+to+question+him+rather+than
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=speaking+in+fact+what+we+re+going+to+talk+about+i+think+is+in+fact
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+subject+that+is+probably+better+served+by+a+conversation+than+an+address++and+i+guess+we+have
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+bit+of+news+clip+to
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=since+the+september+11th+attack+on+the+world+trade+center+many+people+have+flocked+to+downtown+new+york+to+see+and+pay+respects+at
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+as+cbs+s+jim+axelrod+reports+they+re+putting+the+finishing+touches+on+a+new+way+for+people+to+visit+and+view+the+scene+jim
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=axelrod+forget+the+empire+state+building+or+the+statue+of+liberty+there+s+a+new+place+in+new+york+where+the+crowds+are+thickest
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ground+zero+tourist+i+ve+taken+my+step+daughter+here+from+indianapolis+this+was+out+of+all+the+tourist+sites+in+new+york+city+this+was
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thousands+now+line+up+on+lower+broadway+tourist+i+ve+been+wanting+to+come+down+here+since
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=even+on+the+coldest+winter+days+to+honor+and+remember+tourist+it+s+reality+it+s+us+it+happened+here
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+ours+ja+so+many+in+fact+that+seeing+has+become+a+bit+of+a+problem
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+that+people+are+very+frustrated+that+they+re+not+able+to+get+closer+to+see+what+s+going+on+ja+but
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+record+time+a+team+of+architects+and+construction+workers+designed+and+built+a+viewing+platform+to+ease+the+frustration+and+bring+people+closer+man
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=get+an+incredible+panorama+and+understand+i+think+more+completely++the+sheer+totality+of+the+destruction+of
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ground+zero+is+unlike+most+any+other+tourist+site+in+america+unlike+the+grand+canyon+or+the+washington+monument
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+come+here+to+see+what+s+no+longer+there+david+rockwell+the+first+experience+people+will+have+here+when+they+see+this+is+not+as+a+construction+site
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=incredibly+moving+burial+ground+ja+the+walls+are+bare+by+design+so+people+can+fill+them+with+their+own+memorials+the+way+they+already+have+along+the+current+perimeter
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=from+our+hearts+it+affected+us+just+as+much+ja+the+ramps+are+made+of+simple+material+the+kind+of+plywood+you+see+at+construction+sites+which+is+really+the+whole+point
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+face+of+america+s+worst+destruction
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+are+building+again+jim+axelrod+cbs+news+new+york+ka+this+is+not+an+obvious+subject+to+be+in+the+sensuality
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+know+a+phrase+you+hate+an+entertainment+architect+your+work+is+highly+sensual+even+hedonistic+dr
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+like+that+word+ka+it
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+did+the+shock+that+all+of+us+and+especially+all+of+us+in+new+york
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=felt+on+the+on+the+11th+of+september
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=transmute+into+your+desire+to+do+this+thing+dr+well+the+truth+of+the+matter+is
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+felt+myself+in+the+role+originally+first+of+all+as+someone+who+lives+in+tribeca+and+whose+neighborhood+was
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+someone+who+works+less+than+a+mile+from+there+that+i+was+in+the+role+of+forcing
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+me+in+my+firm+to+continue+to+have+the+same+level+of+enthusiasm+about+creating+the+places+we+had+been+creating
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+fact+we+re+finishing+a+book+which+is+called+pleasure
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sensual+pleasure+in+spaces++but+i+ve+got+to+tell+you+it+became+impossible+to+do+that+we+were+really+paralyzed
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=found+myself+the+friday+after+september+11th+two+days+afterwards+literally+unable+to
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=motivate+anyone+to+do+anything+we
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=gave+the+office+a+few+days+off+and+in+discussing+this+with+other+architects+we+had+seen
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+saying+in+the+press+that+they+should+rebuild+the+towers+as+they+were+they+should+rebuild+them+fifty+stories+taller
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+thought+it+was+astonishing+to+speculate
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+if+this+were+a+competition+on+something+that+was+such+a+fresh+wound+and+i
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=had+a+series+of+discussions+first+with+rick+scofidio+and+liz+diller+who+collaborated
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+us+on+this+and+several+other+people+and+really+felt+like+we+had+to+find+relevance+in+doing+something+and+that+as+people+who
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=create+places++the+ultimate+way+to+help+wasn+t+to+pontificate+or+to
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=make+up+scenarios+but+to+help+right+now
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+we+we+tried+to+come+up+with+a+way+as+a+group+to+have+a+kind+of+design+swat+team+and+that+was+the+mission+that+we+came+up+with
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ka+were+you+conscious+of+suddenly
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=whose+work+is+all+about+fulfilling+wants+suddenly
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=dr+well+what+i+was+aware+of+was+there+was+this+overwhelming+need+to+act+now++and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+were+asked+to+participate+in+a+few+projects+before+this+there+was+a+school+ps+two+hundred+and+thirty+four
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+had+been+evacuated+down+at
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+moved+to+an+abandoned+school+we+took+about+twenty+or+thirty+architects+and+designers+and+artists+and+over+four+days+it+was+like+this+urban+barn+raising+to+renovate+it+and+everyone+wanted+to+help+it+was+just+extraordinary++tom+otterness+contributed+maira+kalman
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=contributed+and+it+became+this+cathartic+experience+for+us+ka+and+that+was+done+effectively+by+october+eight+or
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+faced+in+trying+to+do+something+as+substantial+as+this+project+and+this+is+only+one+of+four+that+you+ve+designed+to+surround+the+site+you+you
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=must+have+run+up+against+the+incredibly+byzantine++entrenched
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=bureaucracy+and+and+powers+that+be+in+new+york+real+estate+and+new+york+politics+dr+well+it+s+a+funny+thing+we+finished+ps+two
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=had+dinner+with+a+small+group+i+was+actually+asked+to+be+a+committee+chair+on+an+aia+committee+to+rebuild+and+i+sat+in+on+several+meetings
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+there+were+the+most+circuitous+grand+plans+that+had+to+do+with+long+term+infrastructure+and+rebuilding+the+entire+city+and+the+fact+is+that
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+were+immediate+wounds+and+needs+that+needed+to+be+filled+and+there+was+talk+about+inclusion+and+wanting+it+to+be+an+inclusive+process+and+it+wasn+t+an+inclusive+group++so+we+said+what
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=idea+the+city+actually+approached+us++we+first+approached+the+city+about+pier
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+saw+how+ps+two+hundred+and+thirty+four+worked+the+families+the+victims+of+the+families+were+going+to+this+pier+that+was+incredibly+dehumanizing+ka+on+the+hudson+river+dr+yeah
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+city+actually+through+tim+zagat+initially+and+then+through+christyne+nicholas+then+we+got+to+giuliani+said+you+know+we+don+t+want+to+do+anything+with+pier+ninety+four+right+now++but+we+have+an
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=observation+platform+for+the+families+down+at+ground+zero
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+we+d+like+to+be+a+more+dignified+experience+for+the+families+and+a+way+to+protect+it+from+the+weather+so+i+went+down+there+with+rick+and+liz+and+kevin
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+ve+got+to+say++it+was+the+most+moving
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=experience+of+my+life+it+was+devastating+to+see+the+simple+plywood+platform+with+a+rail+around+it+where+the+families+of+the+victims+had+left+notes+to+them
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+there+was+no+mediation+between+us+and+the+experience+there+was+no+filter+and+i+remembered
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+september+11th+on+14th+street+the+roof+of+our+building+we+can+see+the+world+trade+towers+prominently
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+saw+the+first+building+collapse
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=from+a+conference+room+on+the
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=floor+on+a+tv+that+we+had+set+up
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+everyone+was+up+on+the+roof+so+i+ran+up+there++and+it+was+amazing+how+much+harder+it+was+to+believe+in+real+life+than+it+was+on+tv
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+was+something+about+the+comfort+of+the+filter+and
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+much+information+was+between+us+and+the+experience+so+seeing+this+in+a+very+simple+dignified+way+was+a+very+powerful+experience
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+we+went+back+to+the+city+and+said+we+re+not+particularly+interested+in+the+upgrade+of+this+as+a+vip+platform
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+ve+spent+some+time+down+there
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+the+same+time+the+city+had+this+need+they+were+looking+for+a+solution+to+deal+with+thirty+or+forty+thousand+people+a+day+who+were+going+down+there
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+there+was+no+way+to+deal+with+the+traffic+around+the+site++so+dealing+with+it+is+just+an+immediate+master+plan+there+was+a+way+there+had+to+be+a+way+to+get+people+to+move+around+the+site
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+then+you+ve+got+to+figure+out+a+way
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+will+we+will+skip+over+the+insanely+tedious+process+of+getting+permits+and+getting+everybody+on+board+but+simply+funding+this+thing
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+fairly+simple+thing+but+this+was+a+half+a+million+dollar+project+dr+well+we+knew+that+if+it+wasn+t+privately+funded+it+wasn+t+going+to+happen++and+we+also
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=knew+that+if+it+didn+t+happen+by+the+end+of+the+giuliani+administration+then+everyone+who+we+were+dealing+with+at+the+dot+and+the+police+department+and+all+of+the+we+were+meeting+with+twenty+or+thirty+people
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+the+city+at+a+time+and+it+was+set+up+by+the+office+of+emergency+management+this+incredible
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thing+we+we+had+to+do+was+find+a+way+to+get+this+we+had+to+work+with+the+the
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=families+of+the+victims+through+the+city+to+make+sure+that+they+knew+this+was+happening+because+this+didn+t+want+to+be+a+surprise++and+we+also+had+to+be+as+under+the+radar+screen+as+we
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=could+be+in+new+york++because+the+key+was+not+raising+a+lot+of+objection+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=up+with+the+idea+of+setting+up+a+foundation++mainly+because+when+we+found+a+contractor+who+would+build+this+he+would+not+agree+to
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+do+this++even+if+we+would+pay+him+the+money+there+needed+to+be+a+foundation+in+place++so+we+came+up+with+a+foundation++and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=actually+what+happened+was+one+major+developer+in+new
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=initials+are+js++and+he+owns+rockefeller+center+if+that+helps+anyone
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+met+with+him+the+prices+from+the+contractors+were+between+five+to+seven+hundred+thousand+dollars
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+largest+scaffolding+contractor+in+the+country+volunteered+to+do+it+at+cost+so
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+knew+this+had+to+be+built+and+up+by+the+28th
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+had+to+start+construction+the+next+day
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+had+a+meeting+that+evening+with+his+contractor+of+choice+and+the+contractor+showed+up+with+the+drawings+of+the+platform
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+half+the+size+that+we+had+drawn+it+ka+sort+of+like+the+spinal+tap+scene+where+you+get+the+tiny+little+stonehenge+i+guess
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=dr+in+fact+it+was+as+if+this+was+going+to+be+window+washing+scaffolding+there+was+no+sense+of+the+fact+that+this+is+next+to+saint+paul+that+this+is+really+a+place
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+needs+to+be+kind+of+dignified+and+a+place+to+reflect+and+remember++and+i+ve+got+to+say+that+we+spent+a+lot+of+time+in+putting+this+together+watching+the+crowds+that+gathered+at+saint+paul+which+is+just+to+the+right+and+moving+around+the+site+and+i+live+down+there+so+we+spent+a+lot+of+time
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=looking+at+the+need++and+i+think+people+were+amazed+at+two+things+i+think+they+were+amazed+at+the+destruction
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+think+there+was+a+sense+of+disbelief+about+the+heroics+of+new+yorkers
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+i+found+very+moving+just+the+sort+of+everyday+heroics+of+new+yorkers++so
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+were+in+this+meeting+and+the+contractor+literally+said+i+m+going+to+lock+the+door+because+this+developer+will+not
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=agree+to+have+you+leave+till+you+ve+signed+off+on+this
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+said+well+this+is+half+the+size+it+doesn+t+have+any+of+the+design+features+that+have+been+agreed+upon+by+everyone+everyone+in+the+city+we+d+have+to+go+back+to+to+the+beginning+to+do+this
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+convinced+him+that+we+should+leave+the+room+with+the+agreement+to+build+it+as+designed
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=from+the+developer+saying+that+he+was+withdrawing+all+funding
error: request timeout
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=didn+t+know+what+to+do+but+we+decided+to+cast+a+very+wide+net+we+emailed+out+letters+to+as+many+people+as+we+could
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=several+people+in+the+audience+here+who+were+very+helpful+ka+there+was+no+thought+of+abandoning+ship
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+fact+i+told+the+contractor+to+go+ahead+he+had+already+ordered+materials+based+on+my+go+ahead+we+knew+that+one+way+or+another+this+was+going+to+happen+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+just+felt+it+had+to+happen+ka
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+were+funding+it+yourself+and+with+contributions+and+this+foundation++richard++i+think+very
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+the+chair+designers+came+out+about+the+history+of+chair+designers+imposing
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=aesthetic+solutions+on+this+kind+of+universal++banal++common+problem+of+sitting+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=seems+to+me+with+this+that+it+was+the+opposite+of+that+this+was+an+unprecedented+singular
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+s+the+issue+we+knew+that+this+was+not+in+the+sense+of
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+think+about+the+site+and+think+about+the+need+for+a+memorial++it+was+important+that+this+not+be+categorized+as+a+memorial+that+this+was+a+place+for+people+to
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=kind+of+quiet+place+so+it+led+us+to+using+design+solutions+that+created+as+few+filters
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=between+the+viewer+as+we+said+about+the+families++platform+and+the+experience+as+possible++it+s
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+incredibly+humble+material+it+s+scaffolding+and
error: request timeout
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+allows+by+sort+of+the+procession+of+the+movement+up+by+saint+paul+s+and+down+the+other+side+it+gives+you+about+three+hundred+feet+to+go+up+thirteen+feet+from+the+ground+to
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=where+you+get+the+three+hundred+and+sixty+degree+view
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+the+design+was+driven+by+a+need+to+be+quick++cheap++safe
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=respectful++flexible+one+of+the+other+things+is+this+is+designed+to+be+moveable
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+when+we+looked+at+the+four+platforms+around+the+site+one+of+which+is+an+upgrade+of+the+families++platform++we+knew+that+these+had+to+be+moveable+to+respond+to+changing
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+what+ground+zero+is+ka+your+work+i+mean+we+ve+talked+about+this+before+a+lot+of+your+work+i+think+is+informed+by+your
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=belief+in+or+your+focus+on+the+temporariness+of+all+things+and+the+evanescence+of+things+and+a+kind+of
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=eat+drink+and+be+merry+for+tomorrow+we+die
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+clearly+not+a+work+for+the+ages+you+know+a+couple+of+years+this+thing+isn+t+going+to+be+here
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+require+as+an+architect+a+new+way+of+thinking+about+what+you+were+doing+to+think+of+it+as+this
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=purely+temporary+installation+dr+no+i+don+t+think+so
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+this+is+obviously+substantially+different+from+anything+we+d+ever+thought+about+doing+before+just+by
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+nature+of+it++where+it+overlaps+with
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thoughts+about+our+work+in+general+is+number+one+the+notion+of+collaboration+as+a+sort+of+way+to+get+things+done+and+kevin+kennon
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=rick+scofidio+liz+diller+and+all+the+people+within+the+city
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=norman+lear+who+i+spoke+to+four+hours+before+our+deadline+for+funding+offered+to+give+us+a+bridge+loan
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+help+us+get+through+it
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+the+notion+of+collaboration+i+think+this+reinforces+how+important+that+is+and+in+terms+of+the+temporary+nature+of+it
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=our+goal+was+not+to+create
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=something+that+would+be+there+longer+than+it+needed+to+be++i+think+what+we+were+most+interested+in+was+promoting+a+kind+of+dialogue
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+we+felt+may+not+have+been+happening+enough+in+this+city+about+what+s+really+happening+there+and
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=day+or+two+before+it+opened+was+giuliani+s+farewell+address+where+he+proposed+the+idea+of+all+of+ground+zero+being+a+memorial++which+was+very+controversial+but+it+resonated+with+a+lot+of+people
error: request timeout
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+the+position+is+about+how+this
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sacred+piece+of+land+is+to+be+used+having+it+come+out+of+actually+seeing+it+in+a+real+encounter
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+makes+it+a+more+powerful+dialogue+and+that+s+what+we+were+interested+in+so+that+very+much+is+in+the+realm+of
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=things+i+ve+been+interested+in+before+ka+it+seems+to+me+among+other+things+a+lovely+piece+of+civic+infrastructure+it+enables+that+conversation+to+get+serious
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=only+a+few+months+away+from+the+site+being+cleaned+we+are+very+quickly
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+getting+to+the+point+where+those+conversations+about+what+should+go+there+are+getting+serious
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=having+been+as+physically+involved+in+the+site+as+you+have+been+doing+this+project+have+any+ideas+about+what+should
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+one+thing+that+shouldn+t+be+done+is+evaluate+i+think+right+now+the+discussion+is+a+very+closed+discussion+on+the+master+plan
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+protetch+gallery+recently+had+a+show+on+ideas+for+buildings+which+had+some
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sort+of+inventive+ideas+of+buildings+ka+but+it+had+some+really+terrible+ideas+dr+and+it+also+felt+a+little+bit+like+a+kind+of+competition+of+ideas+where+i+think
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=focus+of+ideas+should+be+on+master+planning+and+uses++and+i+think+there+should+be+a+broader+which+there+s+starting+to+be+the+dialogue+is+really+opening+up+to+what+does+this+site+really+want+to+be
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+truly+believe+until+the+issue+of+memorial+is+sorted+out+that+it+s+going+to+be+very+hard+to+have+an+intelligent+discussion
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+over+so+that+there+s+one+uninterrupted+piece+of+land+ka+well+i+think+that+s+interesting+and+it+gets+to+another+issue+that+was
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=probably+inappropriate+to+discuss+six+months+ago+but+perhaps+isn+t+now+which+is
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+many+of+us+love+the+world+trade+center+as+a+piece+of+architecture+as+what+it+had+done+to+this+city+and+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+rebuild+some+more+traditional+city+grid+or+not+dr
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+there+s+a+real+opportunity+to+engage+in+a+discussion+of+why+we+live+in+cities
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+why+do+we+live+in+places+where+such+dissimilar+people+collide+up+against+us+each+day
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+don+t+think+it+has+much+to+do+with+fifty+or+sixty+or+seventy+or+eighty+thousand+new+office+spaces
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=regardless+of+what+the+number+is
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+yeah+i+think+there+is+a+chance+to+re+look+at+how+we+think+about+cities++and+in+fact++there+s+a+proposal+on+the+table+now+for+building+number+seven
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ka+which+was+the+building+just+north+of+the+towers+dr+right+which+the+towers+fell+into+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+reason+that+s+been+held+up+is+essentially+by+community+outrage+that+they+re+not+re+opening+the+street+to+connect+that+back+to+the+rest+of+the+city
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+to+see+an+international+competition++and+a+call+for+ideas+for+uses+ka
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=whether+it+s+arts+whether+it+s+housing+whether+it+s+what+amount+of+shopping+dr+right+and+we+re+looking+for+other+things+this+small+foundation+we+put+together+is+looking+for+other+ways+to+help+including
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=taking+a+small+piece+adjacent+to+the+site+and+inviting
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ten+architects+who+currently+don+t+have+a+voice+in+new+york+to+do+artist+housing++and+find+other+ways+to
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=encourage+the+discussion+to+be+against+sort+of+monolithic+single+solutions+and+more+about+a+multiplicity+of+things+ka+before+we+end
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=digital+video+of+the+experience+of+being
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+this+platform+dr+john+kamen+who+s+here+actually+put+together+a+two+and+a+half+minute+piece+that+shows+the+platform+in+use++so+i+thought+that
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=complexity+and+length+of+time+they+really+take+to+do+it+s+three+hundred+and+fifty+people+on+the+committee+for+oklahoma+city
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+is+why+we+thought+of+this+as+a+sort+of+ad+hoc+spontaneous+solution
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+expanded+on+union+square+and+the+places+that+were+ad+hoc
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+scaffolding+you+can+see+built+up+over+the+street
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+s+interesting+now+is+the+nature+of+the+site+has+totally+changed+so+that+what+you+re+aware+of
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=around+it+and+the+scars+on+the+building+around+it+which+are+enormous+this+shows+saint+paul+s+on+the+left
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thank+you+on+behalf+of+new+yorkers+for+making+this+happen+and+getting+this+done++but+the+kind+of
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=nature+of+its+erection+and+its
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=being+there+almost+before+you+could+believe+that+a+response+of+this+magnitude+could+be+accomplished
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+part+of+its+extraordinary+i+don+t+know+if+beauty+is+the+word+but+presence
error: request timeout
error: no video is found.
sleep 2 seconds to avoid blocking
------<562>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidRothkopf_2015.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+i+d+like+to+do+is+talk+to+you+a+little+bit+about+fear+and+the+cost+of+fear+and+the+age+of+fear+from+which+we+are+now+emerging+i+would
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+you+to+feel+comfortable+with+my+doing+that+by+letting+you+know+that+that+i+know+something+about+fear+and
found 2 videos: [['/talks/david_rothkopf_how_fear_drives_american_politics', '2015'], ['/talks/david_camarillo_why_helmets_don_t_prevent_concussions_and_what_might', '2016']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=anxiety+i+m+a+jewish+guy+from+new+jersey+i+could+worry+before+i+could+walk
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=laughter+please++applaud+that+thank+you
found 4 videos: [['/talks/david_rothkopf_how_fear_drives_american_politics', '2015'], ['/talks/chris_milk_the_birth_of_virtual_reality_as_an_art_form', '2016'], ['/talks/jorge_drexler_poetry_music_and_identity', '2017'], ['/talks/gretchen_carlson_david_brooks_political_common_ground_in_a_polarized_united_states', '2017']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+also+grew+up+in+a+time
found 23 videos: [['/talks/megan_phelps_roper_i_grew_up_in_the_westboro_baptist_church_here_s_why_i_left', '2017'], ['/talks/taiye_selasi_don_t_ask_where_i_m_from_ask_where_i_m_a_local', '2015'], ['/talks/maysoon_zayid_i_got_99_problems_palsy_is_just_one', '2014'], ['/talks/j_d_vance_america_s_forgotten_working_class', '2016'], ['/talks/cesar_harada_how_i_teach_kids_to_love_science', '2015'], ['/talks/eric_liu_there_s_no_such_thing_as_not_voting', '2016'], ['/talks/jarrett_j_krosoczka_how_a_boy_became_an_artist', '2013'], ['/talks/euna_lee_what_i_learned_as_a_prisoner_in_north_korea', '2017'], ['/talks/melvin_russell_i_love_being_a_police_officer_but_we_need_reform', '2016'], ['/talks/sheryl_sandberg_so_we_leaned_in_now_what', '2014'], ['/talks/elizabeth_lev_the_unheard_story_of_the_sistine_chapel', '2016'], ['/talks/lisa_nip_how_humans_could_evolve_to_survive_in_space', '2016'], ['/talks/aditi_gupta_a_taboo_free_way_to_talk_about_periods', '2016'], ['/talks/boyd_varty_what_i_learned_from_nelson_mandela', '2013'], ['/talks/tasso_azevedo_hopeful_lessons_from_the_battle_to_save_rainforests', '2015'], ['/talks/laura_snyder_the_philosophical_breakfast_club', '2013'], ['/talks/manwar_ali_inside_the_mind_of_a_former_radical_jihadist', '2016'], ['/talks/chetan_bhatt_dare_to_refuse_the_origin_myths_that_claim_who_you_are', '2017'], ['/talks/uma_adwani_the_hidden_messages_in_multiplication', '2017'], ['/talks/linus_torvalds_the_mind_behind_linux', '2016'], ['/talks/sisonke_msimang_if_a_story_moves_you_act_on_it', '2017'], ['/talks/deb_willis_and_hank_willis_thomas_a_mother_and_son_united_by_love_and_art', '2017'], ['/talks/franz_freudenthal_a_new_way_to_heal_hearts_without_surgery', '2016']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=where+there+was+something+to+fear+we+were+brought+out+in+the+hall+when+i+was+a+little+kid
found 10 videos: [['/talks/david_rothkopf_how_fear_drives_american_politics', '2015'], ['/talks/khalida_brohi_how_i_work_to_protect_women_from_honor_killings', '2015'], ['/talks/grady_booch_don_t_fear_superintelligent_ai', '2017'], ['/talks/michael_shellenberger_how_fear_of_nuclear_power_is_hurting_the_environment', '2016'], ['/talks/susan_etlinger_what_do_we_do_with_all_this_big_data', '2014'], ['/talks/michael_bierut_how_to_design_a_library_that_makes_kids_want_to_read', '2017'], ['/talks/pico_iyer_the_beauty_of_what_we_ll_never_know', '2016'], ['/talks/steve_silberman_the_forgotten_history_of_autism', '2015'], ['/talks/hyeonseo_lee_my_escape_from_north_korea', '2013'], ['/talks/bruce_feiler_agile_programming_for_your_family', '2013']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+taught+how+to+put+our+coats+over+our+heads+to+protect+us+from+global+thermonuclear+war
found 1 videos: [['/talks/david_rothkopf_how_fear_drives_american_politics', '2015']]
selected: /talks/david_rothkopf_how_fear_drives_american_politics
sleep 5 seconds to avoid blocking
------<563>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidRWilliams_2016P.stm
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=told+the+story+of+clyde+murphy+a+black+man+who+was+a+member+of+the+class+of+one+thousand+nine+hundred+and+seventy
error: request timeout
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=degree+from+columbia++clyde+spent+the+next+thirty+years+as+one+of+america+s+top+civil+rights+lawyers
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+was+also+a+great+husband+and+father
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+despite+his+success+personally+and+professionally++clyde+s+story+had+a+sad+ending
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=clyde+died+from+a+blood+clot+in+his+lung
found 1 videos: [['/talks/david_r_williams_how_racism_makes_us_sick', '2017']]
selected: /talks/david_r_williams_how_racism_makes_us_sick
sleep 1 seconds to avoid blocking
------<564>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidSedlak_2015X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=our+grandparents++generation+created+an+amazing+system+of+canals+and+reservoirs+that+made+it+possible+for+people+to+live+in+places+where+there+wasn+t+a+lot+of+water
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+example++during+the+great+depression+they+created+the+hoover+dam++which+in+turn+created+lake+mead+and+made+it
found 1 videos: [['/talks/david_sedlak_4_ways_we_can_avoid_a_catastrophic_drought', '2016']]
selected: /talks/david_sedlak_4_ways_we_can_avoid_a_catastrophic_drought
sleep 1 seconds to avoid blocking
------<565>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidSengeh_2014U.stm
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+raised+in+sierra+leone+a+small+and+very+beautiful+country+in+west+africa+a+country+rich+both+in+physical+resources
found 1 videos: [['/talks/david_sengeh_the_sore_problem_of_prosthetic_limbs', '2014']]
selected: /talks/david_sengeh_the_sore_problem_of_prosthetic_limbs
sleep 3 seconds to avoid blocking
------<566>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidSRose_2007U.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=good+morning+my+name+is+david+rose++i+am+a+serial+entrepreneur+turned+serial+investor++and+by+the+use+of+pitching
found 1 videos: [['/talks/david_s_rose_how_to_pitch_to_a_vc', '2008']]
selected: /talks/david_s_rose_how_to_pitch_to_a_vc
sleep 1 seconds to avoid blocking
------<567>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DavidSteindlRast_2013G.stm
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know+about+me+something+very+personal++and+there+is+something+i+know+about
found 10 videos: [['/talks/ariel_garten_know_thyself_with_a_brain_scanner', '2011'], ['/talks/ian_ritchie_the_day_i_turned_down_tim_berners_lee', '2011'], ['/talks/hans_and_ola_rosling_how_not_to_be_ignorant_about_the_world', '2014'], ['/talks/shereen_el_feki_a_little_told_tale_of_sex_and_sensuality', '2014'], ['/talks/john_wilbanks_let_s_pool_our_medical_data', '2012'], ['/talks/marina_abramovic_an_art_made_of_trust_vulnerability_and_connection', '2015'], ['/talks/ben_goldacre_battling_bad_science', '2011'], ['/talks/edward_snowden_here_s_how_we_take_back_the_internet', '2014'], ['/talks/jonathan_eisen_meet_your_microbes', '2012'], ['/talks/aspen_baker_a_better_way_to_talk_about_abortion', '2015']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=every+one+of+you++and+that+s+very+central+to+your+concerns
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+we+know+about+everyone+we+meet+anywhere+in+the+world+on+the+street
found 9 videos: [['/talks/karima_bennoune_when_people_of_muslim_heritage_challenge_fundamentalism', '2014'], ['/talks/amanda_burden_how_public_spaces_make_cities_work', '2014'], ['/talks/david_steindl_rast_want_to_be_happy_be_grateful', '2013'], ['/talks/stephen_ritz_a_teacher_growing_green_in_the_south_bronx', '2012'], ['/talks/robin_nagle_what_i_discovered_in_new_york_city_trash', '2013'], ['/talks/dave_isay_everyone_around_you_has_a_story_the_world_needs_to_hear', '2015'], ['/talks/navi_radjou_creative_problem_solving_in_the_face_of_extreme_limits', '2015'], ['/talks/tristram_stuart_the_global_food_waste_scandal', '2012'], ['/talks/johann_hari_everything_you_think_you_know_about_addiction_is_wrong', '2015']]
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+whatever+they+put+up+with
found 9 videos: [['/talks/ruby_wax_what_s_so_funny_about_mental_illness', '2012'], ['/talks/shimon_schocken_the_self_organizing_computer_course', '2012'], ['/talks/taiye_selasi_don_t_ask_where_i_m_from_ask_where_i_m_a_local', '2015'], ['/talks/peter_singer_the_why_and_how_of_effective_altruism', '2013'], ['/talks/sophie_scott_why_we_laugh', '2015'], ['/talks/adam_davidson_what_we_learned_from_teetering_on_the_fiscal_cliff', '2012'], ['/talks/bruce_feiler_agile_programming_for_your_family', '2013'], ['/talks/ricardo_semler_how_to_run_a_company_with_almost_no_rules', '2015'], ['/talks/anne_curzan_what_makes_a_word_real', '2014']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+is+that+all+of+us+want+to+be+happy++in+this+we+are+all+together
found 12 videos: [['/talks/david_steindl_rast_want_to_be_happy_be_grateful', '2013'], ['/talks/carl_safina_what_are_animals_thinking_and_feeling', '2015'], ['/talks/tyler_cowen_be_suspicious_of_simple_stories', '2012'], ['/talks/john_green_the_nerd_s_guide_to_learning_everything_online', '2015'], ['/talks/hilary_cottam_social_services_are_broken_how_we_can_fix_them', '2015'], ['/talks/jonathan_haidt_how_common_threats_can_make_common_political_ground', '2013'], ['/talks/caroline_casey_looking_past_limits', '2011'], ['/talks/amy_cuddy_your_body_language_may_shape_who_you_are', '2012'], ['/talks/van_jones_the_economic_injustice_of_plastic', '2011'], ['/talks/roxane_gay_confessions_of_a_bad_feminist', '2015'], ['/talks/charmian_gooch_my_wish_to_launch_a_new_era_of_openness_in_business', '2014'], ['/talks/stuart_firestein_the_pursuit_of_ignorance', '2013']]
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+imagine+our+happiness+that+differs+from+one+another++but+it+s+already+a+lot
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+we+have+all+in+common+that+we+want+to+be+happy
found 11 videos: [['/talks/david_steindl_rast_want_to_be_happy_be_grateful', '2013'], ['/talks/christopher_ryan_are_we_designed_to_be_sexual_omnivores', '2014'], ['/talks/jason_pontin_can_technology_solve_our_big_problems', '2013'], ['/talks/jonathan_haidt_how_common_threats_can_make_common_political_ground', '2013'], ['/talks/andrew_solomon_depression_the_secret_we_share', '2013'], ['/talks/john_green_the_nerd_s_guide_to_learning_everything_online', '2015'], ['/talks/rana_el_kaliouby_this_app_knows_how_you_feel_from_the_look_on_your_face', '2015'], ['/talks/matthieu_ricard_how_to_let_altruism_be_your_guide', '2015'], ['/talks/hilary_cottam_social_services_are_broken_how_we_can_fix_them', '2015'], ['/talks/lawrence_lessig_we_the_people_and_the_republic_we_must_reclaim', '2013'], ['/talks/alessandra_orofino_it_s_our_city_let_s_fix_it', '2014']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+my+topic+is+gratefulness+what+is+the+connection+between
found 1 videos: [['/talks/david_steindl_rast_want_to_be_happy_be_grateful', '2013']]
selected: /talks/david_steindl_rast_want_to_be_happy_be_grateful
sleep 3 seconds to avoid blocking
------<568>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DawnLandes_2015.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=tori+murden+mcclure+left+nags+head+north+carolina+for+france
found 1 videos: [['/talks/dawn_landes_a_song_for_my_hero_the_woman_who_rowed_into_a_hurricane', '2015']]
selected: /talks/dawn_landes_a_song_for_my_hero_the_woman_who_rowed_into_a_hurricane
sleep 5 seconds to avoid blocking
------<569>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DeanKamen_2002.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+building+seats+i+think+concluded+that+ultimately+the+solution+is+people+shouldn+t+sit+down+i+could+have+told+them+that
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=yesterday+the+automotive+guys+gave+us+some+new+insights
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+pointed+out+that+i+believe+it+was+between+thirty+and+fifty+years+from
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=today+that+they+will+be+steering+cars+by+wire+without+all+that+mechanical+stuff
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+then+pointed+out+there+d+be+sort+of+the+other+controls+by+wire+to+get+rid+of+all+that+mechanical+stuff
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+pretty+good+but+why+not+get+rid+of+the+wires
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=then+you+don+t+need+anything+to+control+the+car+except+thinking+about+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+would+love+to+talk+about+the+technology+and+sometime+in
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+s+past+the+fifteen+minutes+i+ll+be+happy+to+talk+to+all+the+techno+geeks+around+here+about+what+s+in+here
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+if+i+had+one+thing+to+say+about+this+before+we+get+to+first
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+would+be+that+from+the+time+we+started+building+this
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+big+idea+wasn+t+the+technology+it+really+was+a+big+idea+in+technology+when+we+started+applying+it+in+the+ibot+for+the
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+i+think+a+new+piece+of+a+solution+to+a+fairly+big+problem
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+transportation+and+maybe+to+put+that+in+perspective
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+so+much+data+on+this+i+ll+be+happy+to+give+it+to+you+in+different+forms+you+never+know+what+strikes+the+fancy+of+who
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+everybody+is+perfectly+willing+to+believe+the+car+changed+the+world+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=henry+ford+just+about+one+hundred+years+ago+started+cranking+out+model+ts+what+i+don+t+think+most+people+think+about+is+the+context+of+how+technology+is+applied
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+instance+in+that+time+ninety+one+percent+of+america+lived+either+on+farms+or+in+small+towns
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=carriage+that+replaced+the+horse+and+carriage+was+a+big+deal+it+went+twice+as+fast+as+a+horse+and+carriage+it
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+was+an+environmental+improvement+because+for+instance+in+one+thousand+nine+hundred+and+three+they+outlawed+horses+and+buggies+in+downtown
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=manhattan+because+you+can+imagine+what+the+roads+look+like+when+you+have+a+million+horses
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+a+million+of+them+urinating+and+doing+other+things+and+the+typhoid+and+other+problems+created+were
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=almost+unimaginable+so+the+car+was+the+clean+environmental+alternative+to+a+horse+and+buggy
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+also+was+a+way+for+people+to+get+from+their+farm+to+a+farm+or+their+farm+to+a+town+or+from+a+town+to+a+city
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+all+made+sense+with+ninety+one+percent+of+the+people+living+there
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+the+nineteen+fiftys+we+started+connecting+all+the+towns+together+with+what+a+lot+of+people+claim+is+the+eighth+wonder+of+the+world
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+highway+system+and+it+is+certainly
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+wonder+and+by+the+way+as+i+take+shots+at+old+technologies
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+assure+everybody+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=particularly+the+automotive+industry+who+s+been+very+supportive+of+us+that+i+don+t+think+this+in+any+way
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+think+about+where+the+world+is+today
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fifty+percent+of+the+global+population+now+lives+in+cities+that+s+three+two+billion+people
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+ve+solved+all+the+transportation+problems+that+have+changed+the+world+to+get+it+to+where+we+are+today
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=five+hundred+years+ago+sailing+ships+started+getting+reliable+enough+we+found+a+new+continent+one
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hundred+and+fifty+years+ago+locomotives+got+efficient+enough+steam+power+that+we+turned+the+continent+into+a+country
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=over+the+last+hundred+years+we+started+building+cars+and+then+over+the+fifty+years+we+ve+connected+every+city+to+every+other+city+in+an+extraordinarily+efficient+way+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+have+a+very+high+standard+of+living+as+a+consequence+of+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+during+that+entire+process+more+and+more+people+have+been+born+and+more+and+more+people+are+moving+to+cities+china+alone+is+going+to+move
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=four+to+six+hundred+million+people+into+cities+in+the+next+decade+and+a+half
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=would+argue+that+airplanes+in+the+last+fifty+years+have+turned
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+continent+and+the+country+now+into+a+neighborhood+and+if+you+just+look+at+how+technology+has+been+applied+we+ve+solved+all+the+long+range
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=high+speed+high+volume+large+weight+problems+of+moving+things+around
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=nobody+would+want+to+give+them+up
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+certainly+wouldn+t+want+to+give+up+my+airplane+or+my+helicopter+or+my+humvee+or+my+porsche+i+love+them+all+i+don+t+keep+any+of+them+in+my+living+room
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+last+mile+is+the+problem+and+half+the+world+now+lives+in+dense+cities+and+people+spend+depending+on+who+they+are+between+ninety+and+ninety+five+percent+of+their+energy
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=getting+around+on+foot+i+think+there+s
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+don+t+know+what+data
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=would+impress+you+but+how+about+forty+three+percent+of+the+refined
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fuel+produced+in+the+world+is+consumed+by+cars+in+metropolitan+areas+in+the+united+states
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=three+million+people+die+every+year+in+cities
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=due+to+bad+air+and+almost+all+particulate+pollution+on+this+planet+is+produced
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+cities+and+again+i+say+that+not+to+attack+any+industry+i+think+i+really+do+i+love+my+airplane
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+cars+on+highways+moving+sixty+miles+an+hour+are+extraordinarily+efficient+both
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=from+an+engineering+engineering+point+of+view+an+energy+consumption+point+of+view+and+a+utility+point+of+view+and+we+all+love+our+cars+and+i+do
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+problem+is+you+get+into+the+city+and+you+want+to+go+four+blocks
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+neither+fun+nor+efficient+nor+productive+it+s+not+sustainable
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+china+in+the+year+one+thousand+nine+hundred+and+ninety+ninety+eight+four+hundred+and+seventeen+million+people+used+bicycles+one+seven+million+people+used+cars
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+five+percent+of+that+population+became+quote+middle+class+and+wanted+to
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=go+the+way+we+ve+gone+in+the+last+hundred+years+at+the+same+time
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fifty+percent+of+their+population+are+moving+into+cities+of+the+size+and+density+of+manhattan+every+six+weeks
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+isn+t+sustainable+economically+there+just+ain+t+enough+oil
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+s+not+sustainable+politically+i+mean+what+are+we+fighting+over+right+now+we+can+make+it+complicated+but+what+s+the+world+fighting+over+right+now
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+it+seemed+to+me+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=somebody+had+to+work+on+that+last+mile+and+it+was+dumb+luck+we+were+working+on+ibots
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+once+we+made+this+we+instantly+decided+it+could+be+a+great+alternative+to+jet+skis+you+don+t+need+the+water
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+snowmobiles+you+don+t+need+the+snow+or+skiing+it+s+it+s+just+fun+and+people+love+to+move+around+doing+fun+things
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+every+one+of+those+industries+by+the+way+just+golf+carts+alone+is+a+multi+billion+dollar+industry+but
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=rather+than+go+license+this+off+which+is+what+we+normally+do+it+seemed+to+me
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+if+we+put+all+our+effort+not+into+the+technology+but+into+an+understanding+of+a+world+that+s
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=solved+all+its+other+problems+but+has+somehow+come+to+accept
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+cities+which+right+back+from+ancient+greece+on+were+meant+to+walk+around+cities+that+were+architected+and+built+for+people
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+have+a+footprint+that+while+we+ve+solved
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=every+other+transportation+problem+and+it+s+like+moore+s+law+i+mean+look+at+the+time+it+took+to+cross+a+continent
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+a+conestoga+wagon+then+on+a+railroad+then+an+airplane+every+other+form+of+transportation+s+been+improved
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+ve+gone+backwards+in+getting+around+cities+they+ve+gotten+bigger+they+re+spread+out+the+most+expensive+real+estate+on+this+planet+in
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+every+city+wilshire+boulevard+or+fifth+avenue+or+tokyo
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+paris+the+most+expensive+real+estate+is+their+downtowns
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sixty+five+percent+of+the+landmass+of+our+cities+are+parked+cars+the+twenty+largest+cities+in+the+world
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+you+wonder+what+if+cities+could+give+to+their+pedestrians+what+we+take+for+granted+as+we+now+go+between+cities+what+if
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+could+make+them+fun+attractive+clean+environmentally+friendly
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+if+it+would+make+it+a+little+bit+more+palatable+to+have+access+via+this+as+that+last+link
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+get+out+to+your+cars+so+we+can+all+live+in+the+suburbs+and+use+our+cars+the+way+we+want+and+then+have+our+cities+energized+again
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+thought+it+would+be+really+neat+to+do+that+and+one+of+the+problems+we+really+were+worried+about+is
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+do+we+get+legal+on+the+sidewalk+because+technically+i+ve+got+motors+i+ve+got+wheels+i+m+a+motor+vehicle
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+don+t+look+like+a+motor+vehicle+i+have+the+same+footprint+as+a+pedestrian+i+have+the+same+unique+capability
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+deal+with+other+pedestrians+in+a+crowded+space+i+took+this+down+to+ground+zero+and+knocked+my
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=way+through+crowds+for+an+hour+i+m+a+pedestrian+but+the+law+typically+lags+technology+by+a+generation+or+two+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+we+get+told+we+don+t+belong+on+the+sidewalk+we+have+two+choices
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+re+a+recreational+vehicle+that+doesn+t+really+matter+and+i+don+t+spend+my+time+doing+that+kind+of+stuff
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+maybe+we+should+be+out+in+the+street+in+front+of+a+greyhound+bus+or+a+vehicle
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+ve+been+so+concerned+about+that+we+went+to+the+postmaster+general+of+the+united+states+as+the+first+person+we+ever+showed+on+the+outside+and+said
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=put+your+people+on+it+everybody+trusts+their+postman
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+belong+on+the+sidewalks+and+they+ll+use+it+seriously+seriously
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+agreed+we+went+to+a+number+of+police+departments+that+want+their+police+officers+back+in+the+neighborhood+on+the+beat+carrying+seventy+pounds+of+stuff
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+love+it+and+i+can+t+believe+a+policeman+is+going+to+give+themselves+a+ticket
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+we+ve+been+working+really+really+hard+but+we+knew+that+the+technology+would+not+be+as+hard+to+develop
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+an+attitude+about+what+s+important+and+how+to+apply+the+technology
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+went+out+and+we+found+some+visionary+people+with+enough+money+to
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+build+these+things+and+in+hopefully+enough+time+to+get+them+accepted
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+m+happy+really+i+am+happy+to+talk+about+this+technology+as+much+as+you+want+and+yes+it+s+really+fun+and+yes+you+should+all+go+out+and+try+it
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+if+i+could+ask+you+to+do+one+thing+it+s+not+to+think+about+it+as+a+piece+of+technology+but+just+imagine
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+although+we+all+understand+somehow+that+it+s+reasonable
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+we+use+our+four+thousand+pound+machine+which+can+go+sixty+miles+an+hour+that+can+bring+you+everywhere+you+want+to+go+and+somehow
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+also+what+we+used+for+the+last+mile+and+it+s+broken+and+it+doesn+t+work
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+the+more+exciting+things+that+occurred+to+us+about
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=why+it+might+get+accepted+happened+out+here+in+california+a+few+weeks+ago+after+we+launched+it+we+were+here
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+news+crew+on+venice+beach+zipping+up+and+back+and+he+s+marveling+at+the+technology+and+meanwhile+bicycles+are+zipping+by
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+a+little+old+lady+i+mean+if+you+looked+in+the+dictionary+a+little+old+lady
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=came+by+me+and+now+that+i+m+on+this+i+m+the+height+of+a+normal+adult+now+and+and+she+just+stops+and+the+camera+is+there+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+she+looks+up+at+me+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=says+can+i+try+that+and+what+was+i+you+know+how+are+you+going+to+say+anything+and+so+i+said+sure+so+i+get+off
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+she+gets+on+and+with+a+little+bit+of+the+usual+ah+then+she+turns+around+and+she+goes+about
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=twenty+feet+and+she+turns+back+around+and+she+s+all+smiles+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=she+comes+back+to+me+and+she+stops+and+she+says
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=finally+they+made+something+for+us+and+the+camera+is+looking+down+at+her+i+m+thinking+wow+that+was+great
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=please+lady+don+t+say+another+word
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+and+the+camera+is+down+at+her+and+this+guy+has+to+put+the+microphone+in+her+face+said+what+do+you+mean+by+that
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+figured+it+s+all+over+now+and+she+looks+up+and+she+says+well
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=she+s+still+watching+these+guys+go+she+says+i+can+t+ride+a+bike+no+she+says+i+can+t+use
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+skateboard+and+i+ve+never+used+roller+blades+she+knew+them+by+name
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=she+says+and+it+s+been+fifty+years+since+i+rode+a+bicycle+then+she+looks+up+she+s+looking+up+and+and+she+says
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+m+eighty+one+years+old+and+i+don+t+drive+a
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=anymore+i+still+have+to+get+to+the+store+and+i+can+t+carry+a+lot+of+things+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+suddenly+occurred+to+me+that+among+my+many+fears+were+not+just+that+the+bureaucracy+and+the+regulators+and+the+legislators+might+not+get+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+that+fundamentally+you+believe+there+s
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=pressure+among+the+people+not+to+invade+the+most+precious+little+bit+of+space+left+the+sidewalks+in+these+cities
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thirty+six+inches+of+legal+requirement+for+sidewalk+then+the+eight+foot+for+the+parked+car+then+the+three+lanes+and+then+the+other+eight+feet+it+s
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+little+piece+is+all+that+s+there
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+she+looks+up+and+says+this+and+it+occurs+to+me+well+kids+aren+t+going+to+mind+these+things+and+they+don+t+vote+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=business+people+and+then+young+adults+aren+t+going+to+mind+these+things+they+re+pretty+cool+so+i+guess+subliminally+i+was
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=worried+that+it+s+the+older+population+that+s+going+to+worry
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+having+worried+about+it+for+eight+years+the+first+thing+i+do+is+pick+up+my+phone+and+ask+our+marketing+and+regulatory+guys+call+aarp
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=get+an+appointment+right+away+we+ve+got+to+show+them+this+thing
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+took+it+to+washington+they+showed+them+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+re+going+to+be+involved+now+watching+how+these+things+get+absorbed
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+a+number+of+cities+like+atlanta+where+we+re
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=doing+trials+to+see+if+it+really+can+in+fact+help+re+energize+their+downtown
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+bottom+line+is+whether+you+believe+the+united
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=nations+or+any+of+the+other+think+tanks+in+the+next+twenty+years+all+human+population+growth+on+this+planet+will+be+in+cities
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+asia+alone+it+will+be+over+a+billion+people
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+learned+to+start+with+cell+phones+they+didn+t+have+to+take+the+one+hundred+year+trip+we+took
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+start+at+the+top+of+the+technology+food+chain
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+ve+got+to+start+building+cities+and+human+environments+where+a+one+hundred+and+fifty+pound+person+can+go+a+couple+of+miles+in+a+dense+rich+green+space
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=environment+without+being+in+a+four+thousand+pound+machine+to+do+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=cars+were+not+meant+for+parallel+parking+they+re+wonderful+machines+to+go+between+cities+but+just+think+about+it+we+ve+solved+all+the
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+greeks+went+from+the+theater+of+dionysus+to+the+parthenon+in+their+sandals+you+do+it+in+your+sneakers+not+much+has+changed
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+this+thing+goes+only+three+times+as+fast+as+walking+three+times+a+thirty+minute+walk+becomes+ten+minutes+your+choice+when+living+in+a+city
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+it+s+now+ten+minutes
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+at+thirty+minutes+you+want+an+alternative+whether+it+s+a+bus+a+train+we+ve+got+to+build+an+infrastructure+a+light+rail+or+you+re+going+to+keep+parking+those+cars
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+if+you+could+put+a+pin+in+most+cities+and+imagine+how+far+you+could+if+you
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+time+walk+in+one+half+hour+it+s+the+city
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+could+make+it+fun+and+make+it+eight+or+ten+minutes+you+can+t+find+your+car+un+park+your+car+move+your+car+re+park+your+car+and+go+somewhere
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+t+get+to+a+cab+or+a+subway
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+could+change+the+way+people+allocate+their+resources
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+way+this+planet+uses+its+energy
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=make+it+more+fun+and+we+re+hoping+to+some+extent+history+will+say+we+were+right
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+segway+this+is+a+stirling+cycle+engine
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+had+been+confused+by+a+lot+of+things+we+re+doing
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+little+beast+right+now+is+producing+a+few+hundred+watts+of+electricity+yes+it+could+be+attached+to+this+and+yes+on+a
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=kilogram+of+propane+you+could+drive+from+new+york+to+boston+if+you+so+choose
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=interesting+about+this+little+engine+is+it+ll+burn+any+fuel+because+some+of+you+might+be+skeptical+about+the
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=capability+of+this+to+have+an+impact+where+most+of+the+world+you+can+t+simply+plug+into+your+one+hundred+and+twenty+volt+outlet
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+ve+been+working+on+this+actually+as+an+alternative+energy+source+starting+way+back+with+johnson+johnson+to+run+an+ibot+because+the+best
error: request timeout
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ten+watt+hours+per+kilogram+in+lead
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=twenty+watt+hours+per+kilogram+nickel+cadmium+forty+watt+hours+per+kilogram+in+nickel+metal+hydride+sixty+watt+hours+per+kilogram+in+lithium+eight+thousand+seven+hundred+and+fifty+watt+hours+of+energy+in+every+kilogram+of+propane+or+gasoline+which+is+why+nobody+drives+electric+cars
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+in+any+event+if+you+can+burn+it
error: request timeout
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=efficiency+because+it+s+external+combustion+as+your+kitchen+stove+if+you+can+burn+any+fuel+it+turns+out+to+be+pretty+neat
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+makes+just+enough+electricity+to+for+instance+do+this+which+at+night+is+enough+electricity+in+the+rest+of+the+world+as
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=mister+holly+doctor+holly+pointed+out+can+run+computers+and+a+light+bulb+but+more+interestingly+the+thermodynamics+of+this+say
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+re+never+going+to+get+more+than+twenty+percent+efficiency+it+doesn+t+matter+much+it+says+if+you+get+two+hundred+watts+of+electricity+you+ll+get+seven+or+eight+hundred+watts+of+heat
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+wanted+to+boil+water+and+re+condense+it+at+a+rate+of+ten+gallons+an+hour
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+takes+about+twenty+five+a+little+over+twenty+five+three+kilowatt+twenty+five+thousand+watts+of+continuous+power
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+do+it+that+s+so+much+energy+you+couldn+t+afford+to+desalinate+or+clean+water+in+this+country+that+way
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=certainly+in+the+rest+of+the+world+your+choice+is+to+devastate+the+place+turning+everything+that+will+burn+into+heat+or+drink+the+water
error: request timeout
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+number+one+cause+of+death+on+this+planet+among+humans+is+bad+water+depending+on+whose+numbers+you+believe+it+s+between+sixty+and+eighty+five+thousand+people+per+day
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+don+t+need+sophisticated+heart+transplants+around+the+world+we+need+water+and+women+shouldn+t+have+to+spend+four+hours+a+day+looking+for+it+or+watching+their+kids+die
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+figured+out+how+to+put+a+vapor+compression+distiller+on+this+thing+with+a+counter+flow+heat+exchanger+to+take+the
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=waste+heat+then+using+a+little+bit+of+the+electricity+control+that+process+and+for+four+hundred+and+fifty+watts+which+is+a+little+more+than+half+of+its+waste+heat
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+will+make+ten+gallons+an+hour+of+distilled+water+from+anything+that+comes+into+it+to+cool+it+so+if+we+put+this+box+on+here+in+a+few+years+could+we+have+a
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+a+sustainable+package+that+weighs+sixty+pounds+i+don+t+know
found 0 videos: []
error: no video is found.
sleep 4 seconds to avoid blocking
------<570>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DeanKamen_2007.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=almost+exactly+a+year+ago+a+little+over+a+year+ago+from+a+very+senior+person+at+the+department+of+defense++came+to+see+me+and+said+one+thousand
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=six+hundred+of+the+kids+that+we+ve+sent+out+have+come+back+missing+at+least+one+full+arm
error: request timeout
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+re+doing+the+same+thing+we+did+for+more+or+less
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+we+ve+done+since+the+civil+war+a+stick+and+a+hook++and+they+deserve+more+than+that
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+literally+this+guy+sat+in+my+office+in+new+hampshire+and+said+i+want+you+to+give+me+something+that+we+can+put+on+these+kids
found 2 videos: [['/talks/dean_kamen_luke_a_new_prosthetic_arm_for_soldiers', '2007'], ['/talks/deborah_scranton_an_iraq_war_movie_crowd_sourced_from_soldiers', '2007']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+ll+pick+up+a+raisin+or+a+grape+off+a+table
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+ll+be+able+to+put+it+in+their+mouth
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=without+destroying+either+one+and+they+ll+be+able+to+know+the+difference+without+looking+at+it+you+know+had+efferent+afferent+and+haptic+response
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+finishes+explaining+that+and+i+m+waiting+for+the+big
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=three+hundred+pound+paper+proposal+and+he+said+that+s+what+i+want+from
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+just+not+available+right+now++and+it+can+t+be+done
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+in+an+envelope+of+a+human+arm+with+twenty+one+degrees+of+freedom++from+your+shoulder+to+your+fingertips
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+said+about+two+dozen+of+these+one+thousand+six+hundred+kids+have+come+back+bilateral+you+think
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+bad+to+lose+one+arm+that+s+an+inconvenience+compared+to+having+both+of+them+gone
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+my+nights+and+weekends+are+already+filled+up+with+things+like
found 1 videos: [['/talks/dean_kamen_luke_a_new_prosthetic_arm_for_soldiers', '2007']]
selected: /talks/dean_kamen_luke_a_new_prosthetic_arm_for_soldiers
sleep 1 seconds to avoid blocking
------<571>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DeanKamen_2009P.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+not+about+technology+it+s+about+people+and+stories
found 4 videos: [['/talks/jacqueline_novogratz_patient_capitalism', '2007'], ['/talks/morgan_spurlock_the_greatest_ted_talk_ever_sold', '2011'], ['/talks/fields_wicker_miurin_learning_from_leadership_s_missing_manual', '2009'], ['/talks/bill_strickland_rebuilding_a_neighborhood_with_beauty_dignity_hope', '2008']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+could+show+you+what+recently+was+on+television+as+a+high+quality+video+sixty+minutes+many+of+you+may+have+seen+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+was+the+now+director+of+the+entire+piece+of+the
found 11 videos: [['/talks/dean_kamen_the_emotion_behind_invention', '2010'], ['/talks/erin_mckean_the_joy_of_lexicography', '2007'], ['/talks/aaron_koblin_visualizing_ourselves_with_crowd_sourced_data', '2011'], ['/talks/bjarke_ingels_3_warp_speed_architecture_tales', '2009'], ['/talks/milton_glaser_using_design_to_make_ideas_new', '2009'], ['/talks/paula_scher_great_design_is_serious_not_solemn', '2009'], ['/talks/john_maeda_designing_for_simplicity', '2007'], ['/talks/ann_cooper_what_s_wrong_with_school_lunches', '2008'], ['/talks/rory_sutherland_sweat_the_small_stuff', '2010'], ['/talks/ed_ulbrich_how_benjamin_button_got_his_face', '2009'], ['/talks/kevin_bales_how_to_combat_modern_slavery', '2010']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+administration+who+himself+had+lost+an+arm+thirty+nine+years+ago+in+vietnam
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+was+adamantly+opposed+to+these+crazy+devices+that+don+t+work
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+turns+out+that+with+sixty+minutes+cameras+rolling+in+the+background+after+he+pretty+much+made+his+position+clear+on+this+he+had+his+hook+and+he+had+his
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+wore+this+arm+for+less+than+two+hours+and+was+able+to+pour
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=himself+a+drink+and+got+quite+emotional+over+the+fact+that+quote+his+quote
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+the+first+time+he+s+felt+like+he+s+had+an+arm+in+thirty+nine+years++but+that+would+sort+of+be+jumping+to+the+middle+of+the+story
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+m+not+going+to+show+you+that+polished+video+i+m+going+to+instead+in+a+minute+or+two+show+you+an+early+crude+video+because
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=better+way+to+tell+a+story+a
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=few+years+ago+i+was+visited+by+the+guy+that+runs+darpa+the+people+that+fund+all+the+advanced+technologies+that
found 1 videos: [['/talks/dean_kamen_the_emotion_behind_invention', '2010']]
selected: /talks/dean_kamen_the_emotion_behind_invention
sleep 3 seconds to avoid blocking
------<572>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DeanOrnish_2004.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+on+natural+wonders+and+the+bigger+conference+is+on+the+pursuit+of+happiness+i+want+to+try+to+combine+them+all+because+to+me+healing+is+really+the+ultimate+natural+wonder
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=your+body+has+a+remarkable+capacity+to+begin+healing
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+much+more+quickly+than+people+had+once+realized++if+you+simply+stop+doing+whats+causing+the+problem
found 1 videos: [['/talks/aubrey_de_grey_a_roadmap_to_end_aging', '2006']]
selected: /talks/aubrey_de_grey_a_roadmap_to_end_aging
sleep 2 seconds to avoid blocking
------<573>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DeanOrnish_2006.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+the+legitimate+concerns+about+aids+and+avian+flu+and+we+ll+hear+about+that+from+the+brilliant+dr+brilliant+later+today+i+want+to+talk+about+the+other+pandemic+which+is
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=cardiovascular+disease+diabetes+hypertension+all+of
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=completely+preventable+for+at+least+ninety+five+percent+of+people+just+by+changing+diet+and+lifestyle++and+what+s+happening+is+that+there+s+a+globalization+of+illness+occurring+that+people+are+starting+to
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=eat+like+us+and+live+like+us+and+die+like+us
found 4 videos: [['/talks/jane_goodall_what_separates_us_from_chimpanzees', '2007'], ['/talks/larry_brilliant_the_case_for_optimism', '2007'], ['/talks/helen_fisher_the_brain_in_love', '2008'], ['/talks/ann_cooper_what_s_wrong_with_school_lunches', '2008']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+in+one+generation+for+example+asia+s+gone+from+having+one+of+the+lowest+rates+of+heart+disease+and+obesity+and+diabetes+to+one+of+the+highest
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+in+africa+cardiovascular+disease+equals+the+hiv+and+aids+deaths+in+most+countries
found 1 videos: [['/talks/dean_ornish_the_killer_american_diet_that_s_sweeping_the_planet', '2006']]
selected: /talks/dean_ornish_the_killer_american_diet_that_s_sweeping_the_planet
sleep 2 seconds to avoid blocking
------<574>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DeanOrnish_2008.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+way+to+change+our+genes+is+to+make+new+ones+as+craig+venter+has+so+elegantly+shown+another+is+to+change+our+lifestyles+and
found 1 videos: [['/talks/dean_ornish_your_genes_are_not_your_fate', '2008']]
selected: /talks/dean_ornish_your_genes_are_not_your_fate
sleep 4 seconds to avoid blocking
------<575>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DeborahGordon_2003.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+study+ants++and+that+s+because+i+like+to+think+about+how+organizations+work
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+in+particular++how+the+simple+parts+of+organizations
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=interact+to+create+the+behavior+of+the+whole+organization
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+ant+colonies+are+a+good+example+of+an+organization+like+that+and+there+are+many+others++the+web+is+one+there+are+many+biological+systems+like+that
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+are+about+ten+thousand+species+of+ants
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+all+live+in+colonies+consisting+of+one+or+a+few+queens+and+then+all+the+ants+you+see+walking+around+are+sterile+female+workers
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+all+ant+colonies+have+in+common+that+there+s+no+central+control+nobody+tells+anybody+what+to+do
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+queen+just+lays+the+eggs
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+no+management+no+ant+directs+the+behavior+of+any+other+ant+and+i+try+to+figure+out+how+that+works
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+ve+been+working+for+the+past+twenty+years
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+a+population+of+seed+eating+ants+in+southeastern+arizona+here+s+my+study+site+this+is+really+a+picture+of+ants+and+the
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=rabbit+just+happens+to+be+there+and+these+ants+are+called+harvester+ants+because+they+eat+seeds+this+is+the
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=nest+of+the+mature+colony+and+there+s+the+nest+entrance++and+they+forage+maybe+for+about+twenty+meters+away++gather+up+the+seeds+and+bring+them+back+to+the+nest+and+store+them+and+every+year+i+go+there+and+make+a+map+of+my+study+site+this+is+just+a+road++and+it+s+not+very+big
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hundred+and+fifty+meters+on+one+side+four+hundred+on+the+other++and+every+colony+has+a+name+which+is+a+number+which+is+painted+on+a+rock
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+go+there+every+year+and+look+for+all+the+colonies+that+were+alive+the+year+before
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+figure+out+which+ones+have+died+and+put+all+the+new+ones+on+the+map++and+by+doing+this+i+know+how+old+they+all+are+and+because+of+that+i+ve+been+able+to+study+how+their+behavior+changes
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+the+colony+gets+older+and+larger++so+i+want+to+tell+you+about+the+life
error: request timeout
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ants+never+make+more+ants+colonies+make+more+colonies++and+they+do+that+by+each+year+sending+out+the+reproductives+those+are+the+ones+with+wings+on+a+mating+flight
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+every+year+on+the+same+day+and+it+s+a+mystery+exactly+how+that+happens
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+mate+and+this+shows
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+recently+virgin+queen+here+s+her+wings+and+she+s+in+the+process
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+there+s+another+male+on+top+waiting+his+turn+often+the+queens+mate+more+than+once+and+after+that+the+males+all+die+that+s+it+for+them
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+newly+mated+queens+fly+off+somewhere+drop+their+wings
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=dig+a+hole+and+go+into+that+hole+and+start+laying+eggs++and+they+will+live+for+fifteen+or+twenty+years
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=continuing+to+lay+eggs+using+the+sperm+from+that+original+mating
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+the+queen+goes+down+in+there++she+lays+eggs+she+feeds+the+larvae+so+an+ant+starts+as+an+egg++then+it+s+a+larva++she+feeds+the+larvae+by+regurgitating+from+her+fat+reserves
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=then+as+soon+as+the+ants+the+first+group+of+ants+emerge+they+re+larvae+then+they+re+pupae+then+they+come+out+as+adult+ants++they+go+out+they+get+the+food+they+dig+the+nest+and+the+queen+never+comes+out+again
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+this+is+a+one+year+old+colony+this+happens+to+be+five+hundred+and+thirty+six+there+s+the+nest+entrance+there+s+a+pencil+for+scale++so+this+is+the+colony+founded+by+a+queen+the+previous+summer
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+the+nest+entrance+there+s+a+pencil+for+scale++they+make+a+midden+a+pile+of+refuse
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=mostly+the+husks+of+the+seeds+that+they+eat
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+a+five+year+old+colony+this+is+the+nest+entrance++here+s+a+pencil+for+scale++this+is+about+as+big+as+they+get+about+a+meter+across
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+this+is+how+colony+size+and+numbers+of+worker
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+this+is+about+ten+thousand+worker+ants+changes+as+a+function+of+colony+age+in+years
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+it+starts+out+with+zero+ants+just+the+founding+queen
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+grows+to+a+size+of+about+ten+or+twelve+thousand+ants+when+the+colony+is+five
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+stays+that+size+until+the+queen+dies+and+there+s+nobody+to+make+more+ants+when+she+s+about+fifteen+or+twenty+years+old
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+s+when+they+reach+this+stable+size++in+numbers+of+ants+that
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+start+to+reproduce+that+is+to+send+more+winged
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=queens+and+males+to+that+year+s+mating+flight++and+i+know+how+colony+size+changes+as+a+function+of+colony+age
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+dug+up+colonies+of+known+age+and+counted+all+the+ants+so
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+not+the+most+fun+part+of+this+research++although+it+s+interesting
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=question+that+i+think+about+with+these+ants+is+what+i+call+task+allocation
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+not+just+how+is+the+colony+organized+but+how+does+it+change+what+it+s+doing
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+is+it+that+the+colony+manages+to+adjust+the+numbers+of+workers+performing+each+task+as+conditions+change+so+things+happen+to+an+ant+colony
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+it+rains+in+the+summer++it+floods+in+the+desert++there+s+a+lot+of+damage+to+the+nest+and+extra+ants+are+needed+to+clean+up+that+mess
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+extra+food+becomes+available+and+this+is+what+everybody+knows+about+picnics+then+extra+ants+are+allocated+to+collect+the+food
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+with+nobody+telling+anybody+what+to+do+how+is+it+that+the+colony+manages+to+adjust+the+numbers+of+workers+performing+each+task+and+that+s+the+process+that+i+call+task+allocation
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+in+harvester+ants+i+divide+the+tasks+of+the+ants+i+see+just+outside+the+nest+into+these+four+categories++where+an+ant+is+foraging+when+it+s+out+along+the+foraging+trail++searching
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+food+or+bringing+food+back++the+patrollers+that+s+supposed+to+be+a+magnifying+glass+are+an+interesting+group+that+go+out+early+in+the+morning+before+the+foragers+are+active++they+somehow+choose+the+direction+that+the+foragers+will+go+and+by+coming+back
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=just+by+making+it+back+they+tell+the+foragers+that+it+s+safe+to+go+out
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=then+the+nest+maintenance+workers+work+inside+the+nest+and+i+wanted+to+say+that+the+nests+look+a+lot+like+bill+lishman+s+house+that+is+that+there+are+chambers
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=inside+they+line+the+walls+of+the+chambers+with+moist+soil+and+it+dries+to+a+kind+of+an+adobe+like+surface+in+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=inside+the+nest+and+then+they+come+out+of+the+nest+carrying+bits+of+dry+soil+in+their+mandibles+so+you+see+the+nest+maintenance+workers+come+out+with+a+bit+of+sand+put+it+down+turn+around+and+go+back+in
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=territorial+chemical+in+the+garbage+so+what+you+see+the+midden+workers+doing+is+making+a+pile+of+refuse+on+one+day+it+ll+all+be+here+and+then+the+next+day+they+ll+move+it+over+there+and+then+they+ll+move+it+back
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+what+the+midden+workers+do
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+these+four+groups+are+just+the+ants+outside+the+nest+so+that+s+only+about+twenty+five+percent+of+the+colony+and+they+re+the+oldest+ants+so+an+ant
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=starts+out+somewhere+near+the+queen+and+when+we+dig+up+nests+we+find+they+re+about+as+deep+as+the+colony+is+wide+so+about+a+meter+deep
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=where+we+often+find+the+queen+after+eight+hours+of+hacking+away+at+the+rock+with+pickaxes++i+don+t+think+that+chamber+has+evolved+because+of
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=me+and+my+backhoe+and+my+crew+of+students+with+pickaxes+but+instead+because+when+there+s+flooding+occasionally
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+colony+has+to+go+down+deep+so+there+s+this+whole+network+of+chambers+the+queen+s+in+there+somewhere++she+just+lays
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+the+larvae+and+they+consume+most+of+the+food+and+this+is+true+of+most+ants+that+the+ants+you+see+walking+around
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=don+t+do+much+eating+they+bring+it+back+and+feed+it+to+the+larvae+when+the+foragers+come+in+with+food++they+just+drop+it+into+the+upper+chamber+and+other+ants+come
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=up+from+below+get+the+food+bring+it+back+husk+the+seeds+and+pile+them+up+there+are+nest+maintenance+workers+working+throughout+the+nest+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+looks+as+though+at+any+time+about+half+the+ants+in+the+colony+are+just+doing+nothing++so+despite+what+it+says+in+the+bible+about+you+know+look+to+the+ant+thou+sluggard+in+fact
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+could+think+of+those+ants+as+reserves+that+is+to+say+if+something+happened+and+i+ve+never+seen+anything+like+this+happen+but+i+ve+only+been+looking+for+twenty+years+if+something+happened++they+might+all+come+out+if+they+were+needed
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+fact+mostly+they+re+just+hanging+around+in+there+and+i+think+it+s+a+very+interesting+question+what+is+there+about+the+way+the+colony+is+organized+that+might+give
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+function+to+a+reserve+of+ants+who
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+doing+nothing+and+they+sort+of
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=stand+as+a+as+a+buffer+in+between+the+ants+working+deep+inside+the+nest+and+the+ants+working+outside+and+if+you+mark+ants
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+are+working+outside++and+dig+up+a+colony+you+never+see+them+deep+down+so+what+s+happening+is+that+the+ants+work
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=inside+the+nest+when+they+re+younger++they+somehow+get+into+this+reserve+and+then+eventually+they+get+recruited+to+join+this+exterior+workforce+and+once+they+belong+to+the+ants+that+work+outside++they+never+go+back+down
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+ants+most+ants+including+these+don+t+see+very+well+they+have+eyes+they+can+distinguish+between+light+and+dark++but+they+mostly+work+by
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+what+you+might+have+thought+about+ant+queens+isn+t+true
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know+even+if+the+queen+did+have+the+intelligence+to+send+chemical+messages+through+this+whole+network+of+chambers+to+tell+the+ants+outside+what+to+do
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+is+no+way+that+such+messages+could+make+it+in+time+to+see+the+shifts+in+the+allocation+of+workers+that+we+actually+see+outside+the+nest
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+that+s+one+way+that+we+know+the+queen+isn+t+directing+the+behavior+of+the+colony
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+when+i+first+set+out+to+work+on+task+allocation+my+first+question+was
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+s+the+relationship+between+the+ants+doing+different+tasks+does+it+matter+to+the+foragers+what+the+nest+maintenance+workers+are+doing+does+it+matter+to+the+midden+workers+what+the+patrollers+are+doing
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+context+of+a+view+of+ant+colonies+in+which+each+ant+was+somehow+dedicated+to+its+task+from+birth+and+sort+of+performed
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=independently+of+the+others+knowing+its+place+on+the+assembly+line+and+instead+i+wanted+to+ask+how+are+the+different+task+groups+interdependent
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+did+experiments+where+i+changed+one+thing+so+for+example++i+created+more+work+for+the+nest+maintenance+workers+by+putting+out+a+pile+of+toothpicks+near+the+nest+entrance+early+in+the+morning+when+the+nest+maintenance+workers+are+first+active
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+what+it+looks+like+about+twenty+minutes+later
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+forty+minutes+later+and+the+nest+maintenance+workers+just+take+all+the+toothpicks+to+the+outer+edge+of+the+nest+mound+and+leave+them+there
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+what+i+wanted+to+know+was+ok+here+s+a+situation+where+extra+nest+maintenance+workers+were+recruited+is+this+going+to+have+any+effect+on+the+workers+performing+other+tasks+then+we
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=repeated+all+those+experiments+with+the+ants+marked+so+here+s+some+blue+nest+maintenance+workers++and+lately+we+ve+gotten+more+sophisticated
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+have+this+three+color+system+and+we+can+mark+them+individually+so+we+know+which+ant+is+which+we+started+out+with+model+airplane+paint+and+then+we+found+these+wonderful+little+japanese+markers+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+work+really+well++and+so+just+to+summarize+the+result+well+it+turns+out+that+yes+the+different+tasks+are+interdependent+so+if+i+change+the+numbers+performing+one+task
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=then+i+see+fewer+ants+out+foraging+and+this+was+true+for+all+the+pair+wise+combinations+of+tasks
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+second+result++which+was+surprising+to+a+lot+of+people+was+that+ants+actually+switch+tasks+the+same+ant+doesn+t+do+the+same+task+over+and+over+its+whole+life++so+for+example+if+i+put+out+extra+food
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=everybody+else+the+midden+workers+stop+doing+midden+work+and+go+get+the+food+they+become+foragers+the+nest+maintenance+workers+become+foragers+the+patrollers
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+not+every+transition+is+possible++and+this+shows+how+it+works+like+i+just+said+if+there+is+more+food+to+collect+the+patrollers+the+midden+workers+the+nest+maintenance+workers+will+all+change+to+forage
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+there+s+more+patrolling+to+do+so+i+created+a+disturbance++so+extra+patrollers+were+needed+the+nest+maintenance+workers+will+switch+to
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+if+more+nest+maintenance+work+is+needed+for+example+if+i+put+out+a+bunch+of+toothpicks
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=then+nobody+will+ever+switch+back+to+nest+maintenance++they+have+to+get+nest+maintenance+workers+from+inside+the+nest++so+foraging+acts+as
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+sink++and+the+ants+inside+the+nest+act+as+a+source
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+finally+it+looks+like+each+ant+is+deciding+moment+to+moment+whether+to+be+active+or+not+so+for+example+when+there+s+extra+nest+maintenance+work+to+do+it+s+not+that+the+foragers+switch+over+i+know
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+don+t+do+that+but+the+foragers+somehow+decide+not+to+come+out+and+here+was+the+most
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=intriguing+result+the+task+allocation+this+process+changes+with+colony+age+and+it+changes+like+this+when+i+do+these+experiments+with+older+colonies+so+ones+that+are+five+years+or+older
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+re+much+more+consistent+from+one+time+to+another+and+much+more+homeostatic+the+worse+things+get+the+more+i+hassle+them++the+more+they+act+like+undisturbed+colonies+whereas+the+young
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=small+colonies+the+two+year+old+colonies+of+just+two+thousand+ants+are+much+more+variable++and+the
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=amazing+thing+about+this+is+that+an+ant+lives+only+a+year+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=could+be+this+year+or+this+year++so+the+ants+in+the+older+colony+that+seem+to+be+more+stable+are+not+any+older+than+the+ants+in+the+younger+colony+it+s+not+due+to+the+experience+of+older+wiser+ants++instead+something+about+the+organization+must+be
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=changing+as+the+colony+gets+older+and+the+obvious+thing+that+s+changing+is+its+size+so+since+i+ve+had+this+result++i+ve+spent+a+lot+of+time
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=trying+to+figure+out+what+kinds+of+decision+rules+very+simple+local+probably+olfactory+chemical+rules+could+an+ant+could+be+using
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ant+can+assess+the+global+situation
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+would+have+the+outcome+that+i+see+these+predictable+dynamics++in+who+does+what+task++and+it+would+change+as+the+colony+gets+larger
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+what+i+ve+found+out+is+that+ants+are+using
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+network+of+antennal+contact+so+anybody+who+s+ever+looked+at+ants+has+seen+them+touch+antennae++they+smell+with+their+antennae++when+one+ant+touches+another+it+s+smelling
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+can+tell+for+example+whether+the+other+ant+is+a+nest+mate+because+ants
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=cover+themselves+and+each+other+through+grooming+with+a+layer+of+grease+which+carries+a+colony+specific+odor
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+what+we+re+learning+is+that+an+ant+uses+the+pattern+of+its+antennal+contacts+the+rate+at+which+it+meets+ants+of+other+tasks++in+deciding+what+to+do
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+what+the+message+is+is+not+any
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=message+that+they+transmit+from+one+ant+to+another++but+the+pattern+the+pattern+itself+is+the+message+and+i+ll+tell+you+a+little+bit+more+about+that
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+first+you+might+be+wondering+how+is+it+that+an+ant+can+tell+for+example
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+a+forager++i+expect+to+meet+another+forager+every+so+often++but+if+instead+i+start+to+meet+a+higher+number+of+nest+maintenance+workers
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+less+likely+to+forage+so+it+has+to+know+the+difference+between
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+forager+and+a+nest+maintenance+worker
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+ve+learned+that+in+this+species+and+i+suspect+in+others+as+well+these+hydrocarbons+this+layer+of+grease+on+the+outside+of+ants+is+different
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+ants+perform+different+tasks++and+we+ve+done+experiments+that+show+that+that+s+because+the+longer+an+ant+stays+outside+the+more+these+simple+hydrocarbons+on+its+surface
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+can+use+that++task+specific+odor+in+cuticular+hydrocarbons+they+can+use+that+in+their+brief+antennal+contacts+to+somehow+keep+track+of+the+rate+at+which+they+re+meeting+ants+of+certain+tasks
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+ve+just+recently+demonstrated+this
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+putting+extract+of+hydrocarbons+on+little+glass+beads+and+dropping+the+beads+gently+down+into+the+nest+entrance+at+the+right+rate+and+it+turns+out+that+ants+will+respond
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+the+right+rate+of+contact+with+a+glass+bead+with+hydrocarbon
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=extract+on+it+as+they+would+to+contact+with+real+ants++so+i+want+now+to+show+you
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+will+start+out+first+of+all
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=showing+you+the+nest+entrance+so+the+idea+is+that+ants+are+coming+in+and+out+of+the+nest+entrance++they+ve+gone+out+to+do+different+tasks
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+rate+at+which+they+meet+as+they+come+in+and+out+of+the+nest+entrance+determines+or+influences+each+ant+s+decision+about+whether+to+go+out+and+which+task+to+perform+this+is+taken+through+a+fiber+optics+microscope+it+s+down+inside+the+nest
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+beginning+you+see+the+ants+just+kind+of+engaging+with+the+fiber+optics+microscope++but+the+idea+is+that+the+ants+are+in+there
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+each+ant+is+experiencing+a+certain+flow+of+ants
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=past+it+a+stream+of+contacts+with+other+ants++and+the+pattern+of+these+interactions+determines+whether+the+ant+comes+back+out+and+what+it+does+when+it+comes+back+out
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+also+see+this+in+the+ants+just+outside+the+nest+entrance+like+these+each
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+it+comes+back+in+is+contacting+other+ants++and+the+ants+that+are+waiting+just+inside+the+nest+entrance+to+decide+whether+to+go+out+on+their+next+trip+are+contacting+the+ants+coming+in
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+what+s+interesting+about+this+system+is+that+it+s+messy++it+s+variable+it+s+noisy
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+in+particular++in+two+ways++the+first+is+that+the+experience+of+the+ant+of+each+ant+can+t+be+very+predictable+because+the+rate+at+which+ants+come+back+depends+on+all+the+little+things+that+happen
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+an+ant+as+it+goes+out+and+does+its+task+outside
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+second+thing+is+that+an+ant+s+ability+to+assess+this+pattern+must+be+very+crude+because+no+ant+can+do+any+sophisticated+counting
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+we+do+a+lot+of+simulation+and+modeling+and+also+experimental+work+to+try+to+figure+out+how+those+two+kinds+of+noise
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=aggregate+produce+the+predictable+behavior+of+ant+colonies++again+i+don+t+want+to+say+that+this+kind+of+haphazard
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+factory+that+works+with+the+precision+and+efficiency+of+clockwork+in+fact+if+you+watch+ants+at+all+you+end+up+trying+to+help+them+because+they+never+seem+to+be+doing+anything+exactly+the+way+that+you+think+that+they+ought+to+be+doing
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+so+it+s+not+really+that
error: request timeout
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=perfection+arises++but+it+works+pretty+well+ants+have+been+around+for+several+hundred+million+years++they+cover+the+earth+except+for+antarctica
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=something+that+they+re+doing+is+clearly+successful+enough
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+this+pattern+of+haphazard+contacts+in+the+aggregate++produces+something+that+allows
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ants+to+make+a+lot+more+ants+and+one+of+the+things+that+we+re+studying+is+how+natural+selection+might+be+acting+now+to+shape+this
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=use+of+interaction+patterns+this+network+of+interaction+patterns+to
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=perhaps+increase+the+foraging+efficiency+of+ant+colonies+so+the+one
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+i+want+you+to+remember+about+this+is+that+these+patterns+of+interactions+are+something+that+you+d+expect+to+be+closely+connected+to+colony+size++the+simplest+idea+is+that+when+an+ant
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+in+a+small+colony+and+an+ant+in+a+large+colony+can+use+the+same+rule+like+i+expect+to+meet+another+forager+every+three+seconds+but+in+a+small
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=colony++it+s+likely+to+meet+fewer+foragers+just+because+there+are+fewer+other+foragers+there+to+meet
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+this+is+the+kind+of+rule+that+as+the+colony+develops+and+gets+older+and+larger+will+produce+different+behavior+in+an+old+colony
found 0 videos: []
sleep 2 seconds to avoid blocking
error: no video is found.
sleep 4 seconds to avoid blocking
------<576>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DeborahGordon_2014.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+study+ants+in+the+desert+in+the+tropical+forest
found 1 videos: [['/talks/deborah_gordon_what_ants_teach_us_about_the_brain_cancer_and_the_internet', '2014']]
selected: /talks/deborah_gordon_what_ants_teach_us_about_the_brain_cancer_and_the_internet
sleep 2 seconds to avoid blocking
------<577>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DeborahLipstadt_2017X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+come+to+you+today+to+speak+of+liars++lawsuits+and+laughter
found 1 videos: [['/talks/deborah_lipstadt_behind_the_lies_of_holocaust_denial', '2017']]
selected: /talks/deborah_lipstadt_behind_the_lies_of_holocaust_denial
sleep 4 seconds to avoid blocking
------<578>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DeborahRhodes_2010W.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+are+two+groups+of+women+when+it+comes+to+screening+mammography
found 1 videos: [['/talks/deborah_rhodes_a_test_that_finds_3x_more_breast_tumors_and_why_it_s_not_available_to_you', '2011']]
selected: /talks/deborah_rhodes_a_test_that_finds_3x_more_breast_tumors_and_why_it_s_not_available_to_you
sleep 4 seconds to avoid blocking
------<579>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DeborahScranton_2007.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=three+years+ago+i+got+a+phone+call+based+on+an+earlier+film+i+had+made+with+an+offer+to+embed+the+new+hampshire+national+guard
found 1 videos: [['/talks/deborah_scranton_an_iraq_war_movie_crowd_sourced_from_soldiers', '2007']]
selected: /talks/deborah_scranton_an_iraq_war_movie_crowd_sourced_from_soldiers
sleep 2 seconds to avoid blocking
------<580>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DebraJarvis_2014P.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+just+met+you+on+a+bus
found 14 videos: [['/talks/joshua_prager_in_search_of_the_man_who_broke_my_neck', '2013'], ['/talks/io_tillett_wright_fifty_shades_of_gay', '2013'], ['/talks/debra_jarvis_yes_i_survived_cancer_but_that_doesn_t_define_me', '2014'], ['/talks/lee_mokobe_a_powerful_poem_about_what_it_feels_like_to_be_transgender', '2015'], ['/talks/andrew_solomon_how_the_worst_moments_in_our_lives_make_us_who_we_are', '2014'], ['/talks/jeffrey_brown_how_we_cut_youth_violence_in_boston_by_79_percent', '2015'], ['/talks/eli_beer_the_fastest_ambulance_a_motorcycle', '2013'], ['/talks/meera_vijayann_find_your_voice_against_gender_violence', '2014'], ['/talks/may_el_khalil_making_peace_is_a_marathon', '2013'], ['/talks/rick_guidotti_from_stigma_to_supermodel', '2012'], ['/talks/aziz_abu_sarah_for_more_tolerance_we_need_more_tourism', '2015'], ['/talks/zeynep_tufekci_online_social_change_easy_to_organize_hard_to_win', '2015'], ['/talks/vincent_moon_and_nana_vasconcelos_hidden_music_rituals_around_the_world', '2014'], ['/talks/bruce_feiler_agile_programming_for_your_family', '2013']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+would+really+like+to+get+to+know+each+other+but+i+ve+got+to+get+off+at+the+next+stop
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+you+re+going+to+tell+me+three+things+about+yourself
found 7 videos: [['/talks/jane_fonda_life_s_third_act', '2012'], ['/talks/jean_paul_mari_the_chilling_aftershock_of_a_brush_with_death', '2015'], ['/talks/dame_stephanie_shirley_why_do_ambitious_women_have_flat_heads', '2015'], ['/talks/raffaello_d_andrea_the_astounding_athletic_power_of_quadcopters', '2013'], ['/talks/john_green_the_nerd_s_guide_to_learning_everything_online', '2015'], ['/talks/david_kwong_two_nerdy_obsessions_meet_and_it_s_magic', '2014'], ['/talks/helen_fisher_technology_hasn_t_changed_love_here_s_why', '2016']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+just+define+you+as+a+person
found 13 videos: [['/talks/shaka_senghor_why_your_worst_deeds_don_t_define_you', '2014'], ['/talks/debra_jarvis_yes_i_survived_cancer_but_that_doesn_t_define_me', '2014'], ['/talks/courtney_e_martin_the_new_american_dream', '2016'], ['/talks/mac_stone_stunning_photos_of_the_endangered_everglades', '2015'], ['/talks/harish_manwani_profit_s_not_always_the_point', '2014'], ['/talks/jedidah_isler_the_untapped_genius_that_could_change_science_for_the_better', '2015'], ['/talks/hamish_jolly_a_shark_deterrent_wetsuit_and_it_s_not_what_you_think', '2014'], ['/talks/scott_dinsmore_how_to_find_work_you_love', '2015'], ['/talks/jia_jiang_what_i_learned_from_100_days_of_rejection', '2016'], ['/talks/neil_burgess_how_your_brain_tells_you_where_you_are', '2012'], ['/talks/norman_spack_how_i_help_transgender_teens_become_who_they_want_to_be', '2014'], ['/talks/io_tillett_wright_fifty_shades_of_gay', '2013'], ['/talks/david_eagleman_can_we_create_new_senses_for_humans', '2015']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=three+things+about+yourself+that+will+help+me+understand+who+you+are+three+things+that+just+get+to+your+very+essence
found 3 videos: [['/talks/debra_jarvis_yes_i_survived_cancer_but_that_doesn_t_define_me', '2014'], ['/talks/chris_hadfield_what_i_learned_from_going_blind_in_space', '2014'], ['/talks/julie_taymor_spider_man_the_lion_king_and_life_on_the_creative_edge', '2013']]
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+of+those+three+things+is+any+one+of+them
found 24 videos: [['/talks/jean_paul_mari_the_chilling_aftershock_of_a_brush_with_death', '2015'], ['/talks/hilary_cottam_social_services_are_broken_how_we_can_fix_them', '2015'], ['/talks/mikko_hypponen_three_types_of_online_attack', '2012'], ['/talks/denise_herzing_could_we_speak_the_language_of_dolphins', '2013'], ['/talks/tony_fadell_the_first_secret_of_design_is_noticing', '2015'], ['/talks/hannah_fry_the_mathematics_of_love', '2015'], ['/talks/russell_foster_why_do_we_sleep', '2013'], ['/talks/diana_reiss_peter_gabriel_neil_gershenfeld_and_vint_cerf_the_interspecies_internet_an_idea_in_progress', '2013'], ['/talks/blaise_aguera_y_arcas_how_computers_are_learning_to_be_creative', '2016'], ['/talks/jimmy_carter_why_i_believe_the_mistreatment_of_women_is_the_number_one_human_rights_abuse', '2015'], ['/talks/pico_iyer_where_is_home', '2013'], ['/talks/emma_marris_nature_is_everywhere_we_just_need_to_learn_to_see_it', '2016'], ['/talks/rory_sutherland_perspective_is_everything', '2012'], ['/talks/susan_etlinger_what_do_we_do_with_all_this_big_data', '2014'], ['/talks/cesar_kuriyama_one_second_every_day', '2013'], ['/talks/suki_kim_this_is_what_it_s_like_to_go_undercover_in_north_korea', '2015'], ['/talks/andres_lozano_parkinson_s_depression_and_the_switch_that_might_turn_them_off', '2013'], ['/talks/alastair_parvin_architecture_for_the_people_by_the_people', '2013'], ['/talks/andrew_youn_3_reasons_why_we_can_win_the_fight_against_poverty', '2016'], ['/talks/brian_greene_is_our_universe_the_only_universe', '2012'], ['/talks/steven_wise_chimps_have_feelings_and_thoughts_they_should_also_have_rights', '2015'], ['/talks/will_potter_the_secret_us_prisons_you_ve_never_heard_of_before', '2015'], ['/talks/tracy_chevalier_finding_the_story_inside_the_painting', '2012'], ['/talks/peter_diamandis_abundance_is_our_future', '2012']]
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=rape+survivor++holocaust+survivor++incest+survivor
found 1 videos: [['/talks/debra_jarvis_yes_i_survived_cancer_but_that_doesn_t_define_me', '2014']]
selected: /talks/debra_jarvis_yes_i_survived_cancer_but_that_doesn_t_define_me
sleep 4 seconds to avoid blocking
------<581>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DebRoy_2011.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=imagine+if+you+could+record+your+life
found 8 videos: [['/talks/raghava_kk_what_s_your_200_year_plan', '2012'], ['/talks/tim_ferriss_smash_fear_learn_anything', '2009'], ['/talks/elizabeth_gilbert_your_elusive_creative_genius', '2009'], ['/talks/shlomo_benartzi_saving_for_tomorrow_tomorrow', '2012'], ['/talks/deb_roy_the_birth_of_a_word', '2011'], ['/talks/kathryn_schulz_don_t_regret_regret', '2011'], ['/talks/john_hockenberry_we_are_all_designers', '2012'], ['/talks/hendrik_poinar_bring_back_the_woolly_mammoth', '2013']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=everything+you+said+everything+you+did+available+in+a+perfect+memory+store+at+your+fingertips++so+you+could+go+back
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+find+memorable+moments+and+relive+them++or+sift+through+traces+of+time+and
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=discover+patterns+in+your+own+life+that+previously+had+gone+undiscovered++well+that+s+exactly+the+journey
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+my+family+began+five+and+a+half+years+ago
found 12 videos: [['/talks/bruce_feiler_agile_programming_for_your_family', '2013'], ['/talks/john_maeda_my_journey_in_design', '2009'], ['/talks/bruce_feiler_the_council_of_dads', '2011'], ['/talks/allan_savory_how_to_fight_desertification_and_reverse_climate_change', '2013'], ['/talks/rebecca_onie_what_if_our_health_care_system_kept_us_healthy', '2012'], ['/talks/andreas_schleicher_use_data_to_build_better_schools', '2013'], ['/talks/elyn_saks_a_tale_of_mental_illness_from_the_inside', '2012'], ['/talks/shukla_bose_teaching_one_child_at_a_time', '2010'], ['/talks/richard_pyle_a_dive_into_the_reef_s_twilight_zone', '2009'], ['/talks/marc_pachter_the_art_of_the_interview', '2009'], ['/talks/r_a_mashelkar_breakthrough_designs_for_ultra_low_cost_products', '2010'], ['/talks/elizabeth_loftus_how_reliable_is_your_memory', '2013']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+my+wife+and+collaborator+rupal+and+on+this+day+at+this+moment+we+walked+into+the+house+with+our+first+child+our+beautiful+baby
found 1 videos: [['/talks/deb_roy_the_birth_of_a_word', '2011']]
selected: /talks/deb_roy_the_birth_of_a_word
sleep 2 seconds to avoid blocking
------<582>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DeeBoersma_2010Z.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+talk+about+penguins+today+but+first+i+want+to+start+by+saying+that+we+need+a+new+operating+system+for+the+oceans+and+for+the+earth
found 1 videos: [['/talks/dee_boersma_pay_attention_to_penguins', '2010']]
selected: /talks/dee_boersma_pay_attention_to_penguins
sleep 2 seconds to avoid blocking
------<583>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DeepikaKurup_2016W.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=every+summer+my+family+and+i+travel+across+the+world++three+thousand+miles+away+to+the+culturally+diverse+country+of+india
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+india+is+a+country+infamous+for+its+scorching+heat+and+humidity+for+me+the+only+relief+from+this+heat
found 1 videos: [['/talks/deepika_kurup_a_young_scientist_s_quest_for_clean_water', '2017']]
selected: /talks/deepika_kurup_a_young_scientist_s_quest_for_clean_water
sleep 3 seconds to avoid blocking
------<584>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DeeyahKhan_2016X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+was+a+child++i+knew+i+had+superpowers
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+right+i+thought+i+was+absolutely+amazing+because+i+could+understand
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+relate+to+the+feelings+of+brown+people+like+my+grandfather+a+conservative+muslim+guy
found 1 videos: [['/talks/deeyah_khan_what_we_don_t_know_about_europe_s_muslim_kids', '2017']]
selected: /talks/deeyah_khan_what_we_don_t_know_about_europe_s_muslim_kids
sleep 1 seconds to avoid blocking
------<585>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DelHarvey_2014.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+job+at+twitter+is+to+ensure+user+trust++protect+user+rights+and+keep+users+safe++both+from+each+other+and+at+times+from+themselves
found 1 videos: [['/talks/del_harvey_protecting_twitter_users_sometimes_from_themselves', '2014']]
selected: /talks/del_harvey_protecting_twitter_users_sometimes_from_themselves
sleep 3 seconds to avoid blocking
------<586>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DenaSimmons_2015P.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+my+two+sisters+and+immigrant+mother++i+loved+our+neighborhood++it+was+lively++there+was+all+this
found 1 videos: [['/talks/dena_simmons_how_students_of_color_confront_impostor_syndrome', '2016']]
selected: /talks/dena_simmons_how_students_of_color_confront_impostor_syndrome
sleep 2 seconds to avoid blocking
------<587>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DenisDutton_2010.stm
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+talk+to+you+about+a+subject+dear+to+my+heart+which+is+beauty
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+do+the+philosophy+of+art++aesthetics+actually+for+a+living
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+try+to+figure+out+intellectually+philosophically+psychologically+what
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+experience+of+beauty+is+what+sensibly+can+be+said+about+it+and+how+people+go+off+the+rails+in+trying+to+understand+it
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+this+is+an+extremely+complicated+subject
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+part+because+the+things+that+we+call+beautiful+are+so+different+i+mean+just+think+of+the+sheer+variety
error: request timeout
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+wizard+of+oz+or+the+plays+of+chekhov+a+central+california+landscape+a+hokusai+view+of+mt+fuji+der+rosenkavalier
found 1 videos: [['/talks/denis_dutton_a_darwinian_theory_of_beauty', '2010']]
selected: /talks/denis_dutton_a_darwinian_theory_of_beauty
sleep 4 seconds to avoid blocking
------<588>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DeniseHerzing_2013.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=re+going+to+the+bahamas+to+meet+a+remarkable+group+of+dolphins+that+i+ve+been+working+with+in+the+wild+for+the+last++twenty+eight+years
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+i+m+interested+in+dolphins+because+of+their+large+brains+and+what+they+might+be+doing+with+all+that+brainpower+in+the+wild
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+know+they+use+some+of+that+brainpower+for+just
found 3 videos: [['/talks/denise_herzing_could_we_speak_the_language_of_dolphins', '2013'], ['/talks/ben_ambridge_9_myths_about_psychology_debunked', '2015'], ['/talks/robert_full_the_secrets_of_nature_s_grossest_creatures_channeled_into_robots', '2014']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=living+complicated+lives++but+what+do+we+really+know+about+dolphin+intelligence+well
found 1 videos: [['/talks/denise_herzing_could_we_speak_the_language_of_dolphins', '2013']]
selected: /talks/denise_herzing_could_we_speak_the_language_of_dolphins
sleep 1 seconds to avoid blocking
------<589>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DennisHong_2009X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+first+robot+to+talk+about+is+called+strider
found 1 videos: [['/talks/dennis_hong_my_seven_species_of_robot_and_how_we_created_them', '2010']]
selected: /talks/dennis_hong_my_seven_species_of_robot_and_how_we_created_them
sleep 1 seconds to avoid blocking
------<590>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DennisHong_2011.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=many+believe+driving+is+an+activity+solely+reserved+for+those+who+can+see
found 1 videos: [['/talks/dennis_hong_making_a_car_for_blind_drivers', '2011']]
selected: /talks/dennis_hong_making_a_car_for_blind_drivers
sleep 5 seconds to avoid blocking
------<591>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DennisvanEngelsdorp_2008P.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+you+to+do+is+just+really+quickly++is+just+sort+of+nod+to+the+person+on+your+right++and+then+nod+to+the+person+on+your+left
found 17 videos: [['/talks/dennis_vanengelsdorp_a_plea_for_bees', '2008'], ['/talks/nicholas_negroponte_5_predictions_from_1984', '2008'], ['/talks/ze_frank_my_web_playroom', '2010'], ['/talks/nicholas_negroponte_one_laptop_per_child', '2006'], ['/talks/julian_assange_why_the_world_needs_wikileaks', '2010'], ['/talks/dan_dennett_the_illusion_of_consciousness', '2007'], ['/talks/jonathan_haidt_the_moral_roots_of_liberals_and_conservatives', '2008'], ['/talks/jonathan_zittrain_the_web_as_random_acts_of_kindness', '2009'], ['/talks/janine_benyus_biomimicry_s_surprising_lessons_from_nature_s_engineers', '2007'], ['/talks/alex_steffen_the_route_to_a_sustainable_future', '2007'], ['/talks/daniel_kahneman_the_riddle_of_experience_vs_memory', '2010'], ['/talks/johanna_blakley_lessons_from_fashion_s_free_culture', '2010'], ['/talks/sendhil_mullainathan_solving_social_problems_with_a_nudge', '2010'], ['/talks/mary_roach_10_things_you_didn_t_know_about_orgasm', '2009'], ['/talks/simon_sinek_how_great_leaders_inspire_action', '2010'], ['/talks/paul_maccready_nature_vs_humans', '2008'], ['/talks/alison_jackson_an_unusual_glimpse_at_celebrity', '2008']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now++chances+are+that+over+the+last+winter++if+you+had+been+a+beehive
found 1 videos: [['/talks/dennis_vanengelsdorp_a_plea_for_bees', '2008']]
selected: /talks/dennis_vanengelsdorp_a_plea_for_bees
sleep 1 seconds to avoid blocking
------<592>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DerekSivers_2009I.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+re+standing+on+a+street+anywhere+in+america
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+a+japanese+man+comes+up+to+you+and+says+excuse+me++what+is+the+name+of+this+block+and+you+say+i+m+sorry+well++this+is+oak+street+that+s+elm+street
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well++blocks+don+t+have+names+streets+have+names++blocks+are+just+the+unnamed+spaces+in+between+streets+he+leaves+a+little+confused+and+disappointed+so
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+imagine+you+re+standing+on+a+street+anywhere+in+japan+you+turn+to+a+person+next+to+you+and+say+excuse+me++what+is+the+name+of+this+street
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+say+oh+well+that+s+block+seventeen+and+this+is+block+sixteen
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+say+ok+but+what+is+the+name+of+this+street
found 6 videos: [['/talks/derek_sivers_weird_or_just_different', '2010'], ['/talks/david_pogue_cool_tricks_your_phone_can_do', '2009'], ['/talks/sendhil_mullainathan_solving_social_problems_with_a_nudge', '2010'], ['/talks/dan_gilbert_why_we_make_bad_decisions', '2008'], ['/talks/tim_berners_lee_the_next_web', '2009'], ['/talks/rick_smolan_the_story_of_a_girl', '2008']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=streets+don+t+have+names++blocks+have+names+just+look+at+google+maps+here+there+s+block+fourteen+fifteen+sixteen+seventeen+eighteen+nineteen
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+of+these+blocks+have+names++and+the+streets+are+just+the+unnamed+spaces+in+between+the+blocks
found 1 videos: [['/talks/derek_sivers_weird_or_just_different', '2010']]
selected: /talks/derek_sivers_weird_or_just_different
sleep 3 seconds to avoid blocking
------<593>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DerekSivers_2010G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=please+think+of+your+biggest+personal+goal
found 1 videos: [['/talks/derek_sivers_keep_your_goals_to_yourself', '2010']]
selected: /talks/derek_sivers_keep_your_goals_to_yourself
sleep 3 seconds to avoid blocking
------<594>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DerekSivers_2010U.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ted+we+talk+a+lot+about+leadership+and+how+to+make+a+movement++so+let+s+watch+a+movement+happen+start+to+finish+in+under+three+minutes+and+dissect+some+lessons+from+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=first+of+course+you+know+a+leader+needs+the+guts+to+stand+out+and+be+ridiculed
found 1 videos: [['/talks/derek_sivers_how_to_start_a_movement', '2010']]
selected: /talks/derek_sivers_how_to_start_a_movement
sleep 2 seconds to avoid blocking
------<595>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DevduttPattanaik_2009I.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+understand+the+business+of+mythology+and+what+a+chief+belief+officer+is+supposed+to+do+you+have+to+hear+a+story
found 1 videos: [['/talks/devdutt_pattanaik_east_vs_west_the_myths_that_mystify', '2009']]
selected: /talks/devdutt_pattanaik_east_vs_west_the_myths_that_mystify
sleep 5 seconds to avoid blocking
------<596>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DianaLaufenberg_2010X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=been+teaching+for+a+long+time+and+in+doing+so+have+acquired+a+body+of+knowledge+about+kids+and+learning+that+i+really+wish+more+people
found 1 videos: [['/talks/diana_laufenberg_how_to_learn_from_mistakes', '2010']]
selected: /talks/diana_laufenberg_how_to_learn_from_mistakes
sleep 2 seconds to avoid blocking
------<597>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DianaNyad_2011P.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=years+ago+i+was+turning+sixty+and+i+don+t+like+being+sixty
found 1 videos: [['/talks/jack_horner_building_a_dinosaur_from_a_chicken', '2011']]
selected: /talks/jack_horner_building_a_dinosaur_from_a_chicken
sleep 2 seconds to avoid blocking
------<598>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DianaNyad_2013W.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+the+fifth+time+i+stand+on+this+shore++the+cuban+shore+looking+out+at+that+distant+horizon
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=again+that+i+m+going+to+make+it
found 8 videos: [['/talks/raghava_kk_what_s_your_200_year_plan', '2012'], ['/talks/jay_silver_hack_a_banana_make_a_keyboard', '2013'], ['/talks/wendy_freedman_this_telescope_might_show_us_the_beginning_of_the_universe', '2015'], ['/talks/paul_zak_trust_morality_and_oxytocin', '2011'], ['/talks/charles_hazlewood_trusting_the_ensemble', '2011'], ['/talks/ben_goldacre_battling_bad_science', '2011'], ['/talks/chip_kidd_the_art_of_first_impressions_in_design_and_life', '2015'], ['/talks/anant_agarwal_why_massive_open_online_courses_still_matter', '2014']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+the+way+across+that+vast+dangerous+wilderness+of+an+ocean
found 1 videos: [['/talks/diana_nyad_never_ever_give_up', '2013']]
selected: /talks/diana_nyad_never_ever_give_up
sleep 2 seconds to avoid blocking
------<599>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DianeBenscoter_2009U.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+me+with+the+funny+gloves
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+seventeen+and+going+on+a+peace+walk+what+i+didn+t+know+though+was+most+of+those+people+standing+there+with+me+were+moonies
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=within+a+week+i+had+come+to+believe
found 6 videos: [['/talks/billy_graham_on_technology_and_faith', '2008'], ['/talks/jackie_tabick_the_balancing_act_of_compassion', '2008'], ['/talks/michael_pollan_a_plant_s_eye_view', '2008'], ['/talks/alain_de_botton_a_kinder_gentler_philosophy_of_success', '2009'], ['/talks/diane_benscoter_how_cults_rewire_the_brain', '2009'], ['/talks/bill_stone_inside_the_world_s_deepest_caves', '2007']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+the+second+coming+of+christ+had+occurred+that+it+was+sun+myung+moon+and+that+i+had+been+specially+chosen+and+prepared+by+god
found 1 videos: [['/talks/diane_benscoter_how_cults_rewire_the_brain', '2009']]
selected: /talks/diane_benscoter_how_cults_rewire_the_brain
sleep 2 seconds to avoid blocking
------<600>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DianeKelly_2012P.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+go+to+parties++it+doesn+t+usually+take+very+long+for+people+to+find+out+that+i+m+a+scientist
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+study+sex+and+then+i+get+asked
found 12 videos: [['/talks/paula_johnson_his_and_hers_health_care', '2014'], ['/talks/rufus_griscom_alisa_volkman_let_s_talk_parenting_taboos', '2010'], ['/talks/dan_buettner_how_to_live_to_be_100', '2010'], ['/talks/diane_kelly_what_we_didn_t_know_about_penis_anatomy', '2012'], ['/talks/melinda_gates_what_nonprofits_can_learn_from_coca_cola', '2010'], ['/talks/lauren_zalaznick_the_conscience_of_television', '2011'], ['/talks/alice_dreger_is_anatomy_destiny', '2011'], ['/talks/shawn_achor_the_happy_secret_to_better_work', '2012'], ['/talks/sheryl_sandberg_so_we_leaned_in_now_what', '2014'], ['/talks/david_brooks_the_social_animal', '2011'], ['/talks/laurel_braitman_depressed_dogs_cats_with_ocd_what_animal_madness_means_for_us_humans', '2014'], ['/talks/gabe_zichermann_how_games_make_kids_smarter', '2011']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=questions++and+the+questions+usually+have+a+very+particular+format+they+start+with+the+phrase
found 1 videos: [['/talks/diane_kelly_what_we_didn_t_know_about_penis_anatomy', '2012']]
selected: /talks/diane_kelly_what_we_didn_t_know_about_penis_anatomy
sleep 5 seconds to avoid blocking
------<601>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DiannaCohen_2010Z.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=also+one+of+the+co+founders+of+the+plastic+pollution+coalition
found 1 videos: [['/talks/dianna_cohen_tough_truths_about_plastic_pollution', '2010']]
selected: /talks/dianna_cohen_tough_truths_about_plastic_pollution
sleep 1 seconds to avoid blocking
------<602>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DidierSornette_2013G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=once+upon+a+time+we+lived+in+an+economy+of+financial+growth+and+prosperity
found 2 videos: [['/talks/didier_sornette_how_we_can_predict_the_next_financial_crisis', '2013'], ['/talks/nick_hanauer_beware_fellow_plutocrats_the_pitchforks_are_coming', '2014']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+was+called+the+great+moderation++the+misguided+belief+by+most+economists
found 1 videos: [['/talks/didier_sornette_how_we_can_predict_the_next_financial_crisis', '2013']]
selected: /talks/didier_sornette_how_we_can_predict_the_next_financial_crisis
sleep 1 seconds to avoid blocking
------<603>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DiebedoFrancisKere_2013Z.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=would+like+to+show+you+how+architecture+has+helped
found 10 videos: [['/talks/diebedo_francis_kere_how_to_build_with_clay_and_community', '2013'], ['/talks/carlo_ratti_architecture_that_senses_and_responds', '2011'], ['/talks/paola_antonelli_why_i_brought_pac_man_to_moma', '2013'], ['/talks/don_tapscott_four_principles_for_the_open_world', '2012'], ['/talks/fei_fei_li_how_we_re_teaching_computers_to_understand_pictures', '2015'], ['/talks/amber_case_we_are_all_cyborgs_now', '2011'], ['/talks/neil_pasricha_the_3_a_s_of_awesome', '2011'], ['/talks/shimon_schocken_the_self_organizing_computer_course', '2012'], ['/talks/xavier_vilalta_architecture_at_home_in_its_community', '2013'], ['/talks/sarah_parcak_archaeology_from_space', '2012']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+change+the+life+of+my+community+and+has+opened+opportunities+to+hope+i
found 6 videos: [['/talks/diebedo_francis_kere_how_to_build_with_clay_and_community', '2013'], ['/talks/sanjay_pradhan_how_open_data_is_changing_international_aid', '2012'], ['/talks/chelsea_shields_how_i_m_working_for_change_inside_my_church', '2015'], ['/talks/shaka_senghor_why_your_worst_deeds_don_t_define_you', '2014'], ['/talks/daphne_koller_what_we_re_learning_from_online_education', '2012'], ['/talks/kakenya_ntaiya_a_girl_who_demanded_school', '2013']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=am+a+native+of+burkina+faso
found 1 videos: [['/talks/diebedo_francis_kere_how_to_build_with_clay_and_community', '2013']]
selected: /talks/diebedo_francis_kere_how_to_build_with_clay_and_community
sleep 1 seconds to avoid blocking
------<604>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DilipRatha_2014G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=village+in+orissa+in+india++my+father+was+a+government+worker
found 1 videos: [['/talks/dilip_ratha_the_hidden_force_in_global_economics_sending_money_home', '2014']]
selected: /talks/dilip_ratha_the_hidden_force_in_global_economics_sending_money_home
sleep 2 seconds to avoid blocking
------<605>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DimitarSasselov_2010G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+very+very+lucky++my+talk+essentially+got+written+by+three+historic+events+that+happened+within+days+of+each+other+in+the+last+two+months
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=seemingly+unrelated++but+as+you+will+see+actually+all+having+to+do+with+the+story+i+want+to+tell+you+today+the
found 1 videos: [['/talks/dimitar_sasselov_how_we_found_hundreds_of_potential_earth_like_planets', '2010']]
selected: /talks/dimitar_sasselov_how_we_found_hundreds_of_potential_earth_like_planets
sleep 4 seconds to avoid blocking
------<606>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DonaldHoffman_2015.stm
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+m+fascinated+by+the+greatest+unsolved+mystery+in+science++perhaps+because+it+s+personal
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+about+who+we+are+and+i+can+t+help+but+be
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+mystery+is+this+what+is+the+relationship+between+your+brain+and+your+conscious+experiences++such+as+your+experience+of+the+taste+of+chocolate
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+the+feeling+of+velvet+now+this+mystery+is+not+new+in
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thomas+huxley+wrote+how+it+is+that+anything+so+remarkable+as+a+state+of+consciousness
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=comes+about+as+the+result+of+irritating+nervous+tissue
found 1 videos: [['/talks/donald_hoffman_do_we_see_reality_as_it_is', '2015']]
selected: /talks/donald_hoffman_do_we_see_reality_as_it_is
sleep 2 seconds to avoid blocking
------<607>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DonaldSadoway_2012.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+electricity+powering+the+lights+in+this+theater
found 1 videos: [['/talks/donald_sadoway_the_missing_link_to_renewable_energy', '2012']]
selected: /talks/donald_sadoway_the_missing_link_to_renewable_energy
sleep 3 seconds to avoid blocking
------<608>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DongWooJang_2013.stm
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+the+grass+is+always+greener
found 3 videos: [['/talks/dong_woo_jang_the_art_of_bow_making', '2013'], ['/talks/michael_stevens_how_much_does_a_video_weigh', '2013'], ['/talks/lesley_hazleton_the_doubt_essential_to_faith', '2013']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+the+other+side+of+the+fence++and+i+believe
found 11 videos: [['/talks/jimmy_nelson_gorgeous_portraits_of_the_world_s_vanishing_people', '2015'], ['/talks/bruce_feiler_the_council_of_dads', '2011'], ['/talks/jeffrey_brown_how_we_cut_youth_violence_in_boston_by_79_percent', '2015'], ['/talks/andrew_solomon_depression_the_secret_we_share', '2013'], ['/talks/dong_woo_jang_the_art_of_bow_making', '2013'], ['/talks/julia_bacha_pay_attention_to_nonviolence', '2011'], ['/talks/keren_elazari_hackers_the_internet_s_immune_system', '2014'], ['/talks/george_monbiot_for_more_wonder_rewild_the_world', '2013'], ['/talks/shea_hembrey_how_i_became_100_artists', '2011'], ['/talks/antonio_guterres_refugees_have_the_right_to_be_protected', '2015'], ['/talks/marc_goodman_a_vision_of_crimes_in_the_future', '2012']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+true++especially+when+i+hear+president+obama+often+talk+about+the+korean+education+system+as+a+benchmark+of+success
found 1 videos: [['/talks/dong_woo_jang_the_art_of_bow_making', '2013']]
selected: /talks/dong_woo_jang_the_art_of_bow_making
sleep 3 seconds to avoid blocking
------<609>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DonLevy_2012U.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=proved+to+be+the+ultimate+medium+for
found 1 videos: [['/talks/don_levy_a_cinematic_journey_through_visual_effects', '2013']]
selected: /talks/don_levy_a_cinematic_journey_through_visual_effects
sleep 4 seconds to avoid blocking
------<610>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DonNorman_2003.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+used+to+say+norman+s+ok++but+if+you+followed+what+he+said+everything+would+be+usable+but+it+would+be+ugly+well
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+didn+t+have+that+in+mind+so
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=neat++thank+you+for+setting+up+my+display
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+mean+it+s+just+wonderful+and+i+haven+t+the+slightest+idea+of+what+it+does+or+what+it+s+good+for+but+i+want+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+s+my+new+life+my+new+life+is+trying+to+understand+what
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=beauty+is+about+and+pretty+and+emotions+the+new+me+is+all+about+making+things+kind+of+neat+and+fun+and+so+this+is+a+philippe+starck
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+just+neat+it+s+fun++it+s+so+much+fun+i+have+it+in+my+house+but+i+have+it+in+the+entryway+i+don+t+use+it+to+make+juice
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+fact+i+bought+the++gold+plated+special+edition+and+it+comes+with+a+little+slip+of+paper+that+says+don+t+use+this+juicer+to+make+juice
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+acid+will+ruin+the+gold+plating+so+actually+i+took+a+carton+of+orange+juice+and+i+poured+it+in+the+glass+to+take+this+picture+laughter
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=beneath+it+is+a+wonderful+knife+it+s+a+global+cutting+knife+made+in+japan
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=first+of+all+look+at+the+shape+it+s+just+wonderful+to+look+at+second+of+all+it+s+really+beautifully+balanced+it+holds+well+it+feels+well
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+third+of+all+it+s
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+a+delight+to+use
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+it+s+got+everything+right+it+s+beautiful+and+it+s+functional+and+i+can+tell+you+stories+about+it+which+makes+it+reflective+and+so+you+ll+see+i+have+a+theory+of+emotion
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+those+are+the+three+components++hiroshi+ishii+and+his+group+at+the+mit+media+lab+took+a+ping+pong+table
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+placed+a+projector+above+it+and+on+the+ping+pong+table+they+projected+an+image+of+water+with+fish+swimming+in
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=whenever+the+ball+hits+part+of+the+table+the+ripples+spread+out+and+the+fish+run+away++but+of+course+then+the+ball+hits+the+other+side+the+ripples+hit+the+poor+fish+they+can+t+find+any+peace+and+quiet
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=laughter+is+that+a+good+way+to+play+ping+pong+no+but+is+it+fun++yeah
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=yeah+++or+look+at+google+if+you+type+in+oh+say+emotion+and+design
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+get+ten+pages+of+results+so+google+just+took+their+logo+and+they+spread+it+out
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=instead+of+saying+you+got+seventy+three+thousand+results+this+is+one+through+twenty+next+they+just+give+you+as+many+o+s+as+there+are+pages
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+really+simple+and+subtle+i+bet+a+lot+of+you+have+seen+it+and+never+noticed+it
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+the+subconscious+mind+that+sort+of+notices+it+it+probably+is+kind+of+pleasant+and+you+didn+t+know+why+and+it+s+just+clever
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+of+course+what+s+especially+good+is+if+you+type+design+and+emotion
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+first+response+out+of+those+ten+pages+is+my+website+now
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+weird+thing+is+google+lies+because+if+i+type+design+and+emotion+it+says+you+don+t+need+the++and++we+do+it+anyway
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so++ok++so+i+type+design+emotion
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+my+website+wasn+t+first+again++it+was
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+was+this+wonderful+review+in+the+new+york+times+about+the+mini+cooper+automobile+it+said+you+know+this+is+a+car+that+has+lots+of+faults
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=buy+it+anyway++it+s+so+much+fun+to+drive
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+if+you+look+at+the+inside+of+the+car
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+mean+i+loved+it++i+wanted+to+see+it+i+rented+it+this+is+me+taking+a+picture+while+my+son+is+driving+and
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+inside+of+the+car+the+whole+design+is+fun++it+s+round+it+s+neat+the+controls+work+wonderfully++so+that+s+my+new+life+it+s+all+about+fun+i+really+have+the+feeling+that+pleasant+things+work+better
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+never+made+any+sense+to+me+until+i+finally+figured+out+look+i+m
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=going+to+put+a+plank+on+the+ground+so+imagine+i+have+a+plank+about+two+feet+wide+and+thirty+feet+long+and+i+m+going+to+walk+on+it++and+you+see+i+can+walk+on+it+without+looking+i+can+go+back+and+forth+and+i+can+jump+up+and+down
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=problem+now+i+m+going+to+put+the+plank+three+hundred+feet+in+the+air+and+i+m+not+going+to+go+near+it+thank+you
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=intense+fear+paralyzes+you+it+actually+affects+the+way+the+brain+works+so+paul+saffo+before+his+talk+said+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+didn+t+really+have+it+down+until+just+a+few+days+or+hours+before+the+talk+and+that+anxiety+was+really+helpful
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=him+to+focus+that+s+what+fear+and+anxiety+does++it+causes+you+to+be+what+s+called++depth+first+processing+to+focus++not+be+distracted+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+couldn+t+force+myself+across+that+now+some+people+can+circus+workers+steel+workers++but+it+really+changes+the+way+you+think
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+a+psychologist++alice+isen++did+this+wonderful+experiment+she+brought
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=d+bring+people+into+the+room+and+there+d+be+a+string+hanging+down+here+and+a+string+hanging+down+here+it+was+an+empty+room+except+for+a+table+with+a+bunch+of+crap+on+it+some+papers+and+scissors+and+stuff
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+she+d+bring+them+in+and+she+d+say
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+an+iq+test+and+it+determines+how+well+you+do+in+life++would+you+tie+those+two+strings
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+they+d+take+one+string+and+they+d+pull+it+over+here+and+they+couldn+t+reach+the+other+string
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=still+can+t+reach+it+and+basically+none+of+them+could+solve+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+bring+in+a+second+group+of+people+and+you+say
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=oh+before+we+start++i+got+this+box+of+candy++and+i+don+t+eat+candy+would+you+like+the+box+of+candy
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+turns+out+they+liked+it+and+it+made+them+happy+not+very+happy+but+a+little+bit+of+happy+and+guess+what+they+solved+the+problem
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+turns+out+that+when+you+re+anxious+you+squirt+neural+transmitters+in+the+brain+which+focuses+you+makes+you+depth+first+and+when+you+re+happy
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+we+call+positive+valence+you+squirt+dopamine+into+the+prefrontal+lobes+which+makes+you+a+breadth+first+problem+solver+you+re+more+susceptible+to+interruption+you+do
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+what+brainstorming+is+about+right+with
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=brainstorming+we+make+you+happy+we+play+games+and+we+say+no+criticism+and+you+get+all+these+weird+neat+ideas
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+in+fact+if+that+s+how+you+always+were+you+d+never+get+any+work+done+because+you+d+be+working+along+and+say+oh+i+got+a+new+way+of+doing+it
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+to+get+work+done+you+ve+got+to+set+a+deadline+right
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+ve+got+be+anxious+the+brain+works+differently+if+you+re+happy+things+work+better+because+you+re+more+creative+you+get+a+little+problem
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=through+biology+to+like+bright+colors+that+s+especially+good+that+mammals+and+primates+like+fruits+and+bright+plants+because+you+eat+the+fruit+and+you+thereby+spread+the+seed+there+s+an+amazing+amount+of+stuff+that+s+built+into+the+brain+we+dislike+bitter+tastes+we+dislike+loud+sounds
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+dislike+hot+temperatures+cold+temperatures++we+dislike+scolding+voices+we+dislike+frowning+faces++we+like+symmetrical+faces+etc+etc
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+that+s+the+visceral+level+in+design+you+can+express+visceral+in+lots+of+ways+like+the+choice+of+type+fonts+and+the+red+for+hot+exciting+or+the+one+thousand+nine+hundred+and+sixty+three+jaguar
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+actually+a+crummy+car++falls+apart+all+the
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+the+owners+love+it+and+it+s+beautiful+it+s+in+the+museum+of+modern+art+a+water+bottle
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+buy+it+because+of+the+bottle+not+because+of+the+water
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+when+people+are+finished+they+don+t+throw+it+away+they+keep+it+for+you+know+it+s+like+the+old+wine+bottles+you+keep+it+for+decoration+or+maybe+fill+it+with+water+again+which+proves+it+s+not+the+water
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+all+about+the+visceral+experience
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+middle+level+of+processing+is+the+behavioral+level+and+that+s+actually+where+most+of+our+stuff+gets+done+visceral+is+subconscious
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=behavioral+is+subconscious+you+re+unaware+of+it++almost+everything+we+do+is+subconscious+i+m+walking+around+the+stage+i+m+not+attending+to+the+control+of+my+legs+i+m+doing+a+lot+most+of+my+talk+is+subconscious+it+has+been+rehearsed+and+thought+about+a+lot
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=most+of+what+we+do+is+subconscious++automatic+behavior+skilled+behavior+is+subconscious++controlled+by+the+behavioral+side+and+behavioral+design+is+all+about
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+includes+usability++understanding+but+also+the+feel+and+heft++that+s+why+the+global+knives+are+so+neat+they+re+so+nicely+balanced+so+sharp+that+you+really+feel+you+re+in+control+of+the+cutting
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+just+driving+a++high+performance+sports+car+over+a+demanding+curb+again++feeling+that+you+are+in+complete+control+of+the+environment+or+the+sensual+feeling+this+is+a+kohler+shower
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+waterfall+shower+and+actually+all
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=those+knobs+beneath+are+also+showerheads+it+will+squirt+you+all+around+and+you+can+stay+in+that+shower+for+hours
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+not+waste+water+by+the+way+because+it+recirculates+the+same+dirty+water
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=laughter+or+this+this+is+a+really+neat+teapot+i+found+at+high+tea+at+the+four+seasons+hotel+in+chicago+it+s+a+ronnefeldt+tilting
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+kind+of+what+the+teapot+looks+like+but+the+way+you+use+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+you+lay+it+on+its+back+and+you+put+tea+in+and+then+you+fill+it+with+water
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+water+then+seeps+over+the+tea+and+the+tea+is+sitting
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+this+stuff+to+the+right+the+tea+is+to+the+right+of+this+line+there+s+a+little+ledge+inside+so+the+tea+is+sitting+there+and+the+water+is+filling+it+up+like+that+and+when+the+tea+is
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=tilt+it+and+that+means+the+tea+is+partially+covered+while+it+completes
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+brewing+and+when+it+s+finished+you+put+it+vertically+and+now+the+tea+is+you+remember+above+this+line
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+water+only+comes+to+here+and+so+it+keeps+the+tea+out+on+top+of+that+it+communicates+which+is+what+emotion+does+emotion+is+all+about+acting
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=emotion+is+really+about+acting+it+s+being+safe+in+the+world++cognition+is+about+understanding+the+world+emotion+is+about+interpreting+it+saying+good+bad+safe
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=dangerous++and+getting+us+ready+to+act+which+is+why+the+muscles+tense+or+relax
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+s+why+we+can+tell+the+emotion+of+somebody+else+because+their+muscles+are+acting+subconsciously
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=except+that+we+ve+evolved+to+make+the+facial+muscles+really+rich+with+emotion+well+this+has+emotions+if+you+like+because+it+signals+the+waiter+that+hey+i+m
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+waiter+can+come+by+and+say+would+you+like+more+water+it+s+kind+of+neat+what+a+wonderful+design
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+third+level+is+reflective
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+like+the+superego+it+s+a+little+part+of+the+brain+that+has+no+control+over+what+you+do+no+control+over+the+doesn+t+see+the+senses+doesn+t+control+the
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=muscles+it+looks+over+what+s+going+on+it+s+that+little+voice+in+your+head+that+s+watching+and+saying+that+s+good+that+s+bad
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=why+are+you+doing+that+i+don+t+understand+it+s+that+little+voice+in+your+head+that+s+the+seat+of+consciousness
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+s+a+great+reflective+product+owners+of+the+hummer+have+said+you+know+i+ve+owned+many+cars+in+my+life
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+sorts+of+exotic+cars+but+never+have+i+had+a+car+that+attracted+so+much+attention
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+want+a+more+positive+model+this+is+the+gm+car++and+the+reason+you+might+buy+it+now+is+because+you+care+about+the+environment+and+you+ll+buy+it+to+protect+the+environment+even+though+the+first+few+cars+are+going+to+be+really+expensive
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+not+perfected+but+that+s+reflective+design+as+well++or+an+expensive+watch++so+you+can+impress+people+oh
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=know+you+had+that+watch+as+opposed+to+this+one++which+is+a+pure+behavioral+watch+which+probably+keeps+better+time+than+the+$+thirteen+thousand+watch+i+just+showed+you
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+it+s+ugly++this+is+a+clear+don+norman+watch++and+what+s+neat+is+sometimes+you+pit+one+emotion+against+the+other+the+visceral
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fear+of+falling+against+the+reflective+state+saying+it+s+ok+it+s+ok+it+s+safe
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+safe+if+that+amusement+park+were+rusty+and+falling+apart+you+d+never+go+on+the+ride+so+it+s+pitting+one+against+the+other
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+jake+cress+is+this+furniture+maker
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+he+makes+this+unbelievable+set+of+furniture+and+this+is+his+chair+with+claw
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+poor+little+chair+has+lost+its+ball
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+s+trying+to+get+it+back+before+anybody+notices
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+s+so+neat+about+it+is+how+you+accept+that+story++and+that+s+what+s+nice+about+emotion
found 0 videos: []
error: no video is found.
sleep 3 seconds to avoid blocking
------<611>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DonTapscott_2012G.stm
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=denotes+opportunity+and+possibilities+open+ended+open+hearth+open+source+open+door+policy+open
found 1 videos: [['/talks/don_tapscott_four_principles_for_the_open_world', '2012']]
selected: /talks/don_tapscott_four_principles_for_the_open_world
sleep 4 seconds to avoid blocking
------<612>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DonTapscott_2016T.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+technology+likely+to+have+the+greatest+impact+on+the+next+few+decades+has+arrived
found 1 videos: [['/talks/don_tapscott_how_the_blockchain_is_changing_money_and_business', '2016']]
selected: /talks/don_tapscott_how_the_blockchain_is_changing_money_and_business
sleep 3 seconds to avoid blocking
------<613>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DorisKearnsGoodwin_2008.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+have+spent+my+life+looking+into+the+lives+of+presidents+who+are+no+longer+alive
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=waking+up+with+abraham+lincoln+in+the+morning+thinking+of+franklin+roosevelt+when+i+went+to+bed+at+night
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+when+i+try+and+think+about+what+i+ve+learned+about+the+meaning+in+life+my+mind+keeps+wandering+back+to+a+seminar+that+i+took+when+i
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+a+graduate+student+at+harvard
found 7 videos: [['/talks/doris_kearns_goodwin_lessons_from_past_presidents', '2008'], ['/talks/e_o_wilson_my_wish_build_the_encyclopedia_of_life', '2007'], ['/talks/bill_strickland_rebuilding_a_neighborhood_with_beauty_dignity_hope', '2008'], ['/talks/paul_rothemund_dna_folding_in_detail', '2008'], ['/talks/pawan_sinha_how_brains_learn_to_see', '2010'], ['/talks/juan_enriquez_the_next_species_of_human', '2009'], ['/talks/paul_sereno_digging_up_dinosaurs', '2009']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+the+great+psychologist+erik+erikson+he+taught+us+that+the+richest+and+fullest+lives+attempt+to+achieve+an+inner+balance
found 1 videos: [['/talks/doris_kearns_goodwin_lessons_from_past_presidents', '2008']]
selected: /talks/doris_kearns_goodwin_lessons_from_past_presidents
sleep 4 seconds to avoid blocking
------<614>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DorisKimSung_2012X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=basically+had+to+roll+down+the+window+it+was+usually+too+hot+too+stuffy+or+just+too+smelly
found 1 videos: [['/talks/doris_kim_sung_metal_that_breathes', '2012']]
selected: /talks/doris_kim_sung_metal_that_breathes
sleep 1 seconds to avoid blocking
------<615>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DorothyRoberts_2015P.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fifteen+years+ago++i+volunteered+to+participate+in+a+research+study+that+involved+a+genetic+test
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+arrived+at+the+clinic+to+be+tested+i+was+handed+a+questionnaire
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+the+very+first+questions+asked+me+to+check+a+box+for+my+race
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=black++asian+or+native+american++i+wasn+t+quite+sure+how+to+answer+the+question
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+it+aimed+at+measuring+the+diversity+of+research+participants++social+backgrounds
found 1 videos: [['/talks/dorothy_roberts_the_problem_with_race_based_medicine', '2016']]
selected: /talks/dorothy_roberts_the_problem_with_race_based_medicine
sleep 1 seconds to avoid blocking
------<616>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DrewBerry_2011X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+show+you+are
found 20 videos: [['/talks/shea_hembrey_how_i_became_100_artists', '2011'], ['/talks/the_lxd_in_the_internet_age_dance_evolves', '2010'], ['/talks/jason_fried_why_work_doesn_t_happen_at_work', '2010'], ['/talks/ben_goldacre_battling_bad_science', '2011'], ['/talks/golan_levin_art_that_looks_back_at_you', '2009'], ['/talks/jay_silver_hack_a_banana_make_a_keyboard', '2013'], ['/talks/raghava_kk_what_s_your_200_year_plan', '2012'], ['/talks/james_randi_homeopathy_quackery_and_fraud', '2010'], ['/talks/lauren_zalaznick_the_conscience_of_television', '2011'], ['/talks/skylar_tibbits_the_emergence_of_4d_printing', '2013'], ['/talks/eric_topol_the_wireless_future_of_medicine', '2010'], ['/talks/paul_zak_trust_morality_and_oxytocin', '2011'], ['/talks/rory_sutherland_life_lessons_from_an_ad_man', '2009'], ['/talks/anthony_atala_growing_new_organs', '2010'], ['/talks/john_maeda_my_journey_in_design', '2009'], ['/talks/dennis_hong_my_seven_species_of_robot_and_how_we_created_them', '2010'], ['/talks/harsha_bhogle_the_rise_of_cricket_the_rise_of_india', '2010'], ['/talks/emily_levine_a_theory_of_everything', '2009'], ['/talks/charles_hazlewood_trusting_the_ensemble', '2011'], ['/talks/cameron_russell_looks_aren_t_everything_believe_me_i_m_a_model', '2013']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+astonishing+molecular+machines+that+create+the+living+fabric+of+your+body++now+molecules+are+really+really+tiny
found 1 videos: [['/talks/drew_berry_animations_of_unseeable_biology', '2012']]
selected: /talks/drew_berry_animations_of_unseeable_biology
sleep 1 seconds to avoid blocking
------<617>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DrewCurtis_2012.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+a+company+called+gooseberry+natural+resources
found 1 videos: [['/talks/drew_curtis_how_i_beat_a_patent_troll', '2012']]
selected: /talks/drew_curtis_how_i_beat_a_patent_troll
sleep 2 seconds to avoid blocking
------<618>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DrewDudley_2010X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=just+start+by+asking+everyone+a+question+how+many+of+you+are+completely+comfortable+with+calling+yourselves+a+leader
found 1 videos: [['/talks/drew_dudley_everyday_leadership', '2012']]
selected: /talks/drew_dudley_everyday_leadership
sleep 1 seconds to avoid blocking
------<619>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DrewDudley_2011X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=many+of+you+are+completely+comfortable+with+calling+yourselves+a+leader
found 1 videos: [['/talks/drew_dudley_everyday_leadership', '2012']]
selected: /talks/drew_dudley_everyday_leadership
sleep 5 seconds to avoid blocking
------<620>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DrHawaAbdiandDrDeqoMohamed_2010W.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+was+no+job+no+food+children+most+of+them+became+very+malnourished+like+this
found 2 videos: [['/talks/hawa_abdi_deqo_mohamed_mother_and_daughter_doctor_heroes', '2011'], ['/talks/laurie_garrett_lessons_from_the_1918_flu', '2009']]
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+you+know+always+in+a+civil+war+the+ones+affected+most+are+the+women+and+children+so+our
found 2 videos: [['/talks/hawa_abdi_deqo_mohamed_mother_and_daughter_doctor_heroes', '2011'], ['/talks/kavita_ramdas_radical_women_embracing_tradition', '2010']]
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+are+in+our+backyard+it+s+our+home+we+welcome+them+that+s+the+camp+that+we+have+in+now+ninety+thousand+people+where+seventy+five+percent+of+them+are+women+and+children+pat+mitchell+and+this+is+your+hospital
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+the+inside+ha+we+are+doing+c+sections+and+different+operations+because+people+need+some+help
found 1 videos: [['/talks/hawa_abdi_deqo_mohamed_mother_and_daughter_doctor_heroes', '2011']]
selected: /talks/hawa_abdi_deqo_mohamed_mother_and_daughter_doctor_heroes
sleep 1 seconds to avoid blocking
------<621>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DustinYellin_2014S.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+raised+by+lesbians+in+the+mountains+and+i+sort+of+came+like+a+forest+gnome+to+new+york+city+a+while+back+really+messed+with+my+head+but+i
found 1 videos: [['/talks/dustin_yellin_a_journey_through_the_mind_of_an_artist', '2015']]
selected: /talks/dustin_yellin_a_journey_through_the_mind_of_an_artist
sleep 3 seconds to avoid blocking
------<622>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/DyandeNapoli_2011X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+can+remember+i+have+felt+a+very+deep+connection+to+animals+and+to+the+ocean
found 3 videos: [['/talks/dyan_denapoli_the_great_penguin_rescue', '2011'], ['/talks/mike_degruy_hooked_by_an_octopus', '2012'], ['/talks/sugata_mitra_the_child_driven_education', '2010']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+at+this+age+my+personal+idol+was+flipper+the+dolphin
found 1 videos: [['/talks/dyan_denapoli_the_great_penguin_rescue', '2011']]
selected: /talks/dyan_denapoli_the_great_penguin_rescue
sleep 4 seconds to avoid blocking
------<623>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EamesDemetrios_2007.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=charles+and+ray+were+a+team++they+were+husband+and+wife+despite+the+new+york+times++and+vanity+fair+s+best+efforts+recently+they+re+not+brothers
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+were+a+lot+of+fun+you+know+ray+was+the+one+who+wore+the+ampersands+in+the+family
found 1 videos: [['/talks/eames_demetrios_the_design_genius_of_charles_ray_eames', '2009']]
selected: /talks/eames_demetrios_the_design_genius_of_charles_ray_eames
sleep 5 seconds to avoid blocking
------<624>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EbenBayer_2010G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+to+spend+a+few+minutes+with+you+folks+today+imagining+what+our+planet+might+look+like+in+a+thousand+years
found 1 videos: [['/talks/eben_bayer_are_mushrooms_the_new_plastic', '2010']]
selected: /talks/eben_bayer_are_mushrooms_the_new_plastic
sleep 5 seconds to avoid blocking
------<625>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EdBoyden_2011.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=your+day+for+a+second+you+woke+up+felt+fresh+air+on+your+face+as+you+walked+out+the+door++encountered+new+colleagues+and+had+great+discussions+and+felt+in+awe+when+you+found+something+new
found 1 videos: [['/talks/ed_boyden_a_light_switch_for_neurons', '2011']]
selected: /talks/ed_boyden_a_light_switch_for_neurons
sleep 3 seconds to avoid blocking
------<626>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EdBoyden_2016T.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=baby+diapers+have+interesting+properties+they+can+swell+enormously+when+you+add+water+to+them+an+experiment+done+by+millions+of+kids+every+day
found 1 videos: [['/talks/ed_boyden_a_new_way_to_study_the_brain_s_invisible_secrets', '2016']]
selected: /talks/ed_boyden_a_new_way_to_study_the_brain_s_invisible_secrets
sleep 1 seconds to avoid blocking
------<627>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EddieObeng_2012G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+past+six+months+i+ve+spent+my+time+traveling++i+think+i+ve+done+sixty+thousand
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=miles++but+without+leaving+my+desk+and+the+reason+i+can+do+that+is+because+i+m+actually+two
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+look+like+one+person+but+i+m+two+people+i+m+eddie+who+is+here++and+at+the+same+time+my+alter+ego+is+a+big+green+boxy+avatar+nicknamed+cyber+frank+so
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+what+i+spend+my+time+doing+i+d+like+to+start+if+it+s+possible+with+a+test++because+i+do+business+stuff+so+it+s+important+that+we+focus+on+outcomes
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+i+struggled+because+i+was+thinking+to+myself+what+should+i+talk+what+should+i+do+it+s+a+ted+audience
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+just+hope+i+ve+got+the+level+of+difficulty+right++so+let+s+just+walk+our+way+through+this+please+could+you+work+this+through+with+me+you+can+shout+out+the+answer+if+you+like+the+question+is+which+of+these+horizontal+lines+is+longer+the+answer+is+audience+the+same+eddie+obeng
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+same++no+they+re+not+the+same
found 15 videos: [['/talks/gero_miesenboeck_re_engineering_the_brain', '2010'], ['/talks/gregoire_courtine_the_paralyzed_rat_that_walked', '2013'], ['/talks/steve_ramirez_and_xu_liu_a_mouse_a_laser_beam_a_manipulated_memory', '2013'], ['/talks/chrystia_freeland_the_rise_of_the_new_global_super_rich', '2013'], ['/talks/norman_spack_how_i_help_transgender_teens_become_who_they_want_to_be', '2014'], ['/talks/tyrone_hayes_penelope_jagessar_chaffer_the_toxic_baby', '2012'], ['/talks/ellen_dunham_jones_retrofitting_suburbia', '2010'], ['/talks/natalie_jeremijenko_the_art_of_the_eco_mindshift', '2010'], ['/talks/bruce_feiler_the_council_of_dads', '2011'], ['/talks/amy_webb_how_i_hacked_online_dating', '2013'], ['/talks/vinay_venkatraman_technology_crafts_for_the_digitally_underserved', '2012'], ['/talks/roger_ebert_remaking_my_voice', '2011'], ['/talks/daniel_wolpert_the_real_reason_for_brains', '2011'], ['/talks/mustafa_akyol_faith_versus_tradition_in_islam', '2011'], ['/talks/ramanan_laxminarayan_the_coming_crisis_in_antibiotics', '2014']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+re+not+the+same++the+top+one+is+ten+percent+longer+than+the+bottom+one++so+why+did+you+tell+me+they+were+the+same++do+you+remember
found 1 videos: [['/talks/chrystia_freeland_the_rise_of_the_new_global_super_rich', '2013']]
selected: /talks/chrystia_freeland_the_rise_of_the_new_global_super_rich
sleep 5 seconds to avoid blocking
------<628>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EddiReader_KiteflyersHill_2004.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+about+a+place+in+london+called+kiteflyer+s+hill+where+i+used+to+go+and+spend+hours+going+when+is+he+coming
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=written+by+a+guy+called+martin+evan++actually+for+me
found 1 videos: [['/talks/dan_dennett_let_s_teach_religion_all_religion_in_schools', '2006']]
selected: /talks/dan_dennett_let_s_teach_religion_all_religion_in_schools
sleep 2 seconds to avoid blocking
------<629>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EddyCartaya_2013Y.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+how+many+of+you+have+ever+been+in+a+cave+before
found 11 videos: [['/talks/stephen_cave_the_4_stories_we_tell_ourselves_about_death', '2013'], ['/talks/eddy_cartaya_my_glacier_cave_discoveries', '2013'], ['/talks/mark_forsyth_what_s_a_snollygoster_a_short_lesson_in_political_speak', '2012'], ['/talks/svante_paabo_dna_clues_to_our_inner_neanderthal', '2011'], ['/talks/genevieve_von_petzinger_why_are_these_32_symbols_found_in_ancient_caves_all_over_europe', '2015'], ['/talks/billie_jean_king_this_tennis_icon_paved_the_way_for_women_in_sports', '2015'], ['/talks/laurel_braitman_depressed_dogs_cats_with_ocd_what_animal_madness_means_for_us_humans', '2014'], ['/talks/elyn_saks_a_tale_of_mental_illness_from_the_inside', '2012'], ['/talks/bruce_aylward_humanity_vs_ebola_how_we_could_win_a_terrifying_war', '2015'], ['/talks/david_puttnam_does_the_media_have_a_duty_of_care', '2014'], ['/talks/jeff_hancock_the_future_of_lying', '2012']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=okay+a+few+of+you+when+you+think+of+a+cave+most+of+you+think+of+a+tunnel+going+through+solid+rock+and+in+fact+that+s+how+most+caves+are+around+this+half+of+the+country+most+of+your+caves+are+made
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+limestone+back+where+i+m+from+most+of+our+caves+are+made+of+lava+rock++because+we+have+a+lot+of+volcanoes+out+there++but+the+caves+i+want+to+share+with+you+today+are+made+completely+of+ice+specifically+glacier
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ice++that+s+formed+in+the+side+of+the+tallest+mountain+in+the+state+of+oregon+called+mount+hood
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=exciting+thing+for+a+cave+explorer+is+to+be+the+first+one+to+make+a+map+of+a+cave+now+these+days+with+so+many+people+hiking+around+it+s+pretty+hard+to+find+a+new+cave+so+you+can+imagine+how+excited+we+were+to+find+three
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=new+caves+within+sight+of+oregon+s+largest+city+and+realize+that+they+had+never+been+explored+or+mapped+before
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+no+one+had+ever+seen+or+gone+to+before
found 18 videos: [['/talks/marc_kushner_why_the_buildings_of_the_future_will_be_shaped_by_you', '2015'], ['/talks/james_flynn_why_our_iq_levels_are_higher_than_our_grandparents', '2013'], ['/talks/margaret_gould_stewart_how_giant_websites_design_for_you_and_a_billion_others_too', '2014'], ['/talks/andrew_solomon_love_no_matter_what', '2013'], ['/talks/diana_nyad_never_ever_give_up', '2013'], ['/talks/hannah_fry_is_life_really_that_complex', '2012'], ['/talks/cynthia_kenyon_experiments_that_hint_of_longer_lives', '2011'], ['/talks/morgan_spurlock_the_greatest_ted_talk_ever_sold', '2011'], ['/talks/verna_myers_how_to_overcome_our_biases_walk_boldly_toward_them', '2014'], ['/talks/sarah_jones_one_woman_five_characters_and_a_sex_lesson_from_the_future', '2015'], ['/talks/leana_wen_what_your_doctor_won_t_disclose', '2014'], ['/talks/bernie_krause_the_voice_of_the_natural_world', '2013'], ['/talks/young_ha_kim_be_an_artist_right_now', '2013'], ['/talks/tracy_chevalier_finding_the_story_inside_the_painting', '2012'], ['/talks/vincent_cochetel_i_was_held_hostage_for_317_days_here_s_what_i_thought_about', '2015'], ['/talks/martine_rothblatt_my_daughter_my_wife_our_robot_and_the_quest_for_immortality', '2015'], ['/talks/severine_autesserre_to_solve_mass_violence_look_to_locals', '2015'], ['/talks/alex_gendler_can_you_solve_the_famously_difficult_green_eyed_logic_puzzle', '2015']]
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+those+of+you+who+have+ever+seen+or+touched+snow+you+know+that+it+s+really+light+because+it+s+just+a+bunch+of+tiny+ice+crystals+clumped+together+and+it+s+mostly+air
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+squish+a+handful+of+snow+to+make+a+snowball+it+gets+really+small+hard+and+dense+well+on+a+mountain+like+hood+where+it+snows+over+twenty+feet+a+year++it+crushes+the+air+out+of+it+and+gradually+forms+it+into+hard+blue+ice
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+each+year+more+and+more+ice+stacks+up+on+top+of+it+and+eventually+it+gets+so+heavy+that+it+starts+to+slide+down+the+mountain+under+its+own+weight++forming+a+slow+moving+river+of+ice
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+ice+packed+like+that+starts+to+move++we+call+it+a+glacier+and+we+give+it+a+name+the+name+of+the+glacier+these+caves+are+formed+in+is+the+sandy+glacier
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=forming+big+networks+of+caves+sometimes+going+all+the+way+down+to+the+underlying+bedrock+now+the+crazy+thing+about+glacier+caves
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+that+each+year++new+tunnels+form+different+waterfalls+pop+up+or+move+around+from+place+to+place+inside+the+cave++warm+water+from+the+top+of+the+ice+is+boring+its+way+down
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+warm+air+from+below+the+mountain+actually+rises+up+gets+into+the+cave+and+melts+the+ceilings+back+taller+and+taller
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=weirdest+thing+about+glacier+caves+is+that+the+entire+cave+is+moving+because+it+s+formed+inside+a+block+of+ice+the+size+of+a+small+city+that+s+slowly+sliding+down+the+mountain+now
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+brent+mcgregor++my+cave+exploration+partner
found 1 videos: [['/talks/eddy_cartaya_my_glacier_cave_discoveries', '2013']]
selected: /talks/eddy_cartaya_my_glacier_cave_discoveries
sleep 5 seconds to avoid blocking
------<630>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EdGavagan_2012P.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=wake+up+in+the+morning++you+get+dressed+put+on+your+shoes+you+head+out+into+the+world
found 2 videos: [['/talks/ed_gavagan_a_story_about_knots_and_surgeons', '2012'], ['/talks/sting_how_i_started_writing_songs_again', '2014']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+plan+on+coming+back+getting+undressed+going+to+bed
found 1 videos: [['/talks/ed_gavagan_a_story_about_knots_and_surgeons', '2012']]
selected: /talks/ed_gavagan_a_story_about_knots_and_surgeons
sleep 4 seconds to avoid blocking
------<631>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EdiRama_2012X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+my+previous+life++i+was+an+artist+i+still+paint++i+love+art++i+love+the+joy+that+color+can+give
found 1 videos: [['/talks/edi_rama_take_back_your_city_with_paint', '2013']]
selected: /talks/edi_rama_take_back_your_city_with_paint
sleep 4 seconds to avoid blocking
------<632>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EdithWidder_2010Z.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+protect+what+they+love+i+want+to+share+with+you+today+what+i+love+most+in+the+ocean++and+that+s+the+incredible+number+and+variety+of+animals+in+it+that+make
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+addiction+began+with+this+strange+looking+diving+suit+called+wasp+that+s+not+an+acronym+just+somebody+thought+it+looked+like+the+insect+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+actually+developed+for+use+by+the+offshore+oil+industry+for+diving+on+oil+rigs+down+to+a+depth+of+two+thousand+feet
found 1 videos: [['/talks/edith_widder_glowing_life_in_an_underwater_world', '2010']]
selected: /talks/edith_widder_glowing_life_in_an_underwater_world
sleep 3 seconds to avoid blocking
------<633>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EdithWidder_2011.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+take+you+on+a+trip+to+an+alien+world++and+it+s+not+a+trip+that+requires
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=light+years+of+travel++but+it+s+to+a+place+where
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+the+animals+in+our+ocean
found 13 videos: [['/talks/david_gallo_deep_ocean_mysteries_and_wonders', '2012'], ['/talks/paul_snelgrove_a_census_of_the_ocean', '2012'], ['/talks/enric_sala_glimpses_of_a_pristine_ocean', '2010'], ['/talks/stephen_palumbi_hidden_toxins_in_the_fish_we_eat', '2010'], ['/talks/peter_tyack_the_intriguing_sound_of_marine_mammals', '2010'], ['/talks/rob_dunbar_discovering_ancient_climates_in_oceans_and_ice', '2010'], ['/talks/mike_degruy_hooked_by_an_octopus', '2012'], ['/talks/barbara_block_tagging_tuna_in_the_deep_ocean', '2010'], ['/talks/edith_widder_the_weird_wonderful_world_of_bioluminescence', '2011'], ['/talks/edith_widder_glowing_life_in_an_underwater_world', '2010'], ['/talks/jim_toomey_learning_from_sherman_the_shark', '2010'], ['/talks/charles_moore_seas_of_plastic', '2009'], ['/talks/bernie_krause_the_voice_of_the_natural_world', '2013']]
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+spent+most+of+my+career+studying+this+phenomenon+called+bioluminescence
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+study+it+because+i+think+understanding+it+is+critical+to+understanding+life+in+the+ocean+where+most+bioluminescence+occurs
found 1 videos: [['/talks/edith_widder_the_weird_wonderful_world_of_bioluminescence', '2011']]
selected: /talks/edith_widder_the_weird_wonderful_world_of_bioluminescence
sleep 5 seconds to avoid blocking
------<634>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EdithWidder_2013.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+kraken+a+beast+so+terrifying+it+was+said+to+devour+men+and+ships+and+whales++and+so+enormous+it+could+be+mistaken+for+an+island
found 1 videos: [['/talks/edith_widder_how_we_found_the_giant_squid', '2013']]
selected: /talks/edith_widder_how_we_found_the_giant_squid
sleep 4 seconds to avoid blocking
------<635>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EduardoBriceno_2016X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=most+of+us+go+through+life+trying+to+do+our+best+at+whatever+we+do+whether+it+s+our+job++family+school+or+anything+else
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+feel+that+way+i+try+my+best+but+some+time+ago
found 18 videos: [['/talks/franklin_leonard_how_i_accidentally_changed_the_way_movies_get_made_apr_2018', '2018'], ['/talks/negin_farsad_a_highly_scientific_taxonomy_of_haters', '2016'], ['/talks/stuart_duncan_how_i_use_minecraft_to_help_kids_with_autism', '2018'], ['/talks/emily_levine_how_i_made_friends_with_reality', '2018'], ['/talks/eduardo_briceno_how_to_get_better_at_the_things_you_care_about', '2017'], ['/talks/jose_miguel_sokoloff_how_christmas_lights_helped_guerrillas_put_down_their_guns', '2014'], ['/talks/khadija_gbla_my_mother_s_strange_definition_of_empowerment', '2015'], ['/talks/juno_mac_the_laws_that_sex_workers_really_want', '2016'], ['/talks/lyra_mckee_how_uncomfortable_conversations_can_save_lives', '2017'], ['/talks/anne_lamott_12_truths_i_learned_from_life_and_writing', '2017'], ['/talks/stephen_burt_why_people_need_poetry', '2014'], ['/talks/simone_giertz_why_you_should_make_useless_things', '2018'], ['/talks/adam_carroll_what_playing_monopoly_with_real_money_taught_me_about_my_kids_and_humanity', '2018'], ['/talks/alex_honnold_how_i_climbed_a_3_000_foot_vertical_cliff_without_ropes', '2018'], ['/talks/abe_davis_new_video_technology_that_reveals_an_object_s_hidden_properties', '2015'], ['/talks/adam_de_la_zerda_we_can_start_winning_the_war_against_cancer', '2016'], ['/talks/tim_harford_how_frustration_can_make_us_more_creative', '2016'], ['/talks/sian_leah_beilock_why_we_choke_under_pressure_and_how_to_avoid_it', '2018']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+came+to+a+realization+that+i+wasn+t+getting+much+better+at+the+things+i+cared+most+about++whether+it+was+being+a+husband+or+a+friend
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+a+professional+or+teammate++and+i+wasn+t+improving+much+at+those+things+even+though+i+was+spending+a+lot+of+time+working+hard+at+them
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+since+realized+from+conversations+i+ve+had+and+from+research+that+this+stagnation+despite+hard+work+turns+out+to+be
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+to+share+with+you+some+insights+into+why+that+is+and+what+we+can+all+do+about+it
found 14 videos: [['/talks/sebastien_de_halleux_how_a_fleet_of_wind_powered_drones_is_changing_our_understanding_of_the_ocean', '2018'], ['/talks/tricia_wang_the_human_insights_missing_from_big_data', '2017'], ['/talks/jennifer_golbeck_your_social_media_likes_expose_more_than_you_think', '2014'], ['/talks/the_ted_interview_sir_ken_robinson_still_wants_an_education_revolution', '2018'], ['/talks/eduardo_briceno_how_to_get_better_at_the_things_you_care_about', '2017'], ['/talks/gretchen_carlson_david_brooks_political_common_ground_in_a_polarized_united_states', '2017'], ['/talks/chip_conley_what_baby_boomers_can_learn_from_millennials_at_work_and_vice_versa', '2018'], ['/talks/siddharthan_chandran_can_the_damaged_brain_repair_itself', '2014'], ['/talks/pico_iyer_the_art_of_stillness', '2014'], ['/talks/bill_gross_the_single_biggest_reason_why_start_ups_succeed', '2015'], ['/talks/alexander_wagner_what_really_motivates_people_to_be_honest_in_business', '2017'], ['/talks/lorrie_faith_cranor_what_s_wrong_with_your_pa_w0rd', '2014'], ['/talks/chip_kidd_the_art_of_first_impressions_in_design_and_life', '2015'], ['/talks/russ_altman_what_really_happens_when_you_mix_medications', '2016']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+i+ve+learned+is+that+the+most+effective+people+and+teams+in+any+domain+do+something+we+can+all+emulate
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+go+through+life+deliberately+alternating+between+two+zones
found 1 videos: [['/talks/eduardo_briceno_how_to_get_better_at_the_things_you_care_about', '2017']]
selected: /talks/eduardo_briceno_how_to_get_better_at_the_things_you_care_about
sleep 3 seconds to avoid blocking
------<636>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EduardoPaes_2012.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=great+honor+to+be+here+it+s+a+great+honor+to+be+here+talking+about+cities+talking+about
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+future+of+cities+it+s+great+to+be+here+as+a+mayor++i+really+do+believe+that+mayors
found 2 videos: [['/talks/enrique_penalosa_why_buses_represent_democracy_in_action', '2013'], ['/talks/majora_carter_3_stories_of_local_eco_entrepreneurship', '2010']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+the+political+position+to+really+change+people+s+lives+that+s+the+place+to+be
found 1 videos: [['/talks/karima_bennoune_when_people_of_muslim_heritage_challenge_fundamentalism', '2014']]
selected: /talks/karima_bennoune_when_people_of_muslim_heritage_challenge_fundamentalism
sleep 2 seconds to avoid blocking
------<637>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EdUlbrich_2009.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+here+today+representing+a+team+of+artists+and+technologists+and+filmmakers
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+worked+together+on+a+remarkable+film+project+for+the+last+four+years
found 7 videos: [['/talks/ed_ulbrich_how_benjamin_button_got_his_face', '2009'], ['/talks/paul_maccready_nature_vs_humans', '2008'], ['/talks/deb_roy_the_birth_of_a_word', '2011'], ['/talks/david_agus_a_new_strategy_in_the_war_on_cancer', '2010'], ['/talks/joshua_prince_ramus_building_a_theater_that_remakes_itself', '2010'], ['/talks/stuart_brown_play_is_more_than_just_fun', '2009'], ['/talks/billy_graham_on_technology_and_faith', '2008']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+along+the+way+they+created+a+breakthrough+in+computer+visualization++so+i+want+to+show+you+a+clip+of+the+film+now+hopefully+it+won+t+stutter
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+if+we+did+our+jobs+well++you+won+t+know+that+we+were+even+involved
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+were+many+changes+some+you+could
found 7 videos: [['/talks/dan_gilbert_why_we_make_bad_decisions', '2008'], ['/talks/beau_lotto_optical_illusions_show_how_we_see', '2009'], ['/talks/jamais_cascio_tools_for_a_better_world', '2009'], ['/talks/tim_ferriss_smash_fear_learn_anything', '2009'], ['/talks/carl_safina_the_oil_spill_s_unseen_villains_and_victims', '2010'], ['/talks/anil_gupta_india_s_hidden_hotbeds_of_invention', '2010'], ['/talks/morgan_spurlock_the_greatest_ted_talk_ever_sold', '2011']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+you+couldn+t+hair+started+growing+in+all+sorts+of+places+along+with+other+things
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+felt+pretty+good+considering+ed+ulbrich
found 1 videos: [['/talks/ed_ulbrich_how_benjamin_button_got_his_face', '2009']]
selected: /talks/ed_ulbrich_how_benjamin_button_got_his_face
sleep 2 seconds to avoid blocking
------<638>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EdwardBurtynsky_2005.stm
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=three+wishes+and+all+the+ideas+will+start+to+percolate+up++i+think+everybody+should+do+it+think+that+you+ve+got+three+wishes+and+what+would+you+do+it+s+actually+a+great+exercise+to+to+really
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=drill+down+to+the+things+that+you+feel+are+important+and+really+reflect+on+on+the+world+around+us+and+thinking+that+can+an+individual+actually
found 1 videos: [['/talks/edward_burtynsky_my_wish_manufactured_landscapes_and_green_education', '2006']]
selected: /talks/edward_burtynsky_my_wish_manufactured_landscapes_and_green_education
sleep 1 seconds to avoid blocking
------<639>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EdwardBurtynsky_2009G.stm
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+worked+in+mines++and+i+realized+that+this+was+a+world+unseen++and+i+wanted+through+color+and+large+format+cameras+and+very+large+prints
found 1 videos: [['/talks/edward_burtynsky_photographing_the_landscape_of_oil', '2009']]
selected: /talks/edward_burtynsky_photographing_the_landscape_of_oil
sleep 3 seconds to avoid blocking
------<640>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EdwardSnowden_2014.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+rights+of+citizens+the+future+of+the+internet
found 14 videos: [['/talks/edward_snowden_here_s_how_we_take_back_the_internet', '2014'], ['/talks/rebecca_mackinnon_we_can_fight_terror_without_sacrificing_our_rights', '2016'], ['/talks/michael_anti_behind_the_great_firewall_of_china', '2012'], ['/talks/don_tapscott_how_the_blockchain_is_changing_money_and_business', '2016'], ['/talks/mikko_hypponen_three_types_of_online_attack', '2012'], ['/talks/richard_ledgett_the_nsa_responds_to_edward_snowden_s_ted_talk', '2014'], ['/talks/robert_muggah_how_to_protect_fast_growing_cities_from_failing', '2015'], ['/talks/ben_wellington_how_we_found_the_worst_place_to_park_in_new_york_city_using_big_data', '2015'], ['/talks/joi_ito_want_to_innovate_become_a_now_ist', '2014'], ['/talks/aleph_molinari_let_s_bridge_the_digital_divide', '2012'], ['/talks/paul_conneally_how_mobile_phones_power_disaster_relief', '2012'], ['/talks/shai_reshef_an_ultra_low_cost_college_degree', '2014'], ['/talks/susan_etlinger_what_do_we_do_with_all_this_big_data', '2014'], ['/talks/glenn_greenwald_why_privacy_matters', '2014']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+would+like+to+welcome+to+the+ted+stage+the+man+behind+those+revelations+ed+snowden
found 1 videos: [['/talks/edward_snowden_here_s_how_we_take_back_the_internet', '2014']]
selected: /talks/edward_snowden_here_s_how_we_take_back_the_internet
sleep 2 seconds to avoid blocking
------<641>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EdwardTenner_2011.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+didn+t+always+love+unintended+consequences+but+i+ve+really+learned+to+appreciate+them
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+learned+that+they+re+really+the+essence+of+what+makes+for+progress++even+when+they+seem+to+be+terrible++and+i+d+like+to+review+just+how+unintended+consequences
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+s+go+to+forty+thousand+years+before+the+present
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+the+time+of+the+cultural+explosion+when
found 7 videos: [['/talks/matt_ridley_when_ideas_have_sex', '2010'], ['/talks/liz_coleman_a_call_to_reinvent_liberal_arts_education', '2009'], ['/talks/charles_leadbeater_education_innovation_in_the_slums', '2010'], ['/talks/jason_mccue_terrorism_is_a_failed_brand', '2012'], ['/talks/edward_tenner_unintended_consequences', '2011'], ['/talks/mark_pagel_how_language_transformed_humanity', '2011'], ['/talks/taryn_simon_photographs_of_secret_sites', '2009']]
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=technology++so+many+of+the+things+that+we+re+enjoying+today+so+many+of+the+things+that+are+being+demonstrated+at+ted+were+born
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=anthropologist+randall+white+has+made+a+very+interesting+observation++that+if+our+ancestors+forty+thousand+years+ago
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=had+been+able+to+see+what+they+had+done++they+wouldn+t+have+really+understood+it++they+were+responding
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+immediate+concerns++they+were+making+it+possible+for+us+to+do+what+they+do+and+yet
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+didn+t+really+understand+how+they+did+it+now+let+s+advance
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+ten+thousand+years+before+the+present
found 13 videos: [['/talks/gregory_stock_to_upgrade_is_human', '2009'], ['/talks/thomas_pogge_medicine_for_the_99_percent', '2011'], ['/talks/mark_roth_suspended_animation_is_within_our_grasp', '2010'], ['/talks/svante_paabo_dna_clues_to_our_inner_neanderthal', '2011'], ['/talks/john_la_grou_a_plug_for_smart_power_outlets', '2009'], ['/talks/shlomo_benartzi_saving_for_tomorrow_tomorrow', '2012'], ['/talks/matt_killingsworth_want_to_be_happier_stay_in_the_moment', '2012'], ['/talks/p_w_singer_military_robots_and_the_future_of_war', '2009'], ['/talks/rachel_sussman_the_world_s_oldest_living_things', '2010'], ['/talks/james_balog_time_lapse_proof_of_extreme_ice_loss', '2009'], ['/talks/denis_dutton_a_darwinian_theory_of_beauty', '2010'], ['/talks/luis_von_ahn_massive_scale_online_collaboration', '2011'], ['/talks/ray_kurzweil_a_university_for_the_coming_singularity', '2009']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+is+when+it+really+gets+interesting+what+about+the+domestication+of+grains++what+about+the+origins+of+agriculture
found 1 videos: [['/talks/edward_tenner_unintended_consequences', '2011']]
selected: /talks/edward_tenner_unintended_consequences
sleep 5 seconds to avoid blocking
------<642>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EdYong_2014.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+herd+of+wildebeests+a+shoal+of+fish+a+flock+of+birds+many+animals+gather+in+large+groups+that+are+among+the+most+wonderful+spectacles+in+the+natural+world+but
error: request timeout
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+common+answers+include+things+like+seeking+safety+in+numbers+or+hunting+in+packs
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+gathering+to+mate+or+breed
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+all+of+these+explanations+while+often+true++make+a+huge+assumption+about+animal+behavior+that+the+animals+are+in+control+of+their+own+actions+that+they+are+in+charge+of+their+bodies
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+is+often+not+the+case
error: request timeout
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+probably+know+it+better+as+a+sea+monkey
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+small+and+it+typically+lives+alone+but+it+can+gather+in+these+large+red+swarms+that+span+for+meters
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+these+form+because+of+a+parasite+these+shrimp+are+infected+with+a+tapeworm+a+tapeworm+is+effectively+a+long+living+gut+with+genitals+at+one+end+and+a+hooked+mouth+at+the+other+as+a+freelance+journalist+i+sympathize
found 1 videos: [['/talks/ed_yong_zombie_roaches_and_other_parasite_tales', '2014']]
selected: /talks/ed_yong_zombie_roaches_and_other_parasite_tales
sleep 3 seconds to avoid blocking
------<643>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EinsteinTheParrot_2006.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=einstein+is+very+honored+to+be+here+at+ted+two+thousand+and+six+amongst+all+you
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=modern+day+einsteins+in+fact+she+s+very+excited+e+woo+sw+yeah
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=since+we+ve+arrived+there+s+been+a+constant+buzz+about+all+the+exciting+speakers+here+for+the+conference+this+morning+we+ve+heard+a+lot+of+whispers+about+tom+reilly+s+wrap+up+on+saturday+einstein+did+you+hear+whispers+e+[+squawks+]+sw
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=einstein+s+especially+interested+in+penelope+s+talk+a+lot+of+her+research+goes+on+in+caves+which+can+get+pretty+dusty
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=could+make+her+sneeze+but+more+importantly+her+research+could+help+einstein+find+a+cure+for+her+never+ending+scratchy+throat+einstein+[+coughs+]+sw+yeah+well
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=bob+russell+was+telling+us+about+his+work+on+nanotubes+in+his+research+at+the+microscopic+level+well+that+s+really+cool+but+what+einstein+s+really+hoping+is+that+maybe
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+is+one+big+peanut+since+einstein+is+a+bird+she+s+very+interested+in+things+that+fly++she+thinks+burt+rutan+is+very+impressive+e+ooh+sw
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=yeah++she+especially+likes+his+latest+achievement
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=einstein+would+you+like+to+ride+in+burt+s+spaceship
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=also+thinks+you+know+working+in+caves+and+travelling+through+space+it+s+all+very+dangerous+jobs+it+would+be+very+dangerous+if+you+fell+down
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+einstein+needs+to+relax+from+her+job+educating+the+public+she+loves+to+take+in+the+arts+if+the+children+of+the+uganda+need+another+dance+partner+einstein+could+sure+fit+the+bill+because+she+loves+to+dance+can+you+get+down
found 1 videos: [['/talks/einstein_the_parrot_a_talking_squawking_parrot', '2008']]
selected: /talks/einstein_the_parrot_a_talking_squawking_parrot
sleep 4 seconds to avoid blocking
------<644>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ElaineMorgan_2009G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+over+the+world++eminent+evolutionists
found 1 videos: [['/talks/elaine_morgan_i_believe_we_evolved_from_aquatic_apes', '2009']]
selected: /talks/elaine_morgan_i_believe_we_evolved_from_aquatic_apes
sleep 2 seconds to avoid blocking
------<645>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EleanorLongden_2013.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+the+first+time+to+go+to+university+was+a+bright+day+brimming+with+hope+and+optimism
found 1 videos: [['/talks/eleanor_longden_the_voices_in_my_head', '2013']]
selected: /talks/eleanor_longden_the_voices_in_my_head
sleep 2 seconds to avoid blocking
------<646>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EleniGabreMadhin_2007G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=small+country+nestled+in+the+himalayan+mountains++far+from+these+beautiful+mountains
found 1 videos: [['/talks/eleni_gabre_madhin_a_commodities_exchange_for_ethiopia', '2007']]
selected: /talks/eleni_gabre_madhin_a_commodities_exchange_for_ethiopia
sleep 3 seconds to avoid blocking
------<647>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EliBeer_2013P.stm
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+the+fastest+way+to+reach+any+medical+emergency
found 1 videos: [['/talks/eli_beer_the_fastest_ambulance_a_motorcycle', '2013']]
selected: /talks/eli_beer_the_fastest_ambulance_a_motorcycle
sleep 2 seconds to avoid blocking
------<648>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ElifShafak_2010G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+i+do+in+life+telling+stories+writing+novels
found 2 videos: [['/talks/elif_shafak_the_politics_of_fiction', '2010'], ['/talks/chimamanda_ngozi_adichie_the_danger_of_a_single_story', '2009']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+today+i+would+like+to+tell+you+a+few+stories+about+the+art+of+storytelling+and+also+some+supernatural+creatures+called
found 1 videos: [['/talks/elif_shafak_the_politics_of_fiction', '2010']]
selected: /talks/elif_shafak_the_politics_of_fiction
sleep 2 seconds to avoid blocking
------<649>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EliPariser_2011.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=journalist+was+asking+him+a+question+about+the+news+feed++and+the+journalist+was+asking+him+why+is+this+so+important
found 8 videos: [['/talks/eli_pariser_beware_online_filter_bubbles', '2011'], ['/talks/paul_lewis_how_mobile_phones_helped_solve_two_murders', '2011'], ['/talks/julian_assange_why_the_world_needs_wikileaks', '2010'], ['/talks/marc_pachter_the_art_of_the_interview', '2009'], ['/talks/chip_conley_measuring_what_makes_life_worthwhile', '2010'], ['/talks/dan_barber_how_i_fell_in_love_with_a_fish', '2010'], ['/talks/chris_bliss_comedy_is_translation', '2012'], ['/talks/amy_webb_how_i_hacked_online_dating', '2013']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+zuckerberg+said+a+squirrel+dying+in+your+front+yard
found 1 videos: [['/talks/eli_pariser_beware_online_filter_bubbles', '2011']]
selected: /talks/eli_pariser_beware_online_filter_bubbles
sleep 2 seconds to avoid blocking
------<650>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EliseRoy_2015X.stm
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+laughing+with+my+friends+i+ll+never+forget+the+sound+of+my+mother+s+voice+right+before+i+fell+asleep
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=imagine+my+fear++pure+fear
found 5 videos: [['/talks/elise_roy_when_we_design_for_disability_we_all_benefit', '2016'], ['/talks/pamela_ronald_the_case_for_engineering_our_food', '2015'], ['/talks/esther_perel_rethinking_infidelity_a_talk_for_anyone_who_has_ever_loved', '2015'], ['/talks/scott_dinsmore_how_to_find_work_you_love', '2015'], ['/talks/sarah_jones_one_woman_five_characters_and_a_sex_lesson_from_the_future', '2015']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+at+the+age+of+ten++i+was+told+i+was+going+to+lose+my+hearing
found 8 videos: [['/talks/melissa_fleming_let_s_help_refugees_thrive_not_just_survive', '2014'], ['/talks/dave_isay_everyone_around_you_has_a_story_the_world_needs_to_hear', '2015'], ['/talks/sarah_jones_what_does_the_future_hold_11_characters_offer_quirky_answers', '2014'], ['/talks/mark_ronson_how_sampling_transformed_music', '2014'], ['/talks/andrew_solomon_love_no_matter_what', '2013'], ['/talks/jim_yong_kim_doesn_t_everyone_deserve_a_chance_at_a_good_life', '2017'], ['/talks/dan_gross_why_gun_violence_can_t_be_our_new_normal', '2016'], ['/talks/isaac_lidsky_what_reality_are_you_creating_for_yourself', '2016']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+over+the+next+five+years+it+progressed+until+i+was+classified+as+profoundly+deaf
found 1 videos: [['/talks/elise_roy_when_we_design_for_disability_we_all_benefit', '2016']]
selected: /talks/elise_roy_when_we_design_for_disability_we_all_benefit
sleep 1 seconds to avoid blocking
------<651>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ElizabethGilbert_2014.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+few+years+ago+i+was+at+jfk+airport+about+to+get+on+a+flight
found 1 videos: [['/talks/elizabeth_gilbert_success_failure_and_the_drive_to_keep_creating', '2014']]
selected: /talks/elizabeth_gilbert_success_failure_and_the_drive_to_keep_creating
sleep 1 seconds to avoid blocking
------<652>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ElizabethLesser_2010W.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+room+may+appear+to+be+holding+six+hundred+people+but+there+s+actually+so+many+more+because+in+each+one+of+us
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+is+a+multitude+of+personalities
found 1 videos: [['/talks/elizabeth_lesser_take_the_other_to_lunch', '2011']]
selected: /talks/elizabeth_lesser_take_the_other_to_lunch
sleep 5 seconds to avoid blocking
------<653>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ElizabethLesser_2016W.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=many+of+us++i+ve+had+several+careers+in+my+life+and+although+they+ve+been+varied
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+first+job+set+the+foundation+for+all+of+them++i+was+a
found 9 videos: [['/talks/elizabeth_lesser_say_your_truths_and_seek_them_in_others', '2016'], ['/talks/liz_ogbu_what_if_gentrification_was_about_healing_communities_instead_of_displacing_them', '2018'], ['/talks/allan_adams_what_the_discovery_of_gravitational_waves_means', '2016'], ['/talks/hugh_herr_the_new_bionics_that_let_us_run_climb_and_dance', '2014'], ['/talks/supasorn_suwajanakorn_fake_videos_of_real_people_and_how_to_spot_them', '2018'], ['/talks/julie_lythcott_haims_how_to_raise_successful_kids_without_over_parenting', '2016'], ['/talks/vivek_maru_how_to_put_the_power_of_law_in_people_s_hands', '2018'], ['/talks/helen_czerski_the_fascinating_physics_of_everyday_life', '2017'], ['/talks/anne_milgram_why_smart_statistics_are_the_key_to_fighting_crime', '2014']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=valuable+and+sometimes+surprising+things+like+how+to+start+a+car+at+2am+when+it+s+ten+degrees+below+zero
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+how+to+revive+a+father+who+s+fainted+at+the+sight+of+blood
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+how+to+cut+the+umbilical+cord+just+so+to+make+a+beautiful+belly+button
found 1 videos: [['/talks/elizabeth_lesser_say_your_truths_and_seek_them_in_others', '2016']]
selected: /talks/elizabeth_lesser_say_your_truths_and_seek_them_in_others
sleep 1 seconds to avoid blocking
------<654>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ElizabethLev_2015G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=imagine+you+re+in+rome++and+you+ve+made+your+way+to+the+vatican+museums
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+ve+been+shuffling+down+long+corridors++past+statues
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=frescoes++lots+and+lots+of+stuff+you+re+heading+towards+the+sistine+chapel
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+long+corridor++a+stair+and+a+door+you+re+at+the+threshold+of+the+sistine+chapel++so+what+are+you+expecting
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=soaring+domes+choirs+of+angels+we+don+t+really+have+any+of+that+there
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=instead++you+may+ask+yourself+what+do+we+have+well+curtains+up+on+the
found 1 videos: [['/talks/elizabeth_lev_the_unheard_story_of_the_sistine_chapel', '2016']]
selected: /talks/elizabeth_lev_the_unheard_story_of_the_sistine_chapel
sleep 4 seconds to avoid blocking
------<655>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ElizabethLindsey_2010W.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+a+child++i+was+raised+by+native+hawaiian+elders
found 1 videos: [['/talks/elizabeth_lindsey_curating_humanity_s_heritage', '2011']]
selected: /talks/elizabeth_lindsey_curating_humanity_s_heritage
sleep 3 seconds to avoid blocking
------<656>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ElizabethLoftus_2013G.stm
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+a+legal+case+that+i+worked+on
found 10 videos: [['/talks/kimberley_motley_how_i_defend_the_rule_of_law', '2014'], ['/talks/afra_raymond_three_myths_about_corruption', '2013'], ['/talks/daniel_suarez_the_kill_decision_shouldn_t_belong_to_a_robot', '2013'], ['/talks/sarah_jones_one_woman_five_characters_and_a_sex_lesson_from_the_future', '2015'], ['/talks/charmian_gooch_my_wish_to_launch_a_new_era_of_openness_in_business', '2014'], ['/talks/johann_hari_everything_you_think_you_know_about_addiction_is_wrong', '2015'], ['/talks/noy_thrupkaew_human_trafficking_is_all_around_you_this_is_how_it_works', '2015'], ['/talks/elizabeth_loftus_how_reliable_is_your_memory', '2013'], ['/talks/alessandro_acquisti_what_will_a_future_without_secrets_look_like', '2013'], ['/talks/io_tillett_wright_fifty_shades_of_gay', '2013']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=involving+a+man+named+steve+titus+titus+was+a+restaurant+manager+he+was+thirty+one+years
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+lived+in+seattle+washington++he+was+engaged+to+gretchen+about+to+be+married+she+was+the+love+of+his+life+and+one+night+the+couple+went+out+for+a+romantic
found 1 videos: [['/talks/elizabeth_loftus_how_reliable_is_your_memory', '2013']]
selected: /talks/elizabeth_loftus_how_reliable_is_your_memory
sleep 5 seconds to avoid blocking
------<657>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ElizabethMurchison_2011G.stm
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+we+don+t+normally+think+of+cancer+as+being+a+contagious+disease+the+tasmanian+devil+has+shown+us+that+not+only
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=can+cancer+be+a+contagious+disease++but+it+can+also+threaten+an+entire+species+with+extinction
found 1 videos: [['/talks/elizabeth_murchison_fighting_a_contagious_cancer', '2011']]
selected: /talks/elizabeth_murchison_fighting_a_contagious_cancer
sleep 5 seconds to avoid blocking
------<658>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ElizabethNyamayaro_2015W.stm
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+first+time+i+met+the+girl+in+the+blue+uniform
found 1 videos: [['/talks/elizabeth_nyamayaro_an_invitation_to_men_who_want_a_better_world_for_women', '2015']]
selected: /talks/elizabeth_nyamayaro_an_invitation_to_men_who_want_a_better_world_for_women
sleep 1 seconds to avoid blocking
------<659>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ElizabethPisani_2010.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=stupid+things+that+s+what+spreads+hiv
found 1 videos: [['/talks/lauren_zalaznick_the_conscience_of_television', '2011']]
selected: /talks/lauren_zalaznick_the_conscience_of_television
sleep 2 seconds to avoid blocking
------<660>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EllenDunhamJones_2010X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+last+fifty+years+we+ve+been+building+the+suburbs+with+a+lot+of+unintended+consequences+and+i+m+going+to+talk+about+some+of+those+consequences
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+just+present+a+whole+bunch+of+really+interesting
found 18 videos: [['/talks/mark_applebaum_the_mad_scientist_of_music', '2012'], ['/talks/kathryn_schulz_on_being_wrong', '2011'], ['/talks/juan_enriquez_the_next_species_of_human', '2009'], ['/talks/ellen_dunham_jones_retrofitting_suburbia', '2010'], ['/talks/sendhil_mullainathan_solving_social_problems_with_a_nudge', '2010'], ['/talks/dan_pink_the_puzzle_of_motivation', '2009'], ['/talks/george_smoot_the_design_of_the_universe', '2008'], ['/talks/michael_shermer_the_pattern_behind_self_deception', '2010'], ['/talks/seth_berkley_hiv_and_flu_the_vaccine_strategy', '2010'], ['/talks/david_pizarro_the_strange_politics_of_disgust', '2012'], ['/talks/martin_hanczyc_the_line_between_life_and_not_life', '2011'], ['/talks/william_li_can_we_eat_to_starve_cancer', '2010'], ['/talks/frank_gehry_a_master_architect_asks_now_what', '2008'], ['/talks/stewart_brand_the_long_now', '2008'], ['/talks/rory_sutherland_life_lessons_from_an_ad_man', '2009'], ['/talks/damon_horowitz_we_need_a_moral_operating_system', '2011'], ['/talks/morgan_spurlock_the_greatest_ted_talk_ever_sold', '2011'], ['/talks/majora_carter_3_stories_of_local_eco_entrepreneurship', '2010']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=projects+that+i+think+give+us+tremendous+reasons+to+be+really+optimistic+that+the
found 1 videos: [['/talks/ellen_dunham_jones_retrofitting_suburbia', '2010']]
selected: /talks/ellen_dunham_jones_retrofitting_suburbia
sleep 3 seconds to avoid blocking
------<661>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EllenGustafson_2010X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=start+out+obsessed+with+food+i+started+out+obsessed+with+global+security+policy+because+i+lived+in+new+york+during+nine+eleven+and+it+was+obviously+a+very+relevant+thing
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+got+from+global+security+policy+to+food+because+i+realized+when+i+m+hungry+i+m+really+pissed+off++and+i+m+assuming+that+the+rest+of+the+world+is+too
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=especially+if+you+re+hungry+and+your+kids+are+hungry+and+your+neighbor+s+kids+are+hungry+and+your+whole+neighborhood+is+hungry+you+re+pretty+angry+and+actually+lo+and+behold+it+looks+pretty+much+like+the+areas+of+the+world+that+are+hungry+are+also+the
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=areas+of+the+world+that+are+pretty+insecure++so+i+took+a+job+at+the+united+nations+world+food+programme+as+a+way+to+try+to+address+these+security+issues+through+food+security+issues
found 1 videos: [['/talks/ellen_gustafson_obesity_hunger_1_global_food_issue', '2010']]
selected: /talks/ellen_gustafson_obesity_hunger_1_global_food_issue
sleep 5 seconds to avoid blocking
------<662>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EllenJorgensen_2012G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=great+time+to+be+a+molecular+biologist
found 6 videos: [['/talks/janet_iwasa_how_animations_can_help_scientists_test_a_hypothesis', '2014'], ['/talks/ellen_jorgensen_biohacking_you_can_do_it_too', '2013'], ['/talks/stewart_brand_the_dawn_of_de_extinction_are_you_ready', '2013'], ['/talks/arvind_gupta_turning_trash_into_toys_for_learning', '2011'], ['/talks/lee_cronin_making_matter_come_alive', '2011'], ['/talks/michael_nielsen_open_science_now', '2011']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=reading+and+writing+dna+code+is+getting+easier+and+cheaper
found 1 videos: [['/talks/ellen_jorgensen_biohacking_you_can_do_it_too', '2013']]
selected: /talks/ellen_jorgensen_biohacking_you_can_do_it_too
sleep 2 seconds to avoid blocking
------<663>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EllenJorgensen_2016T.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=has+everybody+heard+of+crispr+i+would+be+shocked+if+you+hadn+t+this+is+a+technology+it+s+for+genome+editing
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+s+so+versatile+and+so+controversial+that+it+s+sparking+all+sorts+of+really+interesting+conversations++should+we+bring+back+the+woolly
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=should+we+edit+a+human+embryo++and+my+personal+favorite
found 1 videos: [['/talks/ellen_jorgensen_what_you_need_to_know_about_crispr', '2016']]
selected: /talks/ellen_jorgensen_what_you_need_to_know_about_crispr
sleep 3 seconds to avoid blocking
------<664>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EllenTHoen_2012X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+two+thousand+and+two+a+group+of+treatment+activists+met
found 1 videos: [['/talks/andrew_solomon_love_no_matter_what', '2013']]
selected: /talks/andrew_solomon_love_no_matter_what
sleep 5 seconds to avoid blocking
------<665>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ElliotKrane_2011U.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=pediatrician+and+an+anesthesiologist+so+i+put+children+to+sleep+for+a+living
found 1 videos: [['/talks/elliot_krane_the_mystery_of_chronic_pain', '2011']]
selected: /talks/elliot_krane_the_mystery_of_chronic_pain
sleep 1 seconds to avoid blocking
------<666>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ElonMusk_2013.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=kind+of+crazy+dream+would+persuade+you+to+think+of+trying+to+take+on+the+auto+industry+and+build+an+all+electric+car+elon
found 1 videos: [['/talks/elon_musk_the_mind_behind_tesla_spacex_solarcity', '2013']]
selected: /talks/elon_musk_the_mind_behind_tesla_spacex_solarcity
sleep 3 seconds to avoid blocking
------<667>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ElonMusk_2017.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+next+half+hour+or+so+we+re+going+to+spend+some+time+exploring+your+vision
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+what+an+exciting+future+might+look+like++which+i+guess+makes+the+first+question+a+little+ironic++why+are+you+boring+em+yeah+i
found 1 videos: [['/talks/elon_musk_the_future_we_re_building_and_boring', '2017']]
selected: /talks/elon_musk_the_future_we_re_building_and_boring
sleep 2 seconds to avoid blocking
------<668>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EloraHardy_2015.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+was+nine+years+old+my+mom+asked+me+what+i+would+want+my+house+to+look+like+and+i+drew+this+fairy+mushroom+and+then
error: request timeout
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+don+t+think+i+realized+this+was+so+unusual+at+the+time+and+maybe+i+still+haven
error: request timeout
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+a+six+story+bespoke+home+on+the+island+of+bali++it+s+built+almost+entirely+from+bamboo
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+living+room+overlooks+the+valley+from+the+fourth+floor+you+enter+the+house+by+a+bridge
found 1 videos: [['/talks/elora_hardy_magical_houses_made_of_bamboo', '2015']]
selected: /talks/elora_hardy_magical_houses_made_of_bamboo
sleep 2 seconds to avoid blocking
------<669>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/eLSeed_2015U.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+two+thousand+and+twelve+when+i+painted+the+minaret+of+jara+mosque+in+my+hometown+of+gabs+in+the+south+of+tunisia
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+never+thought+that+graffiti+would+bring+so+much+attention
found 1 videos: [['/talks/el_seed_street_art_with_a_message_of_hope_and_peace', '2015']]
selected: /talks/el_seed_street_art_with_a_message_of_hope_and_peace
sleep 4 seconds to avoid blocking
------<670>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/eLSeed_2016T.stm
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=an+art+piece+in+manshiyat+naser
found 1 videos: [['/talks/el_seed_a_project_of_peace_painted_across_50_buildings', '2016']]
selected: /talks/el_seed_a_project_of_peace_painted_across_50_buildings
sleep 4 seconds to avoid blocking
------<671>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ElynSaks_2012G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=woman+with+chronic+schizophrenia++i+ve+spent+hundreds+of+days+in+psychiatric+hospitals
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+might+have+ended+up+spending+most+of+my+life+on+the+back+ward+of+a+hospital++but+that+isn+t+how+my+life+turned+out
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+fact+i+ve+managed+to+stay+clear+of+hospitals+for+almost+three+decades+perhaps+my+proudest
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+not+to+say+that+i+ve+remained+clear+of+all+psychiatric+struggles++after+i+graduated+from+the+yale+law+school+and+got+my+first+law+job+my+new+haven+analyst+dr+white+announced+to
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=me+that+he+was+going+to+close+his+practice+in+three+months++several+years+before+i+had+planned+to+leave+new+haven
found 2 videos: [['/talks/elyn_saks_a_tale_of_mental_illness_from_the_inside', '2012'], ['/talks/leana_wen_what_your_doctor_won_t_disclose', '2014']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+best+friend+steve+sensing+that+something+was+terribly+wrong+flew+out+to+new+haven+to+be+with+me++now+i+m+going+to+quote+from+some+of+my+writings
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+opened+the+door+to+my+studio+apartment
found 1 videos: [['/talks/elyn_saks_a_tale_of_mental_illness_from_the_inside', '2012']]
selected: /talks/elyn_saks_a_tale_of_mental_illness_from_the_inside
sleep 1 seconds to avoid blocking
------<672>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EmanMohammed_2014U.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+turned+nineteen+i+started+my+career+as+the+first+female+photojournalist+in+the+gaza+strip+palestine
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+work+as+a+woman+photographer+was+considered+a+serious+insult+to+local+traditions+and+created+a+lasting+stigma+for+me+and
found 1 videos: [['/talks/eman_mohammed_the_courage_to_tell_a_hidden_story', '2014']]
selected: /talks/eman_mohammed_the_courage_to_tell_a_hidden_story
sleep 4 seconds to avoid blocking
------<673>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EmilieWapnick_2015X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=raise+your+hand+if+you+ve+ever+been+asked+the+question+what+do+you+want+to+be+when+you+grow+up
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+if+you+had+to+guess+how+old+would+you+say+you+were+when+you+were+first+asked+this+question+you+can+just+hold+up+fingers
found 3 videos: [['/talks/emilie_wapnick_why_some_of_us_don_t_have_one_true_calling', '2015'], ['/talks/norman_lear_an_entertainment_icon_on_living_a_life_of_meaning', '2016'], ['/talks/joshua_prager_in_search_of_the_man_who_broke_my_neck', '2013']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=raise+your+hand+if+the+question+what+do+you+want+to+be+when+you+grow+up+has+ever+caused+you+any+anxiety
found 2 videos: [['/talks/emilie_wapnick_why_some_of_us_don_t_have_one_true_calling', '2015'], ['/talks/sting_how_i_started_writing_songs_again', '2014']]
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+someone+who+s+never+been+able+to+answer+the+question+what+do+you+want+to+be+when+you+grow+up
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+problem+wasn+t+that+i+didn+t+have+any+interests+it+s+that+i+had+too+many
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+high+school+i+liked+english+and+math+and+art+and+i+built+websites+and
found 1 videos: [['/talks/emilie_wapnick_why_some_of_us_don_t_have_one_true_calling', '2015']]
selected: /talks/emilie_wapnick_why_some_of_us_don_t_have_one_true_calling
sleep 3 seconds to avoid blocking
------<674>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EmilyBalcetis_2014X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+most+important+and+prioritized+sense+that+we+have
found 7 videos: [['/talks/dambisa_moyo_is_china_the_new_idol_for_emerging_economies', '2013'], ['/talks/edward_snowden_here_s_how_we_take_back_the_internet', '2014'], ['/talks/emily_balcetis_why_some_people_find_exercise_harder_than_others', '2014'], ['/talks/melissa_fleming_let_s_help_refugees_thrive_not_just_survive', '2014'], ['/talks/guy_winch_why_we_all_need_to_practice_emotional_first_aid', '2015'], ['/talks/tristan_harris_how_better_tech_could_protect_us_from_distraction', '2016'], ['/talks/abha_dawesar_life_in_the_digital_now', '2013']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+are+constantly+looking+at+the+world+around+us+and+quickly+we+identify+and+make+sense+of+what+it+is+that+we+see
found 1 videos: [['/talks/emily_balcetis_why_some_people_find_exercise_harder_than_others', '2014']]
selected: /talks/emily_balcetis_why_some_people_find_exercise_harder_than_others
sleep 1 seconds to avoid blocking
------<675>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EmilyLevine_2002.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+am+going+to+talk+about+myself+which+i+rarely+do+because+i
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+for+one+thing+i+prefer+to+talk+about+things+i+know+nothing+about++and+secondly++i+m+a+recovering+narcissist
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+didn+t+know+i+was+a+narcissist+actually+i+thought+narcissism+meant+you+loved+yourself+and+then+someone+told+me+there+is+a+flip+side+to+it
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+it+s+actually+drearier+than+self+love+it+s+unrequited+self+love
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+don+t+feel+i+can+afford+a+relapse++but+i+want
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=explain+how+i+came+to+design+my+own+particular+brand+of+comedy+because+i+ve+been+through+so+many+different+forms+of+it+i+started+with+improvisation+in+a+particular
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=form+of+improvisation+called+theater+games+which
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=had+one+rule+which+i+always+thought+was+a+great+rule+for+an+ethic+for+a+society+and+the+rule+was+you+couldn+t+deny+the+other+person+s+reality
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+could+only+build+on+it++and+of+course+we+live+in+a+society+that+s+all+about+contradicting+other+peoples++reality+it+s+all+about
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=contradiction++which+i+think+is+why+i+m+so+sensitive+to+contradiction+in+general+i+see+it+everywhere
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+polls+you+know+it+s
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=always+curious+to+me+that+in+public+opinion+polls+the+percentage+of+americans+who+don+t+know+the+answer+to+any+given+question+is+always+two+percent
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=seventy+five+percent+of+americans+think+alaska+is+part+of+canada+but+only+two+percent+don+t+know+the
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=effect+that+the+debacle+in+argentina+will+have+on+the+imf+s+monetary+policy
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+this+ad+that+i+read+in+the+new+york+times+wearing+a+fine+watch+speaks+loudly+of+your+rank+in+society++buying+it+from+us+screams+good+taste
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+that+i+found+in+a+magazine+called+california+lawyer+in+an+article+that+is+surely+meant+for+the+lawyers+at+enron
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=surviving+the+slammer+do+s+and
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+suppose+it+s+a+contradiction+that+i+talk+about+science+when+i+don+t+know+math+you+know+because+and+by+the+way+to+i+was+so+grateful+to+dean+kamen+for+pointing+out
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+one+of+the+reasons+that+there+are+cultural+reasons+that+women+and+minorities+don+t+enter
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+fields+of+science+and+technology+because+for+instance+the+reason+i+don+t+do+math+is+i+was+taught+to+do+math+and+read+at+the+same+time
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+you+re+six+years+old+you+re+reading+snow+white+and+the+seven+dwarves+and+it+becomes+rapidly+obvious+that+there+are+only+two+kinds+of+men+in+the+world++dwarves+and+prince+charmings
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+odds+are+seven+to+one+against+your+finding+the+prince
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+why+little+girls+don+t+do+math+it+s+too+depressing
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+talking+about+science+i+also+may+as+i+did+the+other+night+incur+the+violent+wrath+of+some+scientists
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+were+very+upset+with++me+i+used+the+word+postmodern+as+if+it+were+ok++and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+got+very+upset+one+of+them+to+his+credit+i+think+really+just+wanted+to+engage+me+in+a+serious+argument
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=don+t+engage+in+serious+arguments+i+don+t+approve+of+them
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+arguments+of+course+are+all+about+contradiction+and+they+re+shaped+by+the+values+that+i+have+questions+with+i+have+questions+with+the+values+of+of+newtonian+science+like+rationality+you+re+supposed+to+be+rational+in+an+argument
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+rationality+is+constructed+by+what+christie+hefner+was+talking+about+today+that+mind+body+split+you+know
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=head+is+good+body+bad+head+is+ego+body+id++when+we+say+i+as+when+rene+descartes+said+i+think+therefore+i+am+we+mean+the+head
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+as+david+lee+roth+sang+in+just+a+gigolo+i+ain+t+got+no+body
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+how+you+get+rationality
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+s+why+so+much+of+humor+is+the+body+asserting+itself+against+the+head++that+s+why+you+have+toilet+humor+and+sexual+humor
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+why+you+have+the+raspyni+brothers+whacking+richard
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+genital+area+and+we+re+laughing+doubly+then+because+he+s+the
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+the+other+way+that+humor+like+art+buchwald
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=takes+shots+at+the+heads+of+state++it+doesn+t+make+quite+as+much+money+as+body+humor+i+m+sure
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+nevertheless+what+makes+us+treasure+you+and+and+adore+you
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+also+a+contradiction+in+rationality+in+this+country+though+which+is+as+much+as+we+revere+the
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+know+this+because+i+read+in+the+new+york+times
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+ayn+rand+foundation+took+out+a+full+page+ad+after+september+eleven++in+which+they+said+the+problem+is+not+iraq+or+iran
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+problem+in+this+country+facing+this+country
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+the+university+professors+and+their+spawn
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=know+how+many+of+you+have+read+it++and+i+m+not+an+expert+on+sadomasochism+but+let
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=me+just+read+you+a+couple+of+random+passages
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=from+page+two+hundred+and+seventeen+the+act+of+a+master+taking+painful+contemptuous+possession+of+her+was+the+kind+of+rapture+she+wanted+when+they
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=lay+together+in+bed+it+was+as+it+had+to+be+as+the+nature+of+the+act+demanded+an+act+of+violence
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+an+act+of+clenched+teeth+and+hatred+it+was+the+unendurable+not+a+caress+but+a+wave+of+pain++the+agony+as+an+act+of+passion
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+you+can+imagine+my+surprise+on+reading+in+the+new+yorker
error: request timeout
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=chairman+of+the+federal+reserve+claims+ayn+rand+as+his+intellectual+mentor
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+like+finding+out+your+nanny+is+a+dominatrix
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=bad+enough+we+had+to+see+j+edgar+hoover+in+a+dress+now+we+have+to+picture+alan+greenspan+in+a+black+leather+corset+with+a+butt+tattoo+that
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+ayn+rand+of+course+ayn+rand+is+famous+for+a+philosophy+called+objectivism+which
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=reflects+another+value+of+newtonian+physics+which+is+objectivity+++objectivity+basically+is+constructed+in+that+same+s+&+m+way+it+s
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+subject+subjugating+the+object+that+s+how+you+assert+yourself+you+make+yourself+the+active+voice++and+the+object+is+the+passive+no+voice+i+was+so+fascinated+by+that+oxygen+commercial
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=maybe+it+s+different+now+or+maybe+you+were+making+a+statement+but+in+many+hospital+nurseries+across+the+country+until+very+recently+anyway++according+to+a+book+by+jessica+benjamin
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+signs+over+the+little+boys+cribs
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=read+i+m+a+boy+and+the+signs+over+the+little+girls+cribs+read+it+s+a+girl+yeah+so
error: request timeout
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+still+goes+on+as+i+think+i+told+you+last+year+there+s+a+a+poll+that+proves+there+was+a+poll+that+was
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=given+by+time+magazine+in+which+only+men+were+asked+have+you+ever+had+sex+with+a+woman+you+actively+disliked+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+yeah++well+fifty+eight+percent+said+yes+which
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+is+overinflated+though+because+so+many+men+if+you+just+say+have+you+ever+had+sex+yes+they+don+t+even+wait+for+the+rest+of+it+and
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+part+of+something+i+m+very+interested+in+because
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+why+frankly+i+believe+in+political+correctness+i+do+i+think+it+can+go+too+far+i+think+ringling+brothers+may+have+gone+too+far+with+an+ad+they+took+out
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+new+york+times+magazine+we+have+a+lifelong+emotional+and+financial+commitment+to+our+asian+elephant+partners
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=maybe+too+far+but+you+know
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+don+t+think+that+a+person+of+color+making+fun+of+white+people+is+the+same+thing+as+a+white+person+making+fun+of+people+of+color+or+women+making+fun+of+men+is+the+same+as+men+making+fun
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+women+or+poor+people+making+fun+of+rich+people+the+same+as+rich+people++i+think+you+can+make+fun+of+the+have+but+not+the+have+nots+which
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+why+you+don+t+see+me+making+fun+of+kenneth+lay+and+his+charming+wife
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+s+funny+about+being+down+to+four+houses
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+really+learned+this+lesson+during+the+during+the+sex+scandals+of+the+clinton+administration
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+as+i+call+them+the+good+ol++days
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=laughter+when+people+i+knew+you+know+people+who+considered+themselves+liberal+and+everything+else
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=were+making+fun+of+jennifer+flowers+and+paula+jones+basically+they+were+making+fun+of+them+for+being
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+seems+i+suppose+a+harmless+prejudice+and+that+you+re+not+really+hurting+anybody++until+you+read+as+i+did
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=an+ad+in+the+los+angeles+times+for+sale+white+trash+compactor
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+read+a+book+by+a+woman+named+amy+amy+richlin+who+is+the+chair+of+the+classics+department+at+usc+and+the+book+is+called+the+garden+of+priapus+and+she+says+that+roman+humor
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=mirrors+the+construction+of+roman+society+so+that+that
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+ours+is+to+some+degree++and+so+was+humor+there+always+had+to+be+the+butt+of+a+joke+so+it+was+always
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+satirist+like+juvenal+or+martial+represented
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+audience+and+he+was+going+to+make+fun+of+the+outsider++the+person+who+didn+t+share+that+subject+status
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+in+stand+up+of+course+the
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=comedian+is+supposed+to+dominate+the+audience+a+lot+of+heckling+is
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+tension+of+trying+to+make+sure
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+that+the+comedian+is+going+to+be+able+to+dominate+and+overcome+the+heckler++and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+got+good+at+that+when+i+was+in+stand+up+but+i+always+hated+it+because+they+were+dictating+the+terms+of+the+interaction+in+the+same+way+that+engaging+in+a+serious+argument+determines+the+content+to+some+degree
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+what+you+re+talking+about++and+i+was+looking+for+a+form+that+didn+t+have+that+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+i+wanted+something+that+was+more+interactive+i+know+that+word+is+so
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+really+miss+the+old+telemarketers+now+i+ll+tell+you+that+i+do+because+at+least+there+you+stood+a+chance+you+know
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+used+to+actually+hang+up+on+them+but+then+i+read+in+dear+abby+that+that+was+rude++so
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+next+time+that+one+called+i+let+him+get+halfway+through+his+spiel+and+then+i+said+you+sound+sexy
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+interactivity+allows+the+audience+to+shape
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+you+re+going+to+do+as+much+as+you+shape+their+experience+of+the+world
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+s+really+what+i+m+looking+for+and+i+was+sort+of+as+i+was+starting+to+analyze+what+exactly+it+is+that+i+do
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=called+trickster+makes+this+world+by+lewis+hyde+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+like+being+psychoanalyzed+i+mean+he+had+laid+it+all+out+and+then+coming+to+this+conference+i+realized+that+most+everybody+here+shared+those
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=same+qualities+because+really+what+trickster+is+is+an+agent+of+change+trickster+is+a+change+agent++and+the+qualities+that+i+m+about+to+describe+are+the+qualities+that+make+it+possible
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+make+change+happen++and+one+of+these+is
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=boundary+crossing++i+think+this+is+what+so+in+fact+infuriated+the+scientists+but
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+like+to+cross+boundaries+i+like+to+as+i+said+talk+about+things+i+know+nothing+about
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+hope+that+s+my+agent+because+you+aren+t+paying+me+anything
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=think+it+s+good+to+talk+about+things+i+know+nothing+about+because+i+bring+a+fresh+viewpoint+to+it+you+know+i+m+able+to+see+the+contradiction+that+you+may+not+be+able+to+see+like+for+instance+a+mime+once+or+a+meme+as+he+called+himself
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+was+a+very+selfish+meme++and+he+said+that
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+had+to+show+more+respect+because+it+took+up+to+eighteen+years+to+learn+how+to+do+mime+properly
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+said+well++that+s+how+you+know+only+stupid+people+go+into+it
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+only+takes+two+years+to+learn+how+to+talk
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+know+people+this+is+the+problem+with+quote++objectivity+unquote+when+you+re+only+surrounded+by+people+who+speak+the+same+vocabulary+as+you+or+share+the+same+set
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+assumptions+as+you+you+start+to+think+that+that+s+reality++like+economists+you+know+their+definition+of+rational+that+we+all+act+out+of+our+own+economic
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=self+interest+well+look+at+michael+hawley+or+look+at+dean+kamen+or+look+at+my+grandmother+my+grandmother+always+acted+in+other+people+s+interests+whether+they+wanted+her+to+or+not
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=an+olympics+in+martyrdom+my+grandmother+would+have+lost+on+purpose+no
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+take+the+prize+you+re+young+i+m+old
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fritz+lanting+is+that+his+name+actually+said+that+he+was+a+go+between+that+s+an+actual+quality+of+the+trickster+and+another+is+non+oppositional+strategies
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=deny+the+other+person+s+reality+you+have+paradox+where+you+allow+more+than+one+reality+to+coexist+i+think+there+s+another+philosophical+construction
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+it+s+called+but+my+example+of+it+is+a+sign+that+i+saw+in+a+jewelry+store+it+said+ears+pierced+while+you+wait
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+the+alternative+just+boggles+the+imagination
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=them+up+around+five+if+that+s+ok+with+you+huh+huh+what
error: request timeout
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+another+attribute+of+the+trickster
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+smart+luck+that+accidents+that+louis+kahn+who+talked+about+accidents+this+is+another+quality+of+the+trickster+the+trickster+has+a+mind+that+is
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=prepared+for+the+unprepared++that
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+will+say+this+to+the+scientists+that+the+trickster+has+the+ability+to+hold+his+ideas+lightly
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+that+he+can+let+room+in+for+new+ideas+or+to+see+the+contradictions+or+the+hidden
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+had+no+joke+for+that+i+just+wanted+to+put+the+scientists+in+their+place
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+here+s+how+i+think
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+like+to+make+change+and+that+is+in+making+connections+this+is
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+i+tend+to+see+almost+more+than+contradictions+like+the+what+do+you+call+those+toes+of+the+gecko
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know+the+toes+of+the+gecko+curling+and+uncurling+like+the+fingers+of+michael+moschen
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+love+connections+like+i+ll+read+that+one+of+the+two+attributes+of+matter+in+the+newtonian+universe
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+are+two+attributes+of+matter+in+the+newtonian+universe+one+is+space+occupancy+matter+takes+up+space+i+guess
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+more+you+matter+the+more+space+you+take+up+which+explains+the+whole+suv+phenomenon
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+other+one+though+is+impenetrability
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well++in+ancient+rome+impenetrability+was+the+criterion+of+masculinity+masculinity+depended+on+you+being+the+active+penetrator
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+in+economics+there+s+an+active+producer+and+a+passive+consumer++which+explains+why+business+always+has+to+penetrate
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+mean+why+we+forced+china+to+open+her+markets+and+didn+t+that+feel+good
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+now+we+re+being+penetrated+you+know+the+biotech+companies+are+actually+going+inside+us+and+planting+their+little+flags+on+our+genes+you
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=know+we+re+being+penetrated++and+i+suspect+by+someone+who+actively+dislikes+us
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+what+i+hope+to+do+when+i+make+these+connections+is+short+circuit+people+s+thinking+you+know+make+you
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+follow+your+usual+train+of+association+but+make+you+rewire
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=literally+when+people+say+about+the+shock+of+recognition+it+s+literally
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+had+a+joke+to+go+with+this+and+i+forgot+it+i+m+so+sorry+i+m+getting+like
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+woman+in+that+joke+about+have+you+heard+this+joke+about+the+woman+driving+with+her+mother+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=mother+is+elderly+and+the+mother+goes+right+through+a+red+light++and+the+daughter+doesn+t+want+to+say+anything+she+doesn+t+want+to+be+like+you+re+too+old+to+drive
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+mother+goes+through+a+second+red+light++and+the+daughter+says
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+tactfully+as+possible+mom+are+you+aware+that+you+just+went+through+two+red+lights+and+the+mother+says
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=shock+of+recognition+at+the+shock+of+recognition+that+completes+the+quadruple
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+just+want+to+say+two+more+things+one+is+another+characteristic+of+trickster+is+that
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+trickster+has+to+walk+this+fine+line+he+has+to
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=poise++and+you+know+the+biggest+hurdle+for+me+in+doing+what+i+do+is
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=constructing+my+performance+so+that+it+s+prepared+and+unprepared
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=finding+the+balance+between+those+things+is+always+dangerous+because+you+might+tip+off+too+much+in+the+direction+of+unprepared
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+being+too+prepared+doesn+t+leave+room+for+the+accidents+to+happen
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=moshe+safdie+said+yesterday+about+beauty+because+in+his+book+hyde+says+that
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sometimes+trickster+can+tip+over+into+beauty++but+to+do+that+you+have+to
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=lose+all+the+other+qualities+because+once+you+re+into+beauty+you+re+into+a+finished+thing+you+re+into
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=something+that+occupies+space+and+inhabits+time+it+s+an+actual+thing++and
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+is+always+extraordinary+to+see+a+thing+of+beauty
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+if+you+don+t+do+that+if+you+allow+for+the+accident+to+keep+on+happening+you+have+the+possibility+of+getting+on+a+wavelength
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=wave+when+you+go+into+beauty+the+probability+wave+collapses+into+one+possibility++and+i+like
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+explore+all+the+possibilities+in+the+hope+that+you+ll+be+on+the+wavelength+of+your+audience
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+one+final+quality+i+want+to+say+about+trickster+is+that+he+doesn+t+have+a+home+he+s+always
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+say+to+you+richard+in+closing+that+in+ted+you+ve+created+a+home++and+thank+you+for+inviting+me+into+it
error: request timeout
error: no video is found.
sleep 4 seconds to avoid blocking
------<676>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EmilyOster_2007.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+imagine+you+all+know+something+about+aids
found 10 videos: [['/talks/emily_oster_flip_your_thinking_on_aids_in_africa', '2007'], ['/talks/bjorn_lomborg_global_priorities_bigger_than_climate_change', '2007'], ['/talks/ory_okolloh_how_i_became_an_activist', '2008'], ['/talks/bill_joy_what_i_m_worried_about_what_i_m_excited_about', '2008'], ['/talks/marc_koska_1_3m_reasons_to_re_invent_the_syringe', '2009'], ['/talks/ngozi_okonjo_iweala_want_to_help_africa_do_business_here', '2007'], ['/talks/jeff_skoll_my_journey_into_movies_that_matter', '2007'], ['/talks/paul_sereno_digging_up_dinosaurs', '2009'], ['/talks/stephen_petranek_10_ways_the_world_could_end', '2007'], ['/talks/fields_wicker_miurin_learning_from_leadership_s_missing_manual', '2009']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+probably+know+that+roughly+twenty+five+million+people+in+africa+are+infected+with+the+virus+that+aids+is+a+disease+of+poverty+and+that+if+we+can+bring+africa+out+of+poverty++we+would+decrease+aids
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+know+something+more+you+probably+know+that+uganda+to+date+is+the+only+country+in+sub+saharan+africa+that+has+had+success+in+combating+the+epidemic++using+a+campaign+that+encouraged+people
found 1 videos: [['/talks/emily_oster_flip_your_thinking_on_aids_in_africa', '2007']]
selected: /talks/emily_oster_flip_your_thinking_on_aids_in_africa
sleep 3 seconds to avoid blocking
------<677>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EmilyParsonsLord_2016X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+i+asked+you+to+picture+the+air++what+do+you+imagine
found 12 videos: [['/talks/mike_kinney_a_pro_wrestler_s_guide_to_confidence', '2017'], ['/talks/atul_gawande_want_to_get_great_at_something_get_a_coach', '2017'], ['/talks/emily_parsons_lord_art_made_of_the_air_we_breathe', '2017'], ['/talks/gwynne_shotwell_spacex_s_plan_to_fly_you_across_the_globe_in_30_minutes', '2018'], ['/talks/nicholas_negroponte_a_30_year_history_of_the_future', '2014'], ['/talks/katharine_hayhoe_the_most_important_thing_you_can_do_to_fight_climate_change_talk_about_it', '2018'], ['/talks/nick_bostrom_what_happens_when_our_computers_get_smarter_than_we_are', '2015'], ['/talks/jude_kelly_why_women_should_tell_the_stories_of_humanity', '2017'], ['/talks/naomi_oreskes_why_we_should_trust_scientists', '2014'], ['/talks/thordis_elva_and_tom_stranger_our_story_of_rape_and_reconciliation', '2017'], ['/talks/jennifer_doudna_how_crispr_lets_us_edit_our_dna', '2015'], ['/talks/danny_hillis_should_we_create_a_solar_shade_to_cool_the_earth', '2018']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=most+people+think+about+either+empty+space+or+clear+blue+sky+or+sometimes+trees+dancing+in+the+wind
found 1 videos: [['/talks/emily_parsons_lord_art_made_of_the_air_we_breathe', '2017']]
selected: /talks/emily_parsons_lord_art_made_of_the_air_we_breathe
sleep 3 seconds to avoid blocking
------<678>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EmilyPilloton_2010G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+place+that+i+now+call+home+it
found 9 videos: [['/talks/jason_fried_why_work_doesn_t_happen_at_work', '2010'], ['/talks/clifford_stoll_the_call_to_learn', '2008'], ['/talks/nancy_duarte_the_secret_structure_of_great_talks', '2012'], ['/talks/sarah_kay_if_i_should_have_a_daughter', '2011'], ['/talks/hasan_elahi_fbi_here_i_am', '2011'], ['/talks/tony_porter_a_call_to_men', '2010'], ['/talks/steve_keil_a_manifesto_for_play_for_bulgaria_and_beyond', '2011'], ['/talks/ariel_garten_know_thyself_with_a_brain_scanner', '2011'], ['/talks/alain_de_botton_atheism_2_0', '2012']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+a+story+of+public+education+and+of+rural+communities+and+of+what+design+might+do+to+improve
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+this+is+bertie+county+north+carolina+usa
found 1 videos: [['/talks/emily_pilloton_teaching_design_for_change', '2010']]
selected: /talks/emily_pilloton_teaching_design_for_change
sleep 3 seconds to avoid blocking
------<679>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EmmaMarris_2016T.stm
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+say+this+i+don+t+mean+that+we+are+destroying+nature+that+they+will+have+wanted+us+to+preserve
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=although+that+is+unfortunately+also+the+case+what+i+mean+here+is+that+we+ve+started+to+define+nature+in+a+way+that+s+so
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+under+the+definition+we+re+creating+for+ourselves+there+won+t+be+any+nature+left+for+our+children+when+they+re+adults
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+there+s+a+fix+for+this+so+let+me+explain
found 1 videos: [['/talks/travis_kalanick_uber_s_plan_to_get_more_people_into_fewer_cars', '2016']]
selected: /talks/travis_kalanick_uber_s_plan_to_get_more_people_into_fewer_cars
sleep 5 seconds to avoid blocking
------<680>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EmmanuelJal_2009G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=say+my+name+is+emmanuel+jal++and+i+come+from+a+long+way+i+ve+been+telling+a+story+that+has+been
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+painful+for+me+it+s+been
found 2 videos: [['/talks/jacqueline_novogratz_patient_capitalism', '2007'], ['/talks/emily_levine_a_theory_of_everything', '2009']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+tough+journey+for+me+traveling+the+world+telling+my+story+in+form+of+a+book
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=also+telling+it+like+now++and+also+the+easiest+one+was+when+i+was+doing+it+in+form+of+a+music+so+i+have
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=branded+myself+as+a+war+child
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+doing+this+because+of+an+old+lady+in+my
error: request timeout
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+is+no+newspaper+to+cover+her+pain+and+what+she+wants+to+change+in+this+society++and+i+m+doing+it+for+a+young+man
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+want+to+create+a+change+and+has+no+way+to+project+his+voice+because+he+can+t+write
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+there+is+no+internet+like+facebook+myspace+youtube+for+them+to
found 1 videos: [['/talks/emmanuel_jal_the_music_of_a_war_child', '2009']]
selected: /talks/emmanuel_jal_the_music_of_a_war_child
sleep 3 seconds to avoid blocking
------<681>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EmmaTeeling_2012X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+i+want+you+all+to+do+right+now
found 11 videos: [['/talks/leana_wen_what_your_doctor_won_t_disclose', '2014'], ['/talks/young_ha_kim_be_an_artist_right_now', '2013'], ['/talks/susan_etlinger_what_do_we_do_with_all_this_big_data', '2014'], ['/talks/tim_berners_lee_a_magna_carta_for_the_web', '2014'], ['/talks/joi_ito_want_to_innovate_become_a_now_ist', '2014'], ['/talks/neil_burgess_how_your_brain_tells_you_where_you_are', '2012'], ['/talks/shlomo_benartzi_saving_for_tomorrow_tomorrow', '2012'], ['/talks/chris_hadfield_what_i_learned_from_going_blind_in_space', '2014'], ['/talks/jenna_mccarthy_what_you_don_t_know_about_marriage', '2012'], ['/talks/boyd_varty_what_i_learned_from_nelson_mandela', '2013'], ['/talks/peter_doolittle_how_your_working_memory_makes_sense_of_the_world', '2013']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+to+think+of+this+mammal+that+i+m+going+to+describe+to+you+the+first+thing+i+m+going+to+tell+you+about+this+mammal
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+that+it+is+essential+for+our+ecosystems+to
found 8 videos: [['/talks/courtney_stephens_a_brief_history_of_melancholy', '2014'], ['/talks/emma_teeling_the_secret_of_the_bat_genome', '2012'], ['/talks/alex_steffen_the_shareable_future_of_cities', '2011'], ['/talks/beverly_dereck_joubert_life_lessons_from_big_cats', '2010'], ['/talks/nina_tandon_caring_for_engineered_tissue', '2011'], ['/talks/sebastiao_salgado_the_silent_drama_of_photography', '2013'], ['/talks/nick_hanauer_beware_fellow_plutocrats_the_pitchforks_are_coming', '2014'], ['/talks/brian_skerry_the_ocean_s_glory_and_horror', '2010']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+we+remove+this+mammal+from+our+ecosystems++they+simply+will+not+work+that+s+the+first+thing
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+second+thing+is+that+due+to+the+unique+sensory+abilities+of+this+mammal
found 1 videos: [['/talks/emma_teeling_the_secret_of_the_bat_genome', '2012']]
selected: /talks/emma_teeling_the_secret_of_the_bat_genome
sleep 4 seconds to avoid blocking
------<682>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EmtithalMahmoud_2016P.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+ten+years+old+when+i+learned+what+the+word+genocide+meant+it
found 2 videos: [['/talks/emtithal_mahmoud_a_young_poet_tells_the_story_of_darfur', '2017'], ['/talks/christian_picciolini_my_descent_into_america_s_neo_nazi_movement_and_how_i_got_out', '2018']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+two+thousand+and+three+and+my+people+were+being+brutally+attacked+because+of+their+race+hundreds
found 1 videos: [['/talks/emtithal_mahmoud_a_young_poet_tells_the_story_of_darfur', '2017']]
selected: /talks/emtithal_mahmoud_a_young_poet_tells_the_story_of_darfur
sleep 1 seconds to avoid blocking
------<683>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EnricSala_2010Z.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+tell+you+two+things+today+one+is+what+we+have+lost+and+two+a+way+to+bring+it+back++and+let+me+start+with+this+this+is+my+baseline
found 1 videos: [['/talks/enric_sala_glimpses_of_a_pristine_ocean', '2010']]
selected: /talks/enric_sala_glimpses_of_a_pristine_ocean
sleep 2 seconds to avoid blocking
------<684>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EnriquePenelosa_2013Z.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+developing+world+cities+is+a+very+peculiar+challenge++because+different+from+health+or+education+or+housing
found 1 videos: [['/talks/enrique_penalosa_why_buses_represent_democracy_in_action', '2013']]
selected: /talks/enrique_penalosa_why_buses_represent_democracy_in_action
sleep 1 seconds to avoid blocking
------<685>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EOWilson_2007.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=after+two+days+here+i+declare+myself+boggled+and+enormously+impressed
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+are+one+of+the+great+hopes+not+just+for+american+achievement
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+science+and+technology+but+for+the+whole+world
found 5 videos: [['/talks/billy_graham_on_technology_and_faith', '2008'], ['/talks/bill_joy_what_i_m_worried_about_what_i_m_excited_about', '2008'], ['/talks/robert_ballard_the_astonishing_hidden_world_of_the_deep_ocean', '2008'], ['/talks/kary_mullis_play_experiment_discover', '2009'], ['/talks/jeff_hawkins_how_brain_science_will_change_computing', '2007']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+come++however+on+a+special+mission+on+behalf+of
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+million+trillion+insects+and+other+small+creatures
found 1 videos: [['/talks/e_o_wilson_my_wish_build_the_encyclopedia_of_life', '2007']]
selected: /talks/e_o_wilson_my_wish_build_the_encyclopedia_of_life
sleep 3 seconds to avoid blocking
------<686>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EOWilson_2012P.stm
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+from+a+book+i+m+preparing+called+letters+to+a+young+scientist+i+d+thought+it+d+be+appropriate+to
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=present+it+on+the+basis+that+i+have+had+extensive+experience+in
found 7 videos: [['/talks/e_o_wilson_advice_to_a_young_scientist', '2012'], ['/talks/majora_carter_3_stories_of_local_eco_entrepreneurship', '2010'], ['/talks/atul_gawande_how_do_we_heal_medicine', '2012'], ['/talks/thomas_p_campbell_weaving_narratives_in_museum_galleries', '2012'], ['/talks/gabe_zichermann_how_games_make_kids_smarter', '2011'], ['/talks/lisa_harouni_a_primer_on_3d_printing', '2012'], ['/talks/vikram_patel_mental_health_for_all_by_involving_all', '2012']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=teaching+counseling+scientists+across+a+broad+array+of+fields
found 1 videos: [['/talks/e_o_wilson_advice_to_a_young_scientist', '2012']]
selected: /talks/e_o_wilson_advice_to_a_young_scientist
sleep 1 seconds to avoid blocking
------<687>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ErezLiebermanAiden_2011X.stm
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+worth+a+thousand+words++but+we+at+harvard
found 3 videos: [['/talks/jean_baptiste_michel_erez_lieberman_aiden_what_we_learned_from_5_million_books', '2011'], ['/talks/laurie_garrett_lessons_from_the_1918_flu', '2009'], ['/talks/paul_bloom_the_origins_of_pleasure', '2011']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=were+wondering+if+this+was+really+true
found 11 videos: [['/talks/pavan_sukhdev_put_a_value_on_nature', '2011'], ['/talks/elizabeth_loftus_how_reliable_is_your_memory', '2013'], ['/talks/tim_harford_trial_error_and_the_god_complex', '2011'], ['/talks/gordon_brown_global_ethic_vs_national_interest', '2009'], ['/talks/kelly_mcgonigal_how_to_make_stress_your_friend', '2013'], ['/talks/david_deutsch_a_new_way_to_explain_explanation', '2009'], ['/talks/cameron_russell_looks_aren_t_everything_believe_me_i_m_a_model', '2013'], ['/talks/ivan_oransky_are_we_over_medicalized', '2012'], ['/talks/scott_mccloud_the_visual_magic_of_comics', '2009'], ['/talks/david_pogue_cool_tricks_your_phone_can_do', '2009'], ['/talks/keith_nolan_deaf_in_the_military', '2012']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+we+assembled+a+team+of+experts+spanning+harvard
found 1 videos: [['/talks/jean_baptiste_michel_erez_lieberman_aiden_what_we_learned_from_5_million_books', '2011']]
selected: /talks/jean_baptiste_michel_erez_lieberman_aiden_what_we_learned_from_5_million_books
sleep 4 seconds to avoid blocking
------<688>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EricaFrenkel_2011X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+talk+to+you+today+about+the+design+of+medical+technology+for
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+study+health+systems+in+these+countries++and+one+of+the+major+gaps+in+care++almost+across+the+board+is+access+to+safe
found 1 videos: [['/talks/erica_frenkel_the_universal_anesthesia_machine', '2012']]
selected: /talks/erica_frenkel_the_universal_anesthesia_machine
sleep 3 seconds to avoid blocking
------<689>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EricBerlow_2010G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+you+re+faced+with+a+complex+problem+well+i+hope+to+change+that+in+less+than+three+minutes++so+i+hope+to+convince+you+that+complex+doesn+t+always+equal+complicated
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fresh+out+of+the+oven+is+complex+but+a+curry+onion+green+olive+poppy+cheese+bread+is+complicated
found 1 videos: [['/talks/eric_berlow_simplifying_complexity', '2010']]
selected: /talks/eric_berlow_simplifying_complexity
sleep 4 seconds to avoid blocking
------<690>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EricBerlow_2013U.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=an+ecologist+and+sean+s+a+physicist
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+both+study+complex+networks++and+we+met+a+couple+years+ago+when+we+discovered+that+we+had+both+given+a+short+ted+talk+about+the+ecology+of+war+and+we+realized+that+we
found 1 videos: [['/talks/eric_berlow_and_sean_gourley_mapping_ideas_worth_spreading', '2013']]
selected: /talks/eric_berlow_and_sean_gourley_mapping_ideas_worth_spreading
sleep 1 seconds to avoid blocking
------<691>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EricDishman_2009P.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+think+about+the+phone+and+intel+has+tested+a+lot+of+the+things+i+m+going+to+show+you+over+the+last
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ten+years+in+about+six+hundred+elderly+households+three+hundred+in+ireland+and+three+hundred+in+portland
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=trying+to+understand+how+do+we+measure+and+monitor+behavior+in+a+medically+meaningful+way
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+if+you+think+about+the+phone+right++it+s+something+that+we+can+use+for+some+incredible+ways+to+help+people+actually+take+the+right+medication+at+the+right+time+we+re+testing+these+kinds+of+simple+sensor+network+technologies
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+home+so+that+any+phone+that+a+senior+is+already+comfortable+with+can+help+them+deal+with+their+medications+and+a+lot+of+what+they+do+is+they+pick+up+the+phone+and+it+s+our+system+whispering+to+them+which+pill+they+need+to+take+and+they+fake+like+they+re+having+a+conversation+with+a+friend+and+they+re+not+embarrassed+by
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+meds+caddy+that+s+ugly+that+sits+on+their+kitchen+table+and+says+i+m+old+i+m+frail++it+s+surreptitious+technology+that+s+helping+them+do+a+simple+task+of+taking+the+right+pill+at+the+right+time+now+we+also+do+some+pretty+amazing+things+with+these+phones
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+moment+when+you+answer+the+phone+is+a+cognitive+test+every+time+that+you+do+it
found 1 videos: [['/talks/eric_dishman_take_health_care_off_the_mainframe', '2010']]
selected: /talks/eric_dishman_take_health_care_off_the_mainframe
sleep 1 seconds to avoid blocking
------<692>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EricDishman_2013S.stm
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+personal+friends+and+stories+with+you+that+i+ve+actually+never+talked+about+in+public+before+to+help+illustrate+the+idea+and+the+need+and+the+hope+for+us+to+reinvent+our+health+care+system+around+the+world
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=twenty+four+years+ago+i+had+a+sophomore+in
found 1 videos: [['/talks/eric_dishman_health_care_should_be_a_team_sport', '2013']]
selected: /talks/eric_dishman_health_care_should_be_a_team_sport
sleep 4 seconds to avoid blocking
------<693>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EricGiler_2009G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=early+visions+of+wireless+power+actually+were+thought+of+by+nikola+tesla
found 1 videos: [['/talks/eric_giler_a_demo_of_wireless_electricity', '2009']]
selected: /talks/eric_giler_a_demo_of_wireless_electricity
sleep 2 seconds to avoid blocking
------<694>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EricHaseltine_2015P.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+share+with+you+my+passion+for+science++i+m+not+talking+about+science+that+takes+baby+steps
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+talking+about+science+that+takes+enormous+leaps++i+m+talking
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+talking+revolutionary+science+that+turns+the+world+on+its+head+in+a+moment++i+m+going+to+talk+about+two+ideas+that+might+do+this
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+say+might+because+with+revolutionary+ideas+most+are+flat+wrong+and+even+those+that+are+right+seldom+have+the+impact+that+we+want+them+to+have
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+explain+why+i+picked+two+ideas+in+particular+i+m+going+to+start+with+a+mystery
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=compulsively+thorough+doctor+who+ran+two+maternity+clinics+they+were+identical+except+for+one+thing
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=women+were+dying+of+high+fevers+soon+after+giving+birth+three+times+more+often
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+one+of+the+clinics+than+at+the+other+trying+to+figure+out+what+the+difference+was+that+caused+this+semmelweis+looked+at+everything+he+could+sanitation
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+puzzle+went+unsolved+until+he+happened+to+autopsy+a+doctor+who+died+of+an+infected+scalpel+cut
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+doctor+s+symptoms+were+identical+to+those+of+the+mothers+who+were+dying+how+was+that+possible+how+could+a+male+doctor+get+the+same+thing+as+new+mothers
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=semmelweis+reconstructed+everything+the+doctor+had+done+right+before+he+got+sick
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=gotten+in+his+wound+that+killed+him+with+growing+excitement
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=looked+for+any+connection+he+could+between+dead+bodies+in+the+morgue+and+dead+mothers+in+his+delivery+room++and+he
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=found+it+it+turned+out+that+at+the+hospital+with+the+high+death+rate+but+not+the+others
found 2 videos: [['/talks/jim_yong_kim_doesn_t_everyone_deserve_a_chance_at_a_good_life', '2017'], ['/talks/adam_driver_my_journey_from_marine_to_actor', '2016']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=were+contaminating+the+doctors++hands+and+killing+his+mothers++so+he+ordered+the+doctors+to+sterilize+their+hands+and+the+deaths+stopped
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=had+discovered+infectious+disease++but+the+doctors+of+the+day+thought+he+was+crazy++because+they+knew++and+had+for+hundreds+of+years
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=caused+disease+not+these+hypothetical+particles+that+you+couldn+t+see+it+took+twenty+years
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+frenchman+louis+pasteur+to+prove+that+semmelweis+was+right
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=pasteur+was+an+agricultural+chemist+who+tried+to+figure+out+why+milk+and+beer+spoiled+so+often++he+found+that+bacteria
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+also+found+that+bacteria+could+kill+people+in+exactly+the+same+way+that+semmelweis+s+patients+were+dying
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+now+look+at+what+i+want+to+talk+about+tonight+in+two+ideas
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+saw+it+with+semmelweis+that+he+was+a+revolutionary
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+did+it+for+two+reasons+one+he+opened+our+eyes+to+a+completely+new+world++we+d+known+since+the
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=1680s+about+bacteria+we+just+didn+t+know+that+bacteria+killed+people+and+he+also+demolished
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fond+ideas+that+people+kept+close+to+their+heart+miasmas+didn+t+kill+people+bacteria+killed+people
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+this+brings+me+to+the+two+ideas+i+want+to+talk+about+tonight++one+has+opened+our+eyes+to+a+completely+new+universe++and+the+other
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+s+get+started+with+dr+eric+betzig+he+s+a+physicist+who+has+opened+our+eyes+to+an+entirely+new+world
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+violating+the+laws+of+physics
found 1 videos: [['/talks/john_green_the_nerd_s_guide_to_learning_everything_online', '2015']]
selected: /talks/john_green_the_nerd_s_guide_to_learning_everything_online
sleep 3 seconds to avoid blocking
------<695>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EricLiu_2013Z.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=teacher+and+a+practitioner+of+civics+in+america+now+i+will+kindly+ask+those+of+you+who+have+just+fallen+asleep+to+please+wake+up
found 1 videos: [['/talks/eric_liu_why_ordinary_people_need_to_understand_power', '2014']]
selected: /talks/eric_liu_why_ordinary_people_need_to_understand_power
sleep 5 seconds to avoid blocking
------<696>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EricLiu_2016S.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=game+is+rigged+my+vote+won+t+count
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+choices+are+terrible+voting+is+for+suckers++perhaps+you+ve+thought+some+of+these+things++perhaps+you+ve+even+said+them
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+wouldn+t+be+alone+and+you+wouldn+t+be+entirely+wrong++the+game+of+public+policy+today+is+rigged+in+many+ways++how+else+would
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=more+than+half+of+federal+tax+breaks
found 2 videos: [['/talks/eric_liu_there_s_no_such_thing_as_not_voting', '2016'], ['/talks/jessica_shortall_the_us_needs_paid_family_leave_for_the_sake_of_its_future', '2015']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=flow+up+to+the+wealthiest+five+percent+of+americans+and+our+choices+indeed+are+often+terrible+for+many+people+across+the+political
found 1 videos: [['/talks/eric_liu_there_s_no_such_thing_as_not_voting', '2016']]
selected: /talks/eric_liu_there_s_no_such_thing_as_not_voting
sleep 3 seconds to avoid blocking
------<697>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EricSanderson_2009G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+substance+of+things+unseen+cities+past+and+future
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+oxford++perhaps+we+can+use+lewis+carroll+and+look+in+the+looking+glass+that+is+new+york+city
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+try+and+see+our+true+selves++or+perhaps+pass+through+to+another+world
found 4 videos: [['/talks/eric_sanderson_new_york_before_the_city', '2009'], ['/talks/sherwin_nuland_the_extraordinary_power_of_ordinary_people', '2009'], ['/talks/jennifer_8_lee_the_hunt_for_general_tso', '2008'], ['/talks/aimee_mullins_the_opportunity_of_adversity', '2010']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+in+the+words+of+f+scott+fitzgerald
found 2 videos: [['/talks/eric_sanderson_new_york_before_the_city', '2009'], ['/talks/ed_ulbrich_how_benjamin_button_got_his_face', '2009']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+the+moon+rose+higher++the+inessential+houses+began+to+melt+away+until+gradually+i+became+aware+of+the+old+island+here+that+once+flowered+for+dutch+sailors++eyes
found 1 videos: [['/talks/eric_sanderson_new_york_before_the_city', '2009']]
selected: /talks/eric_sanderson_new_york_before_the_city
sleep 4 seconds to avoid blocking
------<698>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EricTopol_2009P.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=does+anybody+know+when+the+stethoscope+was+invented
found 1 videos: [['/talks/eric_topol_the_wireless_future_of_medicine', '2010']]
selected: /talks/eric_topol_the_wireless_future_of_medicine
sleep 5 seconds to avoid blocking
------<699>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EricWhitacre_2011.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+wanted+to+be+a+rock+star++i+dreamed+of+it+and+that+s+all+i+dreamed+of+to+be+more+accurate+i+wanted+to+be+a+pop+star++this+was+in+the+late++80s+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=mostly+i+wanted+to+be+the+fifth+member+of+depeche+mode+or+duran
found 1 videos: [['/talks/eric_whitacre_a_virtual_choir_2_000_voices_strong', '2011']]
selected: /talks/eric_whitacre_a_virtual_choir_2_000_voices_strong
sleep 4 seconds to avoid blocking
------<700>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EricWhitacre_2013.stm
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=maybe+the+most+profound+and+transformative+experience+of+my+life+i+was+in+the+third+year+of+my+seven+year+undergraduate+degree
found 1 videos: [['/talks/eric_whitacre_virtual_choir_live', '2013']]
selected: /talks/eric_whitacre_virtual_choir_live
sleep 3 seconds to avoid blocking
------<701>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EricXLi_2013G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+name+is+eric+li+and+i+was+born+here
found 1 videos: [['/talks/eric_x_li_a_tale_of_two_political_systems', '2013']]
selected: /talks/eric_x_li_a_tale_of_two_political_systems
sleep 5 seconds to avoid blocking
------<702>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ErikaGregory_2016W.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+me+ask+you+all+a+question
found 16 videos: [['/talks/petter_johansson_do_you_really_know_why_you_do_what_you_do', '2018'], ['/talks/daniel_susskind_3_myths_about_the_future_of_work_and_why_they_re_not_true', '2018'], ['/talks/stacey_abrams_3_questions_to_ask_yourself_about_everything_you_do', '2018'], ['/talks/ash_beckham_when_to_take_a_stand_and_when_to_let_it_go', '2015'], ['/talks/the_ted_interview_sir_ken_robinson_still_wants_an_education_revolution', '2018'], ['/talks/susan_etlinger_what_do_we_do_with_all_this_big_data', '2014'], ['/talks/jorge_ramos_why_journalists_have_an_obligation_to_challenge_power', '2017'], ['/talks/ricardo_semler_how_to_run_a_company_with_almost_no_rules', '2015'], ['/talks/chris_anderson_ted_s_secret_to_great_public_speaking', '2016'], ['/talks/susan_colantuono_the_career_advice_you_probably_didn_t_get', '2014'], ['/talks/diane_wolk_rogers_a_parkland_teacher_s_homework_for_us_all', '2018'], ['/talks/kenneth_lacovara_hunting_for_dinosaurs_showed_me_our_place_in_the_universe', '2016'], ['/talks/oscar_schwartz_can_a_computer_write_poetry', '2016'], ['/talks/j_d_vance_america_s_forgotten_working_class', '2016'], ['/talks/tania_simoncelli_should_you_be_able_to_patent_a_human_gene', '2016'], ['/talks/audrey_choi_how_to_make_a_profit_while_making_a_difference', '2016']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+much+weapons+grade+nuclear+material+do+you+think+it+would+take+to+level+a+city+the+size+of+san+francisco
found 1 videos: [['/talks/erika_gregory_the_world_doesn_t_need_more_nuclear_weapons', '2017']]
selected: /talks/erika_gregory_the_world_doesn_t_need_more_nuclear_weapons
sleep 3 seconds to avoid blocking
------<703>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ErikBrynjolfsson_2013.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+s+start+the+story+one+hundred+and+twenty+years+ago+when+american+factories+began+to+electrify+their+operations++igniting+the
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+amazing+thing+is+that+productivity+did+not+increase+in+those+factories+for+thirty+years
found 1 videos: [['/talks/erik_brynjolfsson_the_key_to_growth_race_with_the_machines', '2013']]
selected: /talks/erik_brynjolfsson_the_key_to_growth_race_with_the_machines
sleep 1 seconds to avoid blocking
------<704>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ErikHersman_2009U.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+m+here+to+tell+you+a+story+of+success+from+africa
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+year+and+a+half+ago
found 5 videos: [['/talks/roz_savage_why_i_m_rowing_across_the_pacific', '2010'], ['/talks/marc_koska_1_3m_reasons_to_re_invent_the_syringe', '2009'], ['/talks/dan_meyer_math_class_needs_a_makeover', '2010'], ['/talks/jody_williams_a_realistic_vision_for_world_peace', '2011'], ['/talks/graham_hill_why_i_m_a_weekday_vegetarian', '2010']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=four+of+the+five+people+who+are+full+time+members+at+ushahidi++which+means+testimony+in+swahili
found 1 videos: [['/talks/erik_hersman_reporting_crisis_via_texting', '2009']]
selected: /talks/erik_hersman_reporting_crisis_via_texting
sleep 1 seconds to avoid blocking
------<705>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ErikJohansson_2011S.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+here+to+to+share+my+photography++or
found 2 videos: [['/talks/golan_levin_art_that_looks_back_at_you', '2009'], ['/talks/anthony_atala_growing_new_organs', '2010']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+it+photography++because+of+course+this+is+a+photograph+that+you+can+t+take+with+your+camera
found 1 videos: [['/talks/golan_levin_art_that_looks_back_at_you', '2009']]
selected: /talks/golan_levin_art_that_looks_back_at_you
sleep 4 seconds to avoid blocking
------<706>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ErikSchlangen_2012X.stm
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+probably+all+agree+with+me+that
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+a+very+nice+road+it+s+made+of+asphalt++and+asphalt+is+a+very+nice+material+to+drive+on++but+not+always
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=especially+not+on+these+days+as+today+when+it+s+raining+a+lot
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=then+you+can+have+a+lot+of+splash+water+in+the+asphalt++and+especially+if+you+then+ride+with+your+bicycle++and+pass+these+cars++then
found 1 videos: [['/talks/erik_schlangen_a_self_healing_asphalt', '2013']]
selected: /talks/erik_schlangen_a_self_healing_asphalt
sleep 3 seconds to avoid blocking
------<707>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ErinMcKean_2007.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+you+lexicography+the+practice+of+compiling+dictionaries++notice+we+re+very+specific+that+word
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=dictionary+is+not+carved+out+of+a+piece+of+granite+out+of+a+lump+of+rock+it+s+made+up+of+lots+of+little+bits+it+s+little+discrete+that+s+spelled
found 1 videos: [['/talks/erin_mckean_the_joy_of_lexicography', '2007']]
selected: /talks/erin_mckean_the_joy_of_lexicography
sleep 2 seconds to avoid blocking
------<708>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ErinMcKean_2014Y.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+a+lexicographer+i+make+dictionaries+and+my+job+as+a+lexicographer+is+to+try+to+put+all+the+words+possible+into+the+dictionary
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+job+is+not+to+decide+what+a+word+is
found 12 videos: [['/talks/shane_koyczan_to_this_day_for_the_bullied_and_beautiful', '2013'], ['/talks/shereen_el_feki_a_little_told_tale_of_sex_and_sensuality', '2014'], ['/talks/john_lloyd_an_animated_tour_of_the_invisible', '2012'], ['/talks/andrew_solomon_depression_the_secret_we_share', '2013'], ['/talks/christiana_figueres_the_inside_story_of_the_paris_climate_agreement', '2016'], ['/talks/cesar_harada_a_novel_idea_for_cleaning_up_oil_spills', '2012'], ['/talks/zeynep_tufekci_machine_intelligence_makes_human_morals_more_important', '2016'], ['/talks/erin_mckean_go_ahead_make_up_new_words', '2014'], ['/talks/rachel_botsman_the_currency_of_the_new_economy_is_trust', '2012'], ['/talks/henry_evans_and_chad_jenkins_meet_the_robots_for_humanity', '2013'], ['/talks/hilary_cottam_social_services_are_broken_how_we_can_fix_them', '2015'], ['/talks/jeff_hancock_the_future_of_lying', '2012']]
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+your+job+everybody+who+speaks+english+decides+together
found 2 videos: [['/talks/erin_mckean_go_ahead_make_up_new_words', '2014'], ['/talks/amy_webb_how_i_hacked_online_dating', '2013']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+s+a+word+and+what+s+not+a+word+every+language+is+just+a+group+of+people+who+agree+to+understand+each+other
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now++sometimes+when+people+are+trying+to+decide+whether+a+word+is+good+or+bad
found 3 videos: [['/talks/erin_mckean_go_ahead_make_up_new_words', '2014'], ['/talks/mick_mountz_what_happens_inside_those_massive_warehouses', '2012'], ['/talks/astro_teller_the_unexpected_benefit_of_celebrating_failure', '2016']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+don+t+really+have+a+good+reason+so+they+say+something+like+because+grammar
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+don+t+actually+really+care+about+grammar+too+much+don+t+tell+anybody++but+the+word+grammar+actually+there+are+two+kinds+of+grammar
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+the+kind+of+grammar+that+lives+inside+your+brain+and+if+you+re+a+native+speaker+of+a+language+or+a+good+speaker+of+a+language+it+s+the+unconscious+rules+that+you+follow+when+you+speak+that+language
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+is+what+you+learn+when+you+learn+a+language+as+a+child+and+here+s+an+example+this+is+a+wug+right+it+s+a+wug
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know+how+to+make+the+plural+of+wug+that+rule+lives+in+your+brain+you+never+had+to+be+taught+this+rule+you+just+understand+it+this+is+an+experiment+that+was+invented+by+a+professor+at+[+boston+university+]+named+jean+berko+gleason+back+in
found 1 videos: [['/talks/erin_mckean_go_ahead_make_up_new_words', '2014']]
selected: /talks/erin_mckean_go_ahead_make_up_new_words
sleep 5 seconds to avoid blocking
------<709>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ErnestMadu_2007G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+is+interesting+that+in+the+united+states+the+most+significant+health+care+budget+goes+to+cardiovascular+disease+care+whether+it+s+private+or+public
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+no+comparison+at+all+in+africa+where+it+is+a+major+killer+it+is+totally
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ignored++and+that+situation+cannot+be+right+we+must+do+something+about+it+a+health+status+of+a+nation
found 1 videos: [['/talks/ernest_madu_world_class_health_care', '2008']]
selected: /talks/ernest_madu_world_class_health_care
sleep 4 seconds to avoid blocking
------<710>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ErnestoSirolli_2012X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=everything+i+do++and+everything+i+do+professionally+my+life
found 7 videos: [['/talks/raghava_kk_my_5_lives_as_an_artist', '2010'], ['/talks/boyd_varty_what_i_learned_from_nelson_mandela', '2013'], ['/talks/ernesto_sirolli_want_to_help_someone_shut_up_and_listen', '2012'], ['/talks/rebecca_onie_what_if_our_health_care_system_kept_us_healthy', '2012'], ['/talks/brene_brown_the_power_of_vulnerability', '2010'], ['/talks/ralph_langner_cracking_stuxnet_a_21st_century_cyber_weapon', '2011'], ['/talks/young_ha_kim_be_an_artist_right_now', '2013']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=has+been+shaped+by+seven+years+of+work+as+a+young+man+in
found 11 videos: [['/talks/eric_mead_the_magic_of_the_placebo', '2010'], ['/talks/bryan_stevenson_we_need_to_talk_about_an_injustice', '2012'], ['/talks/charles_fleischer_all_things_are_moleeds', '2010'], ['/talks/michael_green_what_the_social_progress_index_can_reveal_about_your_country', '2014'], ['/talks/ernesto_sirolli_want_to_help_someone_shut_up_and_listen', '2012'], ['/talks/sheena_iyengar_the_art_of_choosing', '2010'], ['/talks/francis_collins_we_need_better_drugs_now', '2013'], ['/talks/daphne_bavelier_your_brain_on_video_games', '2012'], ['/talks/krista_tippett_reconnecting_with_compassion', '2011'], ['/talks/yang_lan_the_generation_that_s_remaking_china', '2011'], ['/talks/jack_horner_where_are_the_baby_dinosaurs', '2012']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+look+young+but+i+m+not
found 6 videos: [['/talks/cameron_russell_looks_aren_t_everything_believe_me_i_m_a_model', '2013'], ['/talks/raghava_kk_what_s_your_200_year_plan', '2012'], ['/talks/jay_silver_hack_a_banana_make_a_keyboard', '2013'], ['/talks/charles_hazlewood_trusting_the_ensemble', '2011'], ['/talks/anthony_atala_growing_new_organs', '2010'], ['/talks/harsha_bhogle_the_rise_of_cricket_the_rise_of_india', '2010']]
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+projects+of+technical+cooperation+with+african+countries+i+worked+for+an+italian+ngo
found 1 videos: [['/talks/ernesto_sirolli_want_to_help_someone_shut_up_and_listen', '2012']]
selected: /talks/ernesto_sirolli_want_to_help_someone_shut_up_and_listen
sleep 3 seconds to avoid blocking
------<711>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EstaSoler_2013W.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+you+to+imagine+what+a+breakthrough+this+was+for+women+who+were+victims+of+violence+in+the+1980s
found 1 videos: [['/talks/esta_soler_how_we_turned_the_tide_on_domestic_violence_hint_the_polaroid_helped', '2014']]
selected: /talks/esta_soler_how_we_turned_the_tide_on_domestic_violence_hint_the_polaroid_helped
sleep 5 seconds to avoid blocking
------<712>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EstherDuflo_2010.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=going+to+be+clear+in+a+moment++maybe+a+sobering+thought
found 2 videos: [['/talks/esther_duflo_social_experiments_to_fight_poverty', '2010'], ['/talks/ray_anderson_the_business_logic_of_sustainability', '2009']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+suspect+many+of+you+gave+something+to+the+people+of+haiti+this+year+and+there+is+something+else+i+believe+in+the+back+of+your+mind
found 1 videos: [['/talks/esther_duflo_social_experiments_to_fight_poverty', '2010']]
selected: /talks/esther_duflo_social_experiments_to_fight_poverty
sleep 3 seconds to avoid blocking
------<713>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EstherPerel_2013S.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=why+does+good+sex+so+often+fade+even+for+couples+who+continue+to+love+each+other+as+much+as+ever
found 2 videos: [['/talks/esther_perel_the_secret_to_desire_in_a_long_term_relationship', '2013'], ['/talks/bill_and_melinda_gates_why_giving_away_our_wealth_has_been_the_most_satisfying_thing_we_ve_done', '2014']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+why+does+good+intimacy+not+guarantee+good+sex+contrary+to+popular+belief+or+the+next+question+would+be+can+we+want
found 1 videos: [['/talks/esther_perel_the_secret_to_desire_in_a_long_term_relationship', '2013']]
selected: /talks/esther_perel_the_secret_to_desire_in_a_long_term_relationship
sleep 5 seconds to avoid blocking
------<714>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EstherPerel_2015.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+why+do+happy+people+cheat++and+when+we+say+infidelity+what+exactly+do+we+mean
found 1 videos: [['/talks/esther_perel_rethinking_infidelity_a_talk_for_anyone_who_has_ever_loved', '2015']]
selected: /talks/esther_perel_rethinking_infidelity_a_talk_for_anyone_who_has_ever_loved
sleep 3 seconds to avoid blocking
------<715>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EthanNadelmann_2014G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+war+on+drugs+done+to+the+world
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=look+at+the+murder+and+mayhem+in+mexico+central+america++so+many+other+parts+of+the+planet+the
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=global+black+market+estimated+at+three+hundred+billion+dollars+a+year++prisons+packed+in+the+united+states+and+elsewhere
found 1 videos: [['/talks/ethan_nadelmann_why_we_need_to_end_the_war_on_drugs', '2014']]
selected: /talks/ethan_nadelmann_why_we_need_to_end_the_war_on_drugs
sleep 1 seconds to avoid blocking
------<716>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EthanZuckerman_2010G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+an+american+which+means+generally+i+ignore+football+unless+it+involves+guys+my+size+or+bruno+s+size+running+into+each+other+at+extremely+high+speeds
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+said++it+s+been+really+hard+to+ignore+football+for+the+last+couple+of+weeks++i+go+onto+twitter+there+are+all+these+strange+words
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+i+ve+never+heard+before+fifa++vuvuzela+weird+jokes+about+octopi++but+the+one+that+s+really+been+sort+of+stressing+me+out+that+i+haven+t+been+able+to+figure+out+is+this+phrase+cala+a+boca+galvao
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+ve+gone+onto+twitter+in+the+last+couple+of+weeks+you+ve+probably+seen+this++it+s+been+a+major+trending+topic++being+a+monolingual+american+i+obviously+don+t+know+what+the+phrase
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+went+onto+twitter+and+i+asked+some+people+if+they+could+explain+to+me+cala+a+boca+galvao+and+fortunately+my+brazilian+friends+were+more+than+ready+to+help
found 1 videos: [['/talks/ethan_zuckerman_listening_to_global_voices', '2010']]
selected: /talks/ethan_zuckerman_listening_to_global_voices
sleep 1 seconds to avoid blocking
------<717>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EuvinNaidoo_2007G.stm
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+rather+i+should+say+welcome+home+because+this+is+where+it+all+really+began+isn+t+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=looking+at+fossils+dating+back+several+millions+of+years+it+all+points+to+evidence+that+life+for+the+human+species+as+we+know+it
found 2 videos: [['/talks/euvin_naidoo_why_invest_in_africa', '2007'], ['/talks/spencer_wells_a_family_tree_for_humanity', '2008']]
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+are+on+an+amazing+journey
found 6 videos: [['/talks/david_macaulay_an_illustrated_journey_through_rome', '2008'], ['/talks/aimee_mullins_my_12_pairs_of_legs', '2009'], ['/talks/ray_zahab_my_trek_to_the_south_pole', '2009'], ['/talks/wade_davis_dreams_from_endangered_cultures', '2007'], ['/talks/spencer_wells_a_family_tree_for_humanity', '2008'], ['/talks/barry_schuler_genomics_101', '2009']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+next+four+days+you+re+going+to+hear+stories
found 11 videos: [['/talks/frank_gehry_my_days_as_a_young_rebel', '2008'], ['/talks/al_gore_averting_the_climate_crisis', '2006'], ['/talks/jonathan_harris_the_web_as_art', '2008'], ['/talks/jacqueline_novogratz_patient_capitalism', '2007'], ['/talks/franco_sacchi_a_tour_of_nollywood_nigeria_s_booming_film_industry', '2008'], ['/talks/james_howard_kunstler_the_ghastly_tragedy_of_the_suburbs', '2007'], ['/talks/david_perry_are_games_better_than_life', '2008'], ['/talks/sasa_vucinic_why_we_should_invest_in_a_free_press', '2006'], ['/talks/david_rockwell_a_memorial_at_ground_zero', '2007'], ['/talks/clay_shirky_institutions_vs_collaboration', '2008'], ['/talks/bill_strickland_rebuilding_a_neighborhood_with_beauty_dignity_hope', '2008']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+africa+the+next+chapter+fantastic+tales++anecdotes+from+speakers+but+i+want+to+turn+that+upside+down+for+a+moment
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+get+something+out+on+the+table+and+clear+the+air+so+to+say
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+s+the+worst+thing+you+ve+ever+heard+about+africa++and+this+is+not+a+rhetorical+question
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=want+answers+from+you+go+for+it+the+worst
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+about+africa+the+story+we+have+not+heard+the+stories+that+we+want+to+know+and+the+stories+that+do+exist+about+positive+tales
error: request timeout
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=talk+is+going+to+be+about+investment+opportunities+that+exist+on+this+continent+to+separate+the+rhetoric+from+the+reality++the+fact+from+the+fiction
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+go+to+the+actual+data+and+statistics+that+exist+about+the
error: request timeout
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+the+ground+that+make+africa+a+realistic+investment+opportunity+and+option+for+you
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+let+s+get+going+because+africa+to+some+degree+is+on+a+turnaround
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+turnaround+in+terms+of+how+it+manages+its+image+and+how+it+takes+control+of+its+own+destiny
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+turnarounds+are+part+and+parcel+of+what+i+have+focused+on
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+most+of+my+professional+career
found 1 videos: [['/talks/james_balog_time_lapse_proof_of_extreme_ice_loss', '2009']]
selected: /talks/james_balog_time_lapse_proof_of_extreme_ice_loss
sleep 1 seconds to avoid blocking
------<718>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EvanGrant_2009G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+a+creative+technologist+and+the+focus+of+my+work+is+on+public+installations
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+my+driving+passions+is+this+idea+of+exploring+nature+and+trying+to+find+hidden
found 1 videos: [['/talks/evan_grant_making_sound_visible_through_cymatics', '2009']]
selected: /talks/evan_grant_making_sound_visible_through_cymatics
sleep 2 seconds to avoid blocking
------<719>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EvanWilliams_2009.stm
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+the+ted+stage+i+announced+a+company+i+was+working+with+at+the+time+called+odeo
found 1 videos: [['/talks/evan_williams_the_voices_of_twitter_users', '2009']]
selected: /talks/evan_williams_the_voices_of_twitter_users
sleep 4 seconds to avoid blocking
------<720>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EvaVertes_2005.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+privilege+to+be+here+spending+my+last+day+as+a+teenager++today+i+want+to+talk+to+you+about+the+future++but+first+i
found 1 videos: [['/talks/eva_vertes_meet_the_future_of_cancer_research', '2006']]
selected: /talks/eva_vertes_meet_the_future_of_cancer_research
sleep 3 seconds to avoid blocking
------<721>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EvaZeisel_2001.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=from+was+to+still++and+i+am+illustrating+still
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=still+doing+this+or+that+i+don+t+answer+because+i+m+not+doing+things+still+i+m+doing+it+like+i+always+did
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+did+i+use+the+word
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+do+i+have+my+plans++i+have+my+clients+i+am+doing+my+work+like+i+always+did
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+show+you+my+work+so+you+know+what+i+am+doing+and+why+i+am+here++this+was
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+of+these+things+were+made+during+the+last
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=doing+more+or+less+what+you+see+here+this+is+castleton+china+this+was+an+exhibition
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+the+museum+of+modern+art
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+now+for+sale+at+the+metropolitan+museum+this+is+still+at+the+metropolitan+museum+now+for+sale
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+a+portrait+of+my+daughter+and+myself+these
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=were+just+some+of+the+things
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+call+myself+a+maker+of+things+i+don+t+call+myself+an+industrial+designer
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+i+m+other+things+industrial+designers
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=want+to+make+novel+things++novelty+is+a+concept
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=industrial+design+magazine+i+believe+is+called
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=innovation+innovation+is+not+part+of+the+aim+of+my+work
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=make+things+more+beautiful+more+elegant+more+comfortable
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=than+just+the+craftsmen+do+i+have+so+much+to+say+i+have+to+think+what+i+am+going+to+say
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+to+describe+our+profession+otherwise+we+are+actually
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=concerned+with+the+playful+search+for+beauty+that+means+the+playful+search+for
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=beauty+was+called+the+first+activity+of+man+sarah
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=smith++who+was+a+mathematics+professor+at+mit+wrote+the+playful+search+for+beauty
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+all+useful+qualities+and+all+material
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+beauty+these+are+tiles+the+word+playful+is+a+necessary+aspect+of+our+work
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+actually+one+of+our+problems+is+that
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+for+me+is+now+seventy+five+years++so+how+can+you+without+drying+up
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=make+things+with+the+same+pleasure+as+a+gift+to+others
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+so+long+the+playful+is+therefore+an+important+part+of+our
error: request timeout
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+my+life+as+i+said++i+started+to+do+these+things
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=exhibition+in+the+united+states+was+at+the+sesquicentennial+exhibition+in
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=through+many+countries+and+showed+me+a+great+part+of+the+world
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+not+that+they+took+me+the+work+didn+t+take+me
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=made+the+things+particularly+because+i+wanted+to+use+them+to+see+the+world
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+incredibly+curious+to+see+the+world++and+i+made+all+these+things
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+then+finally+did+take+me+to+see+many+countries
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+many+cultures++i+started
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+taught+me+what+the
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+middle+ages+the+guild+system+that+means+when+i+was+an+apprentice+i+had+to
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=apprentice+myself+in+order+to+become+a+pottery+master
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hierarchy+of+master+journeyman+and+learned+worker
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+an+apprentice+was+very+primitive+that+means+i+had+to+actually+learn
error: request timeout
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=pottery+pottery+by+hand+we+mashed+the+clay+with+our+feet
error: request timeout
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hillside++after+that+it+had+to+be+kneaded+it+had+to+then+go+in+kind+of+a+mangle++and+then+finally
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=throwing++and+there+i+really+worked+as+an+apprentice
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+time+and+finally+i+had+received+a+document+that+i+had
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=accomplished+my+apprenticeship+successfully+that+i+had+behaved+morally
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+also+got+at+the+time+a+workbook+which+explained+my
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+still+have+that+workbook+first+i+set+up+a+shop+in+my+own+garden++and+made+pottery+which+i+sold
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+the+marketplace+in+budapest++and+there+i+was+sitting++and
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+didn+t+mean+it+was+a+boyfriend+like+it+is+meant+today+but+my+boyfriend+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+sat+at+the+market+and+sold+the+pots+my+mother+thought+that+this+was+not+very+proper++so+she+sat+with+us
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=however+after+a+while+there+was+a+new+factory+being+built+in+budapest+a+pottery
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=factory+a+large+one++and+i+visited+it+with+several+ladies+and+asked+all+sorts+of+questions+of+the+director+then
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+director+asked+me+why+do+you+ask+all+these+questions+i+said+i+also+have+a+pottery
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+he+asked+me++could+he+please+visit+me+and+then
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=finally+he+did+and+explained+to+me+that+what+i+did
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+in+my+shop+was+an+anachronism+that+the+industrial+revolution+had+broken+out+and+that+i+rather+should+join
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+factory+there+he+made+an+art+department+for+me
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=where+i+worked+for+several+months++however++everybody+in+the+factory+spent+his+time
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+the+art+department+the+director+there+said+there+were+several+women
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=casting+and+producing+my+designs+now+in+molds++and+this+was+sold+also+to
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=everybody+concerned+himself+much+more+with+the+art+department+that+means+with+my+work+than+making+toilets++so+finally
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+got+a+letter+from+the+center+from+the+bank+who+owned+the+factory+saying+make
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+was+my+end++so+this+gave+me+the+possibility+because+now+i+was+a+journeyman+and+journeymen+also+take+their+satchel
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+see+the+world++so+as+a+journeyman+i+put+an+ad+into+the+paper
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+i+had+studied+that+i+was+a+down+to+earth+potter+s+journeyman+and+i+was+looking+for+a+job+as
error: request timeout
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+accepted+the+one+which+was+farthest+from+home+and+practically+i+thought+halfway+to+america
error: request timeout
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=then+i+first+took+this+job+in+hamburg++at+an
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=art+pottery+where+everything+was+done
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+i+worked+in+a+shop
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=potters++and+the+first+day+i+was+coming+to+take
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=turntable+there+were+three+or+four+turntables+and+one+of
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+smelled+very+bad+so+i+doused+him+in
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=cologne+every+day++which+he+thought+was+very+nice++and+therefore
error: request timeout
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=every+day+which+i+had+to+eat+out+of+courtesy+the+first+day+i+came+to+work+in+this+shop+there+was+on+my
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+wheel+a+surprise+for+me+my+colleagues+had+thoughtfully+put
error: request timeout
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=wheel+where+i+was+supposed+to+work+a+very+nicely+modeled
error: request timeout
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+now+accepted++and+worked+there+for+some+six+months
error: request timeout
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=go+on+like+this+you+will+be+here+till+midnight
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+have+to+tell+you+that+within+five+minutes+i+will+talk+very+fast+and
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=actually+my+work+took+me+to+many+countries+because+i
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=used+my+work+to+fill+my+curiosity++and
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+finally+there+although+i+had+nothing+to+do+i+was+a+foreign+expert++i+became+art+director+of+the+china+and+glass+industry
error: request timeout
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=purges+at+the+beginning+of+stalin+s+purges+i+didn+t+know+that
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hundreds+of+thousands+of+innocent+people+were+arrested+so+i+was+arrested
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=quite+early+in+stalin+s+purges++and+spent+sixteen+months
error: request timeout
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+i+had+successfully+prepared+an+attentat+on+stalin+s+life++this+was+a+very+dangerous
error: request timeout
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+the+end+of+my+five+minutes+i+want+to+tell+you+that+i+actually
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+survived+and+i+m+here++and+since+this+is+the+end+of+the+five+minutes+i+will+moderator+tell+me+when+your+last+trip+to+russia+was
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=invited+me+they+found+out+that+i+had+worked+in++thirty+three+at+this+factory++and+they+came+to+my
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=studio+in+rockland+county+and+brought+the+fifteen+of+their
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=artists+to+visit+me+here++and+they+invited+myself+to+come+to+the+russian+factory+last+summer
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=design+some+dishes++and+since+i+don+t+like+to+travel+alone++they+also+invited
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=daughter+son+in+law+and+granddaughter++so+we+had+a+lovely+trip+to+see
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=russia+today+which+is+not+a+very+pleasant+and+happy+view
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+am+now++if+this+is+the+end
found 0 videos: []
error: no video is found.
sleep 5 seconds to avoid blocking
------<722>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EveEnsler_2004.stm
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+why+i+began+this+piece+i+was+worried+about+vaginas
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+worried+what+we+think+about+vaginas+and+even+more+worried+that+we+don+t+think+about+them
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+worried+about+my+own+vagina++it+needed+a+context+a+culture++a+community+of+other+vaginas
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+is+so+much+darkness+and+secrecy+surrounding+them+like+the+bermuda+triangle+nobody+ever+reports+back+from+there
found 1 videos: [['/talks/eve_ensler_happiness_in_body_and_soul', '2006']]
selected: /talks/eve_ensler_happiness_in_body_and_soul
sleep 1 seconds to avoid blocking
------<723>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EveEnsler_2005G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+it+ll+be+a+relief+to+some+people+and+a+disappointment+to+others+that+i+m+not+going+to+talk+about+vaginas+today
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+began+the+vagina+monologues+because+i+was+worried+about+vaginas+i+m+very+worried+today+about
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+notion+this+world+this+prevailing
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=kind+of+force+of+security++i+see+this+word+hear+this+word+feel+this+word+everywhere++real+security+security+checks+security+watch+security+clearance
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=why+has+all+this+focus+on+security+made+me+feel+so+much+more+insecure
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+does+anyone+mean+when+they+talk+about+real+security++and+why+have+we+as+americans+particularly+become+a+nation+that+strives+for+security+above+all+else
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=security+is+elusive++it+s+impossible+we+all+die+we+all+get+old+we+all+get+sick+people+leave+us++people+change+us
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=nothing+is+secure++and+that+s+actually+the+good+news
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+of+course+unless+your+whole+life+is+about+being+secure
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+that+when+that+is+the+focus+of+your+life+these+are+the+things+that+happen++you+can+t+travel+very+far+or+venture+too+far+outside
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+certain+circle+you+can+t+allow+too+many+conflicting+ideas+into+your+mind+at+one+time+as+they+might+confuse+you+or+challenge+you
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+t+open+yourself+to+new+experiences+new+people+new+ways+of+doing+things+they+might+take+you+off+course
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+t+not+know+who+you+are+so+you+cling+to+hard+matter+identity++you+become+a
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=heterosexual+or+a+homosexual+or+you+never+have+sex+or+at+least+that+s+what+you+say+when+you+identify+yourself
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+become+part+of+an+us+in+order+to+be+secure++you+defend+against+them
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+cling+to+your+land+because+it+is+your+secure+place++you+must+fight+anyone+who+encroaches+upon+it
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+become+your+nation+you+become+your+religion+you+become+whatever+it+is+that+will+freeze+you+numb+you+and+protect+you+from+doubt+or+change+but+all+this+does+actually
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+shut+down+your+mind+in+reality+it+does+not+really+make+you+safer
found 1 videos: [['/talks/ray_kurzweil_the_accelerating_power_of_technology', '2006']]
selected: /talks/ray_kurzweil_the_accelerating_power_of_technology
sleep 3 seconds to avoid blocking
------<724>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EveEnsler_2009I.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+very+happy+to+be+here+in+india
found 1 videos: [['/talks/harsha_bhogle_the_rise_of_cricket_the_rise_of_india', '2010']]
selected: /talks/harsha_bhogle_the_rise_of_cricket_the_rise_of_india
sleep 1 seconds to avoid blocking
------<725>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EveEnsler_2010W.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+a+long+time+there+was+me+and+my+body
found 6 videos: [['/talks/janine_shepherd_a_broken_body_isn_t_a_broken_person', '2012'], ['/talks/eve_ensler_suddenly_my_body', '2011'], ['/talks/lewis_pugh_my_mind_shifting_everest_swim', '2010'], ['/talks/amy_cuddy_your_body_language_may_shape_who_you_are', '2012'], ['/talks/danny_hillis_understanding_cancer_through_proteomics', '2011'], ['/talks/david_blaine_how_i_held_my_breath_for_17_minutes', '2010']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=me+was+composed+of+stories+of+cravings+of+strivings+of+desires+of+the+future
found 1 videos: [['/talks/eve_ensler_suddenly_my_body', '2011']]
selected: /talks/eve_ensler_suddenly_my_body
sleep 4 seconds to avoid blocking
------<726>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EvelynGlennie_2003.stm
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+really+want+to+see+a+snare+drum+at+nine+o+clock+or+so+in+the+morning+laughter
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=anyway+it+s+just+great+to+see+such+a+full+theater++and+really+i+must+thank+herbie+hancock+and+his+colleagues+for+such+a+great+presentation
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=interesting+things+of+course+is+the+combination+of
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+raw+hand+on+the+instrument+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=technology++and+what+he+said+about+listening+to+our+young+people+of+course+my+job+is+all+about
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+to+teach+the+world+to+listen++that+s+my+only+real+aim+in+life
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+sounds+quite+simple+but+actually+it+s+quite+a+big
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+you+look+at+a+piece+of+music+for+example+if+i+just+open+my+little
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+have+here+hopefully+a+piece+of+music
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+is+full+of+little+black+dots+on+the+page+and+you+know
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+read+the+music++so
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=technically+i+can+actually+read+this+i+will+follow+the+instructions+the+tempo+markings+the+dynamics
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+will+do+exactly+as+i+m+told
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+therefore+because+time+is+short++if+i+just+played+you+literally+the+first+maybe
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+very+straightforward+there+s+nothing+too+difficult+about+the+piece+but+here+i+m+being+told+that+the+piece+of+music+is+very+quick
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+being+told+where+to
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=play+on+the+drum+i+m+being+told+which+part+of+the+stick+to+use
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+m+being+told+the+dynamic
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+m+also+being+told+that+the+drum+is+without+snares+snares+on++snares+off++so+therefore
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+on+my+career+would+probably+last+about+five+years+however++what+i+have+to+do+as+a+musician
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+do+everything+that+is+not+on+the+music++everything+that+that+there+isn+t+time+to+learn+from+a+teacher
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+talk+about++even+from+a+teacher++but+it+s+the+things+you+notice+when+you+re+not+actually+with+your+instrument
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+in+fact+become+so+interesting++and+that+you+you+want+to+explore+through+this+tiny+tiny+surface+of+a+drum
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+there+we+experience+the+translation
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+i+look+at+you+and+i+see+a+nice+bright+young+lady+with+a+pink+top+on+i+see+that+you+re+clutching+a+teddy+bear+etc+etc++so+i+get+a+basic+idea+as+to
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+you+might+be+about+what+you+might+like+what+you+might+do+as+a+profession
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=etc+etc+however++that+s+just+the+initial+initial+idea+i+may+have+that+we+all+get+when+we+actually+look
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+try+to+interpret+but+actually+it+s+so+unbelievably+shallow+in+the+same+way+i+look+at+the+music+i+get+a+basic+idea+i+wonder+what+technically+might+be+hard+or
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know+what+i+want+to+do+just+the+basic+feeling
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=enough+and+i+think+what+herbie+said++please+listen
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=listen++we+have+to+listen+to+ourselves+first+of+all+if+i+play+for+example
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=holding+the+stick+where+literally+i+do+not+let+go+of+the+stick+drum
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sound+you+ll+experience+quite+a+lot+of+shock
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=coming+up+through+the+arm+and+you+feel+really+quite+believe+it+or+not+detached+from+the+instrument+and+from+the+stick+stick++even+though+i+m+actually+holding+the+stick+quite+tightly
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+holding+it+tightly+i+feel+strangely+more+detached
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+i+just+simply+let+go+and+allow+my+hand+my+arm+to+be+more+of+a+support+system+suddenly
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+just+feel+at+last+one+with+the+stick+and+one+with+the+drum++and+i+m+doing+far+far+less+so+in+the+same+way+that++i+need+time+with
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+instrument+i+need+time+with+people+in+order+to+interpret+them+not+just+translate
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+interpret+them+if+for+example++i+play+just+a+few+bars+of+a+piece+of+music
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+which+i+think+of+myself+as+a+technician+that+is+someone+who+is+basically+a+percussion+player
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+on+if+i+think+of+myself+as+a+musician
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+a+little+bit+of+a+difference+there+that+is+worth+just+thinking
error: request timeout
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+was+twelve+years+old+and+i+started+playing+timpani+and+percussion++and
error: request timeout
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+are+we+going+to+do+this+you+know+music
error: request timeout
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+said+yes+i+agree+with+that+so+what+s+the+problem
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+he+said+well++how+are+you+going+to+hear+this+how+are+you+going+to+hear+that+and+i+said+well+how+do+you+hear+it+he+said
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+i+think+i+hear+it+through+here+and+i+said+well+i+think+i+do+too++but+i+also+hear+it
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=tummy+my+chest+my+legs+and+so+on+and+so+we+began+our+lessons+every+single+time
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=tuning+drums+in+particular+the+kettle+drums+or+timpani+to+such+a+narrow+pitch+interval+so+something+like
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+amazing+that+when+you+do+open+your+body+up+and+open+your+hand+up+to+allow+the+vibration+to+come+through+that+in+fact+the+tiny+tiny+difference
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=can+be+felt+with+just+the+tiniest+part
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=your+finger+there+and+so+what+we+would+do+is+that+i+would+put+my+hands+on+the+wall+of+the+music+room+and+together++we+would+listen
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+the+sounds+of+the+instruments++and+really+try+to+connect+with+those+sounds+far+far+more+broadly+than+simply+depending+on+the+ear+because+of+course+the+ear+is
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=subject+to+all+sorts+of+things+the+room+we+happen+to+be+in+the+amplification+the+quality+of+the+instrument
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=beings+but+we+all+have+our+own+little+sound+colors+as+it+were+that+make+up+these+extraordinary+personalities+and+characters+and+interests+and+things
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+as+i+grew+older+i+then+auditioned+for+the+royal+academy+of+music+in+london+and+they+said+well+no+we+won+t+accept+you+because+we+haven+t+a+clue+you+know
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+refuse+if+you+refuse+me+through+those+reasons+as+opposed+to+the+ability+to
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=perform+and+to+understand+and+love+the+art+of+creating+sound
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=then+we+have+to+think+very+very+hard+about+the+people+you+do+actually+accept
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+as+a+result++once+we+got+over+over+a+little+hurdle+and+having+to+audition+twice
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+accepted+me++and+not+only+that++what+had+happened+was+that+it+changed+the+whole+role+of+the+music+institutions+throughout+the+united+kingdom+under+no
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=circumstances+were+they+to+refuse+any+application
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+the+basis+of+whether+someone+had+no+arms+no+legs+they+could+still+perhaps+play+a+wind+instrument+if+it+was+supported+on+a+stand
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=no+circumstances+at+all+were+used+to+refuse
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=every+single+entry+had+to+be+listened+to+experienced+and+then+based+on+the+musical+ability+then+that+person
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+therefore++this+in+turn+meant+that+there+was+an+extremely+interesting+bunch+of+students+who+arrived+in+these+various+music+institutions++and+i+have
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+them+now+in+the+professional+orchestras+throughout+the+world+the+interesting+thing+about+this+as+well+though
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+only+were+people+connected+with+sound+which+is+basically+all+of+us+we+well+know+that+music+really+is+our
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+of+the+extraordinary+things+i+ve+experienced+as+a+musician+when+you+may+have
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=has+got+the+most+incredible+challenges+who+may+not+be+able+to+control+his+movements+who+may+be+deaf+who+may+be+blind+etc+etc+suddenly++if+that
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sits+close+to+this+instrument+and+perhaps+even+lies+underneath+the+marimba++and+you+play+something+that+s+so+incredibly
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=almost+i+don+t+really+have+the+the+right+sticks+perhaps+but+something+something+like+this+let+me+change
error: request timeout
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+on+top+of+the+sound
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+have+the+sound+coming+this+way++he+would+have+the+sound+coming+through+the+resonators++if+there+were+no+resonators+on+here++we+would+have
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+he+would+have+a+fullness+of+sound+that+those+of+you+in+the+front+few+rows+wouldn+t+experience
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=those+of+you+in+the+back+few+rows+wouldn+t+experience+either+every+single+one+of+us+depending+on+where+we+re+sitting+will+experience+this+sound+quite+quite+differently
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+of+course+being+the+participator+of+the+sound++and+that+is+starting+from+the+idea+of+what+type+of+sound+i+want+to+produce+for+example
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=exactly+because+i+m+not+even+touching+it+but+yet
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+get+the+sensation+of+something+happening+in+the+same+way+that+when+i+see+a+tree+moves
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=then+i+imagine+that+tree+making+a+rustling+sound+do+you
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=see+what+i+mean+whatever+the+eye+sees+then+there+s
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+there+s+always+always+that+huge
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+mean+just+this+kaleidoscope+of+things+to+draw+from+so+all+of+my+performances+are+based+on+entirely+what+i+experience
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+not+by+learning+a+piece+of+music++putting+on+someone+else+s+interpretation+of+it+buying+all+the+cds+possible+of+that+particular+piece+of+music++and+so+on+and+so+forth++because+that+isn+t+giving+me+enough+of+something+that+is+so+raw
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=basic+and+something+that+that+i+can+fully+experience+the+journey+of+so+it+may+be+that+in+certain+halls
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+re+simply+not+going+to+experience+that+at+all+and+so+therefore+my+level+of+soft+gentle+playing+may+have+to+be
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=especially+through+the+deaf+community+this+has+not+only+affected+how+music+institutions+how
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=treat+sound++and+not+just+as+a+means+of+therapy+although+of+course++being+a+participator+of+music+that+definitely+is+the+case+as+well
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=acousticians+have+had+to+really+think+about+the+types+of+halls+they+put+together+there+are+so+few+halls+in+this+world+that
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+have+very+good+acoustics+dare+i+say++but+by+that+i+mean+where+you+can+absolutely+do+anything+you+imagine+the+tiniest
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=softest+softest+sound+to+something+that+is+so+broad++so+huge+so+incredible+there+s+always+something+it+may+sound+good+up+there+may+not+be+so+good
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+it+may+be+great+there+but+terrible+up+there+maybe+terrible+over+there+but+not+too+bad+there
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=etc+etc++so+to+find+an+actual+hall
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+incredible+for+which+you+can+play+exactly+what+you+imagine+without+it+being+cosmetically+enhanced++so+therefore++acousticians+are+actually
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+quite+interesting++i+cannot+give+you
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=any+detail+as+far+as+what+is+actually+happening+with+those+halls+but+it+s+just+the+fact+that+they+are+going+to+a+group+of+people+for+whom
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+ve+been+saying+well+how+on+earth+can+they+experience+music
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=deafness+is+about+or+we+go+like+that+and+we+imagine+that+s+what+blindness+is+about+if+we+see+someone+in+a+wheelchair+we+assume+they+cannot
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=walk++it+may+be+that+they+can+walk+three+four+five+steps+that+to+them+means+they+can+walk
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+a+year+s+time+it+could+be+two+extra+steps
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+another+year+s+time+three+extra+steps+those+are+hugely+important+aspects
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+when+we+do+listen+to+each+other+it+s+unbelievably+important+for+us+to+really
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+really+test+our+listening+skills+to+really+use+our+bodies+as+a+resonating+chamber+to+stop+the+judgment+for+me
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+musician+who+deals+with+ninety+nine+percent+of+new+music+it+s+very+easy+for+me+to+say+oh+yes+i+like+that+piece++no+i+don+t+like+that+piece+and+so+on+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+just+find+that+i+have+to+give+those+pieces+of+music+real+time++it+may+be+that+the+chemistry+isn+t+quite+right+between+myself+and+that+particular+piece+of+music
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+that+doesn+t+mean+i+have+the+right+to+say+it+s+a+bad+piece+of+music
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+the+great+things+about+being+a+musician+is+that+it+is+so+unbelievably+fluid++so+there+are+no+rules+no+right+no+wrong+this+way+that+way++if+i+asked+you+to
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=clap+maybe+i+can+do+this++if+i+can+just+say+please
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=clap+and+create+the+sound+of+thunder+i+m+assuming+we+ve+all+experienced
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+don+t+mean+just+the+sound+i+mean+really+listen+to+that+thunder+within+yourselves+and+please+try+to+create+that+through+your+clapping+try+just+please+try
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thing+here++though+is+that+i+asked+a+group+of+kids+not+so+long+ago
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=exactly+the+same+question++now
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=great+imagination+thank+you+very+much++however++not+one+of+you+got+out+of+your+seats+to+think+right+how+can+i+clap+ok
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=maybe+i+can+use+my+jewelry+to+create+extra+sounds+maybe+i+can+use+the+other+parts+of+my+body+to
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=extra+sounds+not+a+single+one+of+you+thought+about+clapping+in+a+slightly+different+way+other+than+sitting+in+your+seats+there+and+using+two+hands+in+the+same
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=way+when+we+listen+to+music+we+assume+that++it+s+all+being+fed+through+here++this+is+how+we+experience+music+of+course++it+s+not
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=can+we+do+with+thunder++i+remember
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+first+started+my+very+first+lesson+i+was+all+prepared+with+sticks++ready+to+go
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+instead+of+him+saying+ok+evelyn+please++feet+slightly+apart+arms+at+a+more+or+less+90+degree+angle+sticks+in+a+more+or+less+v+shape
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=keep+this+amount+of+space+here++etc+please+keep+keep+your+back+straight+etc+etc+etc+where+i+was+just+probably+going+to+end+up+absolutely+rigid+frozen
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+would+not+be+able+to+strike+the+drum+because+i+was+thinking+of+so+many+other+things+he+said+evelyn+take+this+drum+away+for+for+seven+days+and+i+ll+see+you+next+week
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+no+longer+required+the+sticks+i+wasn+t+allowed+to+have+these+sticks
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+had+to+basically+look+at+this+particular+drum+see+how+it+was+made+what+these+little+lugs+did++what+the+snares+did+turned+it+upside+down++experimented+with+the+shell
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+such+an+unbelievable+experience+because+where+on+earth
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=experience+that+in+a+piece+of+music++where+on+earth+are+you+going+to+experience+that+in+a+study+book+so+we+never+ever+dealt+with+actual+study+books++so+for+example+one+of+the+things+that+we+learn+when+we+are+dealing+with
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=being+a+percussion+player+as+opposed+to+a+musician+is+basically+straightforward
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+on+and+so+forth++what+does+this+piece+require
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+why+can+t+i+then+do+that+whilst+learning+a+piece+of+music++and+that+s+exactly+what+he+did
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+interestingly+the+older+i+became+and+when+i+became+a+full+time+student+at+a
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+of+that+went+out+of+the+window+we+had+to+study+from+study+books++and+constantly++the+question+well+why+why+what+is+this+relating+to+i+need+to+play+a
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=piece+of+music+well+this+will+help+your+control+well++how+why+do+i+need+to+learn+that+i+need+to+relate+it+to+a+piece+of+music++you+know++i+need+to+say+something
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=why+am+i+doing+that+i+need+to+have+the+reason+and+the+reason+has+to+be
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+saying+something+through+the+music
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+by+saying+something+through+music+which+basically+is+sound++we+then+can+reach+all+sorts+of+things+to+all+sorts+of+people+but+i+don+t+want+to
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=take+responsibility+of+your+emotional+baggage+that+s+up+to+you+when+you+walk+through+a+hall++because+that+then+determines+what+and+how+we+listen+to
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=certain+things+i+may+feel+sorrowful+or+happy++or+exhilarated+or+angry+when+i+play+certain+pieces+of+music++but+i+m+not+necessarily+wanting+you+to+feel+exactly+the+same+thing+so+please+the+next+time+you
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=allow+your+body+to+open+up+allow+your+body+to+be+this+resonating+chamber+be+aware+that+you+re+not+going+to+experience+the+same+thing+as+the+performer
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+the+performer+is+in+the+worst+possible+position+for+the+actual+sound+because+they+re+hearing+the+contact+of+the+stick
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+the+drum++or+the+mallet+on+the+bit+of+wood+or+the+bow+on+the+string+etc+or
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+breath+that+s+creating+the+sound+from+wind+and+brass+they+re+experiencing+that+rawness+there++but+yet+they+re+experiencing+something+so+unbelievably+pure++which+is+before+the+sound+is+actually+happening
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=please+take+note+of+the+life+of+the+sound
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=after+the+actual+initial+strike+or+breath+is+being+pulled
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=just+experience+the+whole+journey+of+that+sound+in+the+same+way+that+i+wished+i+d+experienced+the+whole+journey+of+this+particular+conference+rather+than+just+arriving+last+night
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+hope+maybe+we+can+share+one+or+two+things+as+the+day+progresses++but
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thank+you+very+much+for+having+me
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
error: no video is found.
sleep 4 seconds to avoid blocking
------<727>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EvgenyMorozov_2009G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+as+a+grumpy+eastern+european++i+was+brought+in+to+play+the+pessimist+this+morning++so+bear+with+me
found 1 videos: [['/talks/evgeny_morozov_how_the_net_aids_dictatorships', '2009']]
selected: /talks/evgeny_morozov_how_the_net_aids_dictatorships
sleep 4 seconds to avoid blocking
------<728>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EWidder_2010Z.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+protect+what+they+love+i+want+to+share+with+you+today+what+i+love+most+in+the+ocean+and+that+s+the+incredible
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=number+and+variety+of+animals+in+it+that+make+light
found 6 videos: [['/talks/edith_widder_glowing_life_in_an_underwater_world', '2010'], ['/talks/ed_boyden_a_light_switch_for_neurons', '2011'], ['/talks/freeman_dyson_let_s_look_for_life_in_the_outer_solar_system', '2008'], ['/talks/peter_ward_a_theory_of_earth_s_mass_extinctions', '2009'], ['/talks/mark_bittman_what_s_wrong_with_what_we_eat', '2008'], ['/talks/barbara_block_tagging_tuna_in_the_deep_ocean', '2010']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+addiction+began+with+this+strange+looking+diving+suit+called+wasp+that+s+not+an+acronym+just+somebody+thought+it+looked+like+the+insect
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+actually+developed+for+use+by+the+offshore+oil+industry+for+diving+on+oil+rigs+down+to+a+depth+of+two+thousand+feet
found 1 videos: [['/talks/edith_widder_glowing_life_in_an_underwater_world', '2010']]
selected: /talks/edith_widder_glowing_life_in_an_underwater_world
sleep 3 seconds to avoid blocking
------<729>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/EythorBender_2011.stm
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+gives+you+superhuman+abilities+or+another+one+that+takes+wheelchair+users
found 1 videos: [['/talks/eythor_bender_human_exoskeletons_for_war_and_healing', '2011']]
selected: /talks/eythor_bender_human_exoskeletons_for_war_and_healing
sleep 2 seconds to avoid blocking
------<730>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/FabianHemmert_2009X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+am+a+phd+student++and+that+means+i+have+a+question++how+can+we+make
found 4 videos: [['/talks/jane_mcgonigal_gaming_can_make_a_better_world', '2010'], ['/talks/fabian_hemmert_the_shape_shifting_future_of_the_mobile_phone', '2010'], ['/talks/daniel_wolpert_the_real_reason_for_brains', '2011'], ['/talks/ory_okolloh_how_i_became_an_activist', '2008']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=digital+content+graspable++because+you+see+on+the+one+hand+there+is+the+digital+world+and
found 1 videos: [['/talks/fabian_hemmert_the_shape_shifting_future_of_the_mobile_phone', '2010']]
selected: /talks/fabian_hemmert_the_shape_shifting_future_of_the_mobile_phone
sleep 5 seconds to avoid blocking
------<731>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/FabianOefner_2013G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=an+image+is+worth+more+than+a+thousand+words++so+i+m+going+to+start+my+talk+by+stop+talking+and+show+you+a+few+images+that+i+recently+captured
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+now+my+talk+is+already+six+thousand+words+long+and+i+feel+like+i+should+stop+here+at
found 5 videos: [['/talks/stephen_coleman_non_lethal_weapons_a_moral_hazard', '2012'], ['/talks/regina_dugan_from_mach_20_glider_to_hummingbird_drone', '2012'], ['/talks/elon_musk_the_mind_behind_tesla_spacex_solarcity', '2013'], ['/talks/jessica_shortall_the_us_needs_paid_family_leave_for_the_sake_of_its_future', '2015'], ['/talks/edward_snowden_here_s_how_we_take_back_the_internet', '2014']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+same+time+i+probably+owe+you+some+explanation+about+the
found 12 videos: [['/talks/fabian_oefner_psychedelic_science', '2013'], ['/talks/niall_ferguson_the_6_killer_apps_of_prosperity', '2011'], ['/talks/thomas_piketty_new_thoughts_on_capital_in_the_twenty_first_century', '2014'], ['/talks/malcolm_gladwell_the_unheard_story_of_david_and_goliath', '2013'], ['/talks/mikko_hypponen_how_the_nsa_betrayed_the_world_s_trust_time_to_act', '2013'], ['/talks/ed_yong_zombie_roaches_and_other_parasite_tales', '2014'], ['/talks/molly_crockett_beware_neuro_bunk', '2012'], ['/talks/eddie_obeng_smart_failure_for_a_fast_changing_world', '2012'], ['/talks/rory_sutherland_perspective_is_everything', '2012'], ['/talks/suzana_herculano_houzel_what_is_so_special_about_the_human_brain', '2013'], ['/talks/annie_murphy_paul_what_we_learn_before_we_re_born', '2011'], ['/talks/alice_dreger_is_anatomy_destiny', '2011']]
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+i+am+trying+to+do+as+a+photographer+as+an+artist+is+to+bring+the+world+of+art+and+science+together
found 1 videos: [['/talks/fabian_oefner_psychedelic_science', '2013']]
selected: /talks/fabian_oefner_psychedelic_science
sleep 3 seconds to avoid blocking
------<732>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/FabienCousteau_2014G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+have+a+confession+to+make+i+am+addicted+to+adventure+and+as+a+young+boy
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+would+rather+look+outside+the+window+at+the+birds+in
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=where+time+stands+still+and+even+sometimes+dies
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+teachers+thought+there+was+something+wrong+with+me+because+i+wasn+t+paying+attention+in+class
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+didn+t+find+anything+specifically+wrong+with+me+other+than+being+slightly+dyslexic+because+i+m+a+lefty
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+me+is+about+our+connection+with+the+world+with+the+universe+it
found 7 videos: [['/talks/miguel_nicolelis_brain_to_brain_communication_has_arrived_how_we_did_it', '2015'], ['/talks/alain_de_botton_atheism_2_0', '2012'], ['/talks/bryan_stevenson_we_need_to_talk_about_an_injustice', '2012'], ['/talks/fabien_cousteau_what_i_learned_from_spending_31_days_underwater', '2014'], ['/talks/luke_syson_how_i_learned_to_stop_worrying_and_love_useless_art', '2014'], ['/talks/markham_nolan_how_to_separate_fact_and_fiction_online', '2012'], ['/talks/harry_baker_a_love_poem_for_lonely_prime_numbers', '2015']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+about+seeing+what+s+around+that+next+coral+head+or+what+s+around+that+next+tree++and+learning+more+not+only+about+our+environment+but+about+ourselves
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now++my+dream+of+dreams+i+want+to+go+explore+the+oceans+of+mars++but+until+we+can+go+there
found 1 videos: [['/talks/fabien_cousteau_what_i_learned_from_spending_31_days_underwater', '2014']]
selected: /talks/fabien_cousteau_what_i_learned_from_spending_31_days_underwater
sleep 4 seconds to avoid blocking
------<733>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/FahadAlAttiya_2012S.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+am+in+charge+of+making+this+country+s+food+secure+that+is+my+job+for+the+next+two+years+to+design+an+entire+master+plan
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+for+the+next+ten+years
found 11 videos: [['/talks/charles_robertson_africa_s_next_boom', '2013'], ['/talks/hugh_herr_the_new_bionics_that_let_us_run_climb_and_dance', '2014'], ['/talks/esta_soler_how_we_turned_the_tide_on_domestic_violence_hint_the_polaroid_helped', '2014'], ['/talks/anthony_atala_printing_a_human_kidney', '2011'], ['/talks/paul_snelgrove_a_census_of_the_ocean', '2012'], ['/talks/joshua_foer_feats_of_memory_anyone_can_do', '2012'], ['/talks/daniel_kahneman_the_riddle_of_experience_vs_memory', '2010'], ['/talks/bill_gates_innovating_to_zero', '2010'], ['/talks/andrew_connolly_what_s_the_next_window_into_our_universe', '2014'], ['/talks/mark_roth_suspended_animation_is_within_our_grasp', '2010'], ['/talks/charles_leadbeater_education_innovation_in_the_slums', '2010']]
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+course+with+so+many+other+people+but+first++i+need+to+talk+to+you+about+a+story++which+is+my+story
found 17 videos: [['/talks/lemn_sissay_a_child_of_the_state', '2012'], ['/talks/norman_spack_how_i_help_transgender_teens_become_who_they_want_to_be', '2014'], ['/talks/sheryl_sandberg_so_we_leaned_in_now_what', '2014'], ['/talks/deborah_rhodes_a_test_that_finds_3x_more_breast_tumors_and_why_it_s_not_available_to_you', '2011'], ['/talks/daphne_koller_what_we_re_learning_from_online_education', '2012'], ['/talks/sarah_kaminsky_my_father_the_forger', '2011'], ['/talks/tracy_chevalier_finding_the_story_inside_the_painting', '2012'], ['/talks/shukla_bose_teaching_one_child_at_a_time', '2010'], ['/talks/debra_jarvis_yes_i_survived_cancer_but_that_doesn_t_define_me', '2014'], ['/talks/tyler_cowen_be_suspicious_of_simple_stories', '2012'], ['/talks/pavan_sukhdev_put_a_value_on_nature', '2011'], ['/talks/jessica_jackley_poverty_money_and_love', '2010'], ['/talks/keren_elazari_hackers_the_internet_s_immune_system', '2014'], ['/talks/beau_lotto_amy_o_toole_science_is_for_everyone_kids_included', '2012'], ['/talks/morgan_spurlock_the_greatest_ted_talk_ever_sold', '2011'], ['/talks/ariel_garten_know_thyself_with_a_brain_scanner', '2011'], ['/talks/andrew_solomon_love_no_matter_what', '2013']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+the+story+of+this+country+that+you+re+all+here+in+today
found 11 videos: [['/talks/sarah_kay_how_many_lives_can_you_live', '2011'], ['/talks/jamie_oliver_teach_every_child_about_food', '2010'], ['/talks/mustafa_akyol_faith_versus_tradition_in_islam', '2011'], ['/talks/thelma_golden_how_art_gives_shape_to_cultural_change', '2010'], ['/talks/emily_pilloton_teaching_design_for_change', '2010'], ['/talks/daniel_kahneman_the_riddle_of_experience_vs_memory', '2010'], ['/talks/vinay_venkatraman_technology_crafts_for_the_digitally_underserved', '2012'], ['/talks/thomas_goetz_it_s_time_to_redesign_medical_data', '2011'], ['/talks/kate_orff_reviving_new_york_s_rivers_with_oysters', '2011'], ['/talks/stephen_ritz_a_teacher_growing_green_in_the_south_bronx', '2012'], ['/talks/andrew_stanton_the_clues_to_a_great_story', '2012']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+of+course+most+of+you+have+had+three+meals+today+and+probably+will+continue+to+have+after+this+event++so
found 11 videos: [['/talks/fahad_al_attiya_a_country_with_no_water', '2013'], ['/talks/rodrigo_canales_the_deadly_genius_of_drug_cartels', '2013'], ['/talks/roz_savage_why_i_m_rowing_across_the_pacific', '2010'], ['/talks/julia_bacha_pay_attention_to_nonviolence', '2011'], ['/talks/pavan_sukhdev_put_a_value_on_nature', '2011'], ['/talks/mitch_resnick_let_s_teach_kids_to_code', '2013'], ['/talks/neil_macgregor_2600_years_of_history_in_one_object', '2012'], ['/talks/sarah_jones_what_does_the_future_hold_11_characters_offer_quirky_answers', '2014'], ['/talks/elif_shafak_the_politics_of_fiction', '2010'], ['/talks/michael_green_why_we_should_build_wooden_skyscrapers', '2013'], ['/talks/freeman_hrabowski_4_pillars_of_college_success_in_science', '2013']]
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=were+about+eleven+thousand+people+living+here
found 1 videos: [['/talks/amy_purdy_living_beyond_limits', '2011']]
selected: /talks/amy_purdy_living_beyond_limits
sleep 2 seconds to avoid blocking
------<734>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/FaithJegede_2012S.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+have+just+one+request+please+don+t+tell+me+i+m+normal
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=speechless++but+he+communicates+joy+in+a+way+that+some+of+the+best+orators+cannot
found 1 videos: [['/talks/faith_jegede_cole_what_i_ve_learned_from_my_autistic_brothers', '2012']]
selected: /talks/faith_jegede_cole_what_i_ve_learned_from_my_autistic_brothers
sleep 2 seconds to avoid blocking
------<735>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/FawnQiu_2016S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+design+engineering+projects+for+middle+school+and+high+school+students++often+using+materials+that+are+pretty+unexpected
found 1 videos: [['/talks/fawn_qiu_easy_diy_projects_for_kid_engineers', '2016']]
selected: /talks/fawn_qiu_easy_diy_projects_for_kid_engineers
sleep 5 seconds to avoid blocking
------<736>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/FeiFeiLi_2015.stm
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=describing+what+she+sees+in+a+series+of+photos
found 3 videos: [['/talks/fei_fei_li_how_we_re_teaching_computers_to_understand_pictures', '2015'], ['/talks/parul_sehgal_an_ode_to_envy', '2013'], ['/talks/andrew_solomon_depression_the_secret_we_share', '2013']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=she+might+still+have+a+lot+to+learn+about+this+world++but+she+s+already+an+expert+at+one+very+important+task
found 1 videos: [['/talks/travis_kalanick_uber_s_plan_to_get_more_people_into_fewer_cars', '2016']]
selected: /talks/travis_kalanick_uber_s_plan_to_get_more_people_into_fewer_cars
sleep 2 seconds to avoid blocking
------<737>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/FeisalAbdulRauf_2009P.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=faith+is+not+very+well+thought+of+as+being+one+that
found 7 videos: [['/talks/brene_brown_the_power_of_vulnerability', '2010'], ['/talks/michelle_obama_a_passionate_personal_case_for_education', '2009'], ['/talks/mae_jemison_teach_arts_and_sciences_together', '2009'], ['/talks/feisal_abdul_rauf_lose_your_ego_find_your_compassion', '2008'], ['/talks/chris_bangle_great_cars_are_great_art', '2007'], ['/talks/scott_mccloud_the_visual_magic_of_comics', '2009'], ['/talks/joshua_prince_ramus_building_a_theater_that_remakes_itself', '2010']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+is+grounded+in+compassion+the+truth+of+the+matter+is+otherwise+our+holy+book+the+koran
found 1 videos: [['/talks/feisal_abdul_rauf_lose_your_ego_find_your_compassion', '2008']]
selected: /talks/feisal_abdul_rauf_lose_your_ego_find_your_compassion
sleep 5 seconds to avoid blocking
------<738>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/FelixDennis_2004.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+the+better+at+getting+and+keeping++you+were+the+better+at
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+the+better+at+grubbing+and+heaping++but+who+was+the+better+man
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+end+yes+who+was+the+better+man
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+friend++you+were+the+better+with+lords+and+ladies++i+was+the+better+at+pillaging+troy
error: request timeout
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=kissing+the+babies++i+was+the+better+at+search+and+destroy++but+who+was+the+better+man
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=old+boy+who+was+the+better+man++i+was+the+better+at+improvisation++you+were+the+better
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+spinning+the+plates++i+was+the+better+at
found 1 videos: [['/talks/edward_burtynsky_my_wish_manufactured_landscapes_and_green_education', '2006']]
selected: /talks/edward_burtynsky_my_wish_manufactured_landscapes_and_green_education
sleep 2 seconds to avoid blocking
------<739>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/FieldsWickerMiurin_2009S.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+talk+about
found 15 videos: [['/talks/jason_fried_why_work_doesn_t_happen_at_work', '2010'], ['/talks/shea_hembrey_how_i_became_100_artists', '2011'], ['/talks/ory_okolloh_how_i_became_an_activist', '2008'], ['/talks/maira_kalman_the_illustrated_woman', '2007'], ['/talks/john_maeda_my_journey_in_design', '2009'], ['/talks/emily_levine_a_theory_of_everything', '2009'], ['/talks/paul_zak_trust_morality_and_oxytocin', '2011'], ['/talks/lauren_zalaznick_the_conscience_of_television', '2011'], ['/talks/charles_hazlewood_trusting_the_ensemble', '2011'], ['/talks/eric_topol_the_wireless_future_of_medicine', '2010'], ['/talks/james_randi_homeopathy_quackery_and_fraud', '2010'], ['/talks/dennis_hong_my_seven_species_of_robot_and_how_we_created_them', '2010'], ['/talks/harsha_bhogle_the_rise_of_cricket_the_rise_of_india', '2010'], ['/talks/ben_goldacre_battling_bad_science', '2011'], ['/talks/keith_barry_brain_magic', '2008']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+of+my+discoveries+around+the+world+through+my+work
found 16 videos: [['/talks/nalini_nadkarni_conserving_the_canopy', '2009'], ['/talks/robert_ballard_the_astonishing_hidden_world_of_the_deep_ocean', '2008'], ['/talks/craig_venter_sampling_the_ocean_s_dna', '2007'], ['/talks/sendhil_mullainathan_solving_social_problems_with_a_nudge', '2010'], ['/talks/ariel_garten_know_thyself_with_a_brain_scanner', '2011'], ['/talks/robert_full_robots_inspired_by_cockroach_ingenuity', '2008'], ['/talks/fields_wicker_miurin_learning_from_leadership_s_missing_manual', '2009'], ['/talks/nathan_wolfe_the_jungle_search_for_viruses', '2009'], ['/talks/benoit_mandelbrot_fractals_and_the_art_of_roughness', '2010'], ['/talks/paula_scher_great_design_is_serious_not_solemn', '2009'], ['/talks/lee_smolin_science_and_democracy', '2008'], ['/talks/eric_dishman_take_health_care_off_the_mainframe', '2010'], ['/talks/peter_diamandis_our_next_giant_leap', '2008'], ['/talks/mae_jemison_teach_arts_and_sciences_together', '2009'], ['/talks/paul_sereno_digging_up_dinosaurs', '2009'], ['/talks/neil_gershenfeld_unleash_your_creativity_in_a_fab_lab', '2007']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+are+not+discoveries+of+planets+or+new+technologies+or+science+they+re+discoveries+of+people
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+way+people+are+and+new+leadership
found 3 videos: [['/talks/stanley_mcchrystal_listen_learn_then_lead', '2011'], ['/talks/naif_al_mutawa_superheroes_inspired_by_islam', '2010'], ['/talks/rory_stewart_time_to_end_the_war_in_afghanistan', '2011']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+benki+benki+is+a+leader+of+the+ashaninka+nation+his+people+live+in+brazil+and+in+peru
found 1 videos: [['/talks/fields_wicker_miurin_learning_from_leadership_s_missing_manual', '2009']]
selected: /talks/fields_wicker_miurin_learning_from_leadership_s_missing_manual
sleep 2 seconds to avoid blocking
------<740>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/FioOmenetto_2011.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thrilled+to+be+here+i+m+going+to+talk+about+a+new+old+material+that+still+continues+to+amaze+us++and+that+might+impact+the+way+we+think+about+material
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=high+technology+and+maybe+along+the+way+also+do+some+stuff+for+medicine+and+for+global+health+and+help+reforestation+so+that+s+kind+of+a+bold+statement+i+ll+tell+you+a+little+bit+more+this+material+actually+has+some+traits
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+make+it+seem+almost+too+good+to+be+true++it+s+sustainable+it+s+a+sustainable+material+that+is+processed+all+in+water+and+at+room+temperature
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+implantable+in+the+human+body+without+causing+any+immune+response+it+actually+gets+reintegrated+in+the+body+and+it+s+technological+so+it+can+do+things+like
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=microelectronics+and+maybe+photonics+do+and+the+material
found 1 videos: [['/talks/fiorenzo_omenetto_silk_the_ancient_material_of_the_future', '2011']]
selected: /talks/fiorenzo_omenetto_silk_the_ancient_material_of_the_future
sleep 2 seconds to avoid blocking
------<741>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/FrancescoSauro_2015G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+would+like+to+invite+you+to+come+along+on+a+visit+to+a+dark+continent
found 1 videos: [['/talks/francesco_sauro_deep_under_the_earth_s_surface_discovering_beauty_and_science', '2015']]
selected: /talks/francesco_sauro_deep_under_the_earth_s_surface_discovering_beauty_and_science
sleep 3 seconds to avoid blocking
------<742>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/FrancesLarson_2015G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+the+last+year++everyone+s+been+watching+the+same+show
found 2 videos: [['/talks/karima_bennoune_when_people_of_muslim_heritage_challenge_fundamentalism', '2014'], ['/talks/gretchen_carlson_david_brooks_political_common_ground_in_a_polarized_united_states', '2017']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+m+not+talking+about+game+of+thrones+but+a+horrifying+real+life+drama+that+s+proved+too+fascinating+to+turn+off
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+a+show+produced+by+murderers+and+shared+around+the+world+via
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=their+names+have+become+familiar+james+foley+steven+sotloff+david+haines++alan+henning+peter
found 1 videos: [['/talks/frances_larson_why_public_beheadings_get_millions_of_views', '2015']]
selected: /talks/frances_larson_why_public_beheadings_get_millions_of_views
sleep 5 seconds to avoid blocking
------<743>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/FrancisCollins_2012P.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+let+me+ask+for+a+show+of+hands+how+many+people+here+are+over+the+age+of+forty+eight
found 8 videos: [['/talks/david_mackay_a_reality_check_on_renewables', '2012'], ['/talks/aaron_huey_america_s_native_prisoners_of_war', '2010'], ['/talks/james_flynn_why_our_iq_levels_are_higher_than_our_grandparents', '2013'], ['/talks/nicholas_christakis_how_social_networks_predict_epidemics', '2010'], ['/talks/mike_degruy_hooked_by_an_octopus', '2012'], ['/talks/paul_nicklen_animal_tales_from_icy_wonderlands', '2011'], ['/talks/dan_buettner_how_to_live_to_be_100', '2010'], ['/talks/sugata_mitra_the_child_driven_education', '2010']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+there+do+seem+to+be+a+few
found 11 videos: [['/talks/nic_marks_the_happy_planet_index', '2010'], ['/talks/leonard_susskind_my_friend_richard_feynman', '2011'], ['/talks/joshua_foer_feats_of_memory_anyone_can_do', '2012'], ['/talks/stephen_coleman_non_lethal_weapons_a_moral_hazard', '2012'], ['/talks/sarah_jayne_blakemore_the_mysterious_workings_of_the_adolescent_brain', '2012'], ['/talks/david_chalmers_how_do_you_explain_consciousness', '2014'], ['/talks/christina_greer_gerrymandering_how_drawing_jagged_lines_can_impact_an_election', '2012'], ['/talks/stephen_wolfram_computing_a_theory_of_all_knowledge', '2010'], ['/talks/richard_seymour_how_beauty_feels', '2011'], ['/talks/chris_anderson_ted_questions_no_one_knows_the_answers_to', '2012'], ['/talks/mitch_resnick_let_s_teach_kids_to_code', '2013']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+congratulations++because+if+you+look+at+this+particular+slide+of+u+s+life+expectancy+you+are+now+in+excess
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+the+average+life+span+of+somebody+who+was+born+in+one+thousand+nine+hundred
found 1 videos: [['/talks/francis_collins_we_need_better_drugs_now', '2013']]
selected: /talks/francis_collins_we_need_better_drugs_now
sleep 3 seconds to avoid blocking
------<744>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/FrancisdelosReyes_2013U.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=am+an+engineering+professor++and+for+the+past+fourteen+years
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+been+teaching+crap+not+that+i+m+a+bad+teacher++but+i+ve+been+studying+and+teaching+about+human+waste
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+how+waste+is+conveyed+through+these+wastewater+treatment
found 1 videos: [['/talks/francis_de_los_reyes_sanitation_is_a_basic_human_right', '2014']]
selected: /talks/francis_de_los_reyes_sanitation_is_a_basic_human_right
sleep 1 seconds to avoid blocking
------<745>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/FrancoSacchi_2007G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+have+a+story+a+story+that+i+would+like+to+share+with+you+and+it+s+an+african+story
found 3 videos: [['/talks/michelle_obama_a_passionate_personal_case_for_education', '2009'], ['/talks/bill_strickland_rebuilding_a_neighborhood_with_beauty_dignity_hope', '2008'], ['/talks/euvin_naidoo_why_invest_in_africa', '2007']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+is+a+story+of+hope+resilience+and+glamour
found 1 videos: [['/talks/franco_sacchi_a_tour_of_nollywood_nigeria_s_booming_film_industry', '2008']]
selected: /talks/franco_sacchi_a_tour_of_nollywood_nigeria_s_booming_film_industry
sleep 5 seconds to avoid blocking
------<746>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/FrankGehry_1990.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=m+going+to+go+right+into+the+slides+and+all+i+m+going+to+try+and+prove+to+you+with+these+slides+is+that+i+do+just+very+straight+stuff+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+ideas+are+in+my+head+anyway+they+re+very+logical+and+relate+to+what+s+going+on
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=convince+clients+at+the+end+that+that+i+solve+their+problems+or+i+really+do+solve+their+problems+because+usually+they
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=seem+to+like+it+let+me+go+right+into
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+slides+can+you+turn+off+the
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+dark++i+don+t+want+you+to+see+what+i+m+doing+up+here+anyway+i+did+this+house+in+santa+monica++and+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=got+a+lot+of+notoriety+in+fact++it+appeared+in+a+porno+comic+book++which+is+the+slide+on+the+right
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+in+venice++i+just+show+it+because+i+want+you+to+know+i+m+concerned+about+context+on+the+left+hand+side
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+had+the+context+of+those+little+houses++and+i+tried+to+build+a+building+that+fit+into+that+context+when+people+take+pictures+of+these+buildings+out+of+that+context+they+look+really+weird
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sense+when+they+re+photographed+or+seen
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+in+that+space++and+then++once+i+deal+with+the+context++i+then+try+to+make+a
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=place+that+s+comfortable+and+private+and+fairly+serene+as+i+hope+you+ll+find+that+slide+on+the+right
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+i+did+a+law+school+for+loyola+in+downtown++l+a+i+was+concerned+about+making+a+place+for+the+study+of+law
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+continue+to+work+with+with+this+client+the+building+on+the
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=right+at+the+top+is+now+under+construction++the
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=garage+on+the+right+the+gray+structure+will+be+torn+down+finally+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=several+small+classrooms+will+be+placed+along+this
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=avenue+that+we+ve+created+this+campus++and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+all+related+to+the+clients+and+the+and+the+students
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=from+the+very+first+meeting+saying+they+felt+denied+a+place+they+wanted+a+sense+of+place++and+so+the+whole+idea+here+was+to+create
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+kind+of+space+in+downtown
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+difficult+to+to+fit+into++and+it+was+my
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=theory+or+my+point+of+view+that+one+didn+t
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=upstage+the+neighborhood+one+made+accommodations+i+tried+to+be+inclusive+to+include+the+buildings+in+the
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+were+buildings+i+liked+or+not
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the++60s+i+started+working+with+paper+furniture
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+made+a+bunch+of+stuff+that+was+very+successful+in+bloomingdale+s
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+even+made+flooring+walls+and+everything+out+of+cardboard
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+success+of+it+threw+me+for+a+loop++i+couldn+t+deal+with+the+success+of+furniture+i+wasn+t
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=secure+enough+as+an+architect+and+so+i+closed+it+all+up+and+made
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+nobody+would+like+this+and+it+was+in+this
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=preliminary+to+these+pieces+of+furniture+that+ricky+and+i+worked+on
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=furniture+by+the+slice++and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=after+we+failed+i+just+kept+failing
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+ultimately+led+to+the+piece+on+the+right+happened+when+the
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=kid+that+was+working+on+this+took+one+of+those+long+strings+of+stuff+and+folded+it+up+to+put+it+in+the+wastebasket
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+put+a+piece+of+tape+around+it+as+you+see+there++and+realized+you+could+sit
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+it+and+it+had+a+lot+of+resilience+and+strength+and+so+on+so+it+was+an+accidental+discovery
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+mean+the+story+i+tell+is+that+i+got+mad+at+postmodernism+at+po+mo+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=said+that+fish+were+five+hundred+million+years+earlier+than+man
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+if+you+re+going+to+go+back+we+might+as+well+go+back+to+the+beginning++and+so+i+started
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=making+these+funny+things++and+they
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=started+to+have+a+life+of+their+own
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+the+one+glass+at+the+walker++and+then
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+sliced+off+the+head+and+the+tail+and+everything+and+and+tried+to+translate+what+i+was+learning+about
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+form+of+the+fish+and+the+movement+and+a+lot+of+my+architectural+ideas+that+came+from+it+accidental+again+it+was+it+was
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=intuitive+kind+of+thing+and+i+just+kept+going+with+it+and+made+this+proposal+for+a+building+which+was+only+a+proposal
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+did+this+building+in+japan++i+was
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=taken+out+to+dinner+after+the+contract+for+this+little+restaurant+was+signed++and+i+love+sake+and+kobe+and+all+that+stuff
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+asked+to+do+some+sketches+on+napkins
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+made+some+sketches+on+napkins+little+boxes+and+morandi+like+things+that+i+used+to+do
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+client+said+why+no+fish+and+so+i+made+a
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+harder+to+do+it
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+work+with+a+little+once+in+a+while+told+me+i+couldn+t+do+it++and+so+that+made+it+even+more
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=exciting++but+he+was+right+i+couldn+t+do+the+tail+i+started+to+get+the+head+ok+but+the+tail
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+couldn+t+do+it+was+pretty+hard+the+thing+on+the+right+is+a+snake+form+a+ziggurat
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+put+them+together+and+you+walk+between+them++it+was+a+dialog+with+the+context
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=again+now+if+you+saw+a+picture+of+this+as+it+was+published+in+architectural+record
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+didn+t+show+the+context+so+you+would+think+god+what+a+pushy+guy+this+is+but+a+friend+of+mine+spent+four+hours+wandering
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+for+craft+and+technology+and+all+those+things+that+you+ve+all+been+talking+about
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+thrown+for+a+complete+loop+this+was+built+in+six+months+the+way+we+sent+drawings+to
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=magic+computer+in+michigan+that+does+carved+models++and+we+used+to+make+foam+models++which+that+thing+scanned++we+made+the+drawings+of+the+fish+and+the
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+got+there++everything+was+perfect
error: request timeout
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+decided+to+cut+off+the+head+and+the
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+made+the+object+on+the+left+for+my+show+at+the+walker++and+it+s+one+of+the+nicest+pieces+i+ve+ever+made+i+think+and+then+jay
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+client+asked+me+to+do+his
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=headquarters+building+in+l+a+for+reasons
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+don+t+want+to+talk+about+it+got+delayed++toxic+waste+i+guess+is+the
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+we+built+a+temporary+building+i+m+getting+good+at+temporary+and+we+put+a+conference+room+in+that+s+a+fish
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+finally+jay+dragged+me+to+my+hometown+toronto+canada+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+is+a+story+it+s+a+real+story+about+my+grandmother+buying+a+carp+on+thursday+bringing+it+home+putting+it
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+went+to+sleep+the+next+day+it+wasn+t+there+and+the+next+night+we+had+gefilte+fish
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+i+set+up+this
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+made+a+pedestal+for+a+sculpture++and+he+didn+t+buy+a+sculpture+so+i+made+one+i+went+around+toronto+and+found+a+bathtub+like+my
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+ve+been+friends+for+a+long+time++and+we+ve+started+to+work+on+things+a+few+years+ago++we+did+a
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=those+two+little+boys+are+my+sons++and+they+were+claes++assistants+in+the+play+he+was+the
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=swiss+army+knife++he+was+a+souvenir+salesman+who+always+wanted+to+be+a+painter
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+was+frankie+p+toronto++p+for+palladio+dressed+up+like+the+at+&+t+building+by+claes
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+highlight+of+the+performance+was+at+the+at+the+end
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+beautiful+object+the+swiss+army+knife++which
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+get+credit+for+participating+in
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+can+tell+you+it+s+totally+an+oldenburg+i+had+nothing+to+do+with+it+the+only
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+made+it+possible+for+them+to+turn+those+blades+so+you+could+sail+this+thing+in+the+canal+because+i+love+sailing+we+made+it
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+been+known+to+mess+with+things+like+chain+link+fencing+i+do+it+because+it+s+a
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+made+in+such+great+quantities+absorbed+in+such+great+quantities++and+there+s+so+much+denial+about+them
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+hate+it+and+i+m+fascinated+with+that+which+like+the+paper+furniture+it+s+one+of+those+materials+and+i+m+always+drawn+to+that
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+i+did+a+lot+of
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=dirty+things+with+chain+link+which+nobody+will+forgive+me+for+but+claes+made+homage+to+it+in+the+loyola+law+school++and+that+chain
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=link+is+really+expensive+it+s+in+perspective+and+everything
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+we+did+a+camp+together+for+children+with+cancer
error: request timeout
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=started+making+a+building+together+of+course+the+milk+can+is+his
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+we+were+trying+to+collide+our+ideas+to+put+objects+next+to+each+other+like+a+morandi+like+the+little+bottles
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=composing+them+like+a+still+life++and+it+seemed+to+work+as+a+way+to+put+he+and+i+together
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=then+jay+chiat+asked+me+to+do+this+building
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+this+funny+lot+in+venice++and+i+started+with+this+three+piece
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+entered+in+the+middle+and+jay+asked+me+what+i+was+going+to+do+with+the+piece+in+the+middle++and+he+pushed+that+and+one+day+i+had+a+oh+well
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+other+way+i+had+the+binoculars+from+claes+and+i+put+them+there+and+i+could+never+get+rid+of+them+after+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=oldenburg+made+the+binoculars+incredible+when+he+sent+me+the+first+model+of
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+real+proposal++it+made+my+building+look+sick++and+it+was+this
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+kind+of+up+the+ante+stuff+that+became+pretty+interesting+it+led+to+the+building+on+the+left
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+still+think+the+time+magazine+picture+will+be+of+the+binoculars
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+have+a+hard+time+connecting+with
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thing+about+my+house+the+whole+use+of
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=rough+carpentry+and+everything+was+the+frustration+with+the+crafts+available+i+said+if+i+can+t+get+the+craft
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+i+want+i+ll+use+the+craft+i+can+get+there+were+plenty+of+models+for+that+in+rauschenberg+and+jasper+johns+and+many+artists+who+were
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=making+beautiful+art+and+sculpture+with+junk+materials
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+went+into+the+metal+because+it+was+a+way+of+building+a+building+that+was+a+sculpture
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+was+all+of+one+material+and+the+metal+could+go+on+the+roof+as+well+as+the+walls
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+metalworkers+for+the+most+part+do+ducts+behind+the+ceilings+and+stuff+i+was+given+an+opportunity
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=design+an+exhibit+for+the+metalworkers++unions+of+america+and+canada
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+washington++and+i+did+it+on+the+condition+that+they+become+my+partners+in+the+future+and+help+me+with+all
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=future+metal+buildings++etc+etc+and+it+s+working+very+well+to+have+these
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+just+tell+the+stories+it+s+a+way+of+connecting+at+least+with+some+of+those
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+that+are+so+important+to+the+realization
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+metal+continued+into+a+building+herman+miller+in+sacramento++and+it+s+just+a+complex
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=herman+miller+has+this+philosophy+of+having+a+place+a+people+place+i+mean+it+s+kind+of+a+trite
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thing+to+say+but+it+is
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=real+that+they+wanted+to+have+a+central+place+where+the+cafeteria+would+be+where+the+people+would+come+and+where+the+people+working+would
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=interact+so+it+s+out+in+the+middle+of
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=approach+it++it+s+copper+and+galvanize+i+used+the+galvanize+and+copper+in+a+very
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=light+gauge+so+it+would+buckle++i+spent+a+lot+of+time
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=undoing+richard+meier+s+aesthetic++everybody+s+trying+to+get+the+panels+perfect+and+i
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sloppy+and+fuzzy+and+they+end+up+looking+like+stone++this+is+the
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=central+area+there+s+a+ramp+and+that+little+dome+in+there+is+a+building+by+stanley+tigerman+stanley+was
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=instrumental+in+my+getting+this+job++and+when+i
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+awarded+the+contract+i+at+the+very+beginning+asked+the+client+if+they+would
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+stanley+do+a+cameo+piece+with+me+because+these+were+ideas+that+we+were+talking+about
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=things+next+to+each+other+making+it+s+all+about+[+a+]+metaphor+for+a+city+maybe
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+stanley+did+the+little+dome+thing++and+we+did+it+over+the+phone+and+by+fax+he+would+send+me+a+fax+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=show+me+something+he+d+made+a+building+with+a+dome
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+a+simpler+building++but+he+put
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+funny+details+on+it+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+moved+it+closer+to+my+building+and+so+i+decided+to+put+him+in+a
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+a+depression+i+put+him+in+a+hole+and+made+a+kind+of+a
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hole+that+he+sits+in+and+so+then+he+put+two+bridges+this+all+happened+on+the+fax+going+back+and+forth+over+a+couple
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=weeks++period+and+he+put+these+two+bridges+with+pink+guardrails+on+it++and+so+then+i+put+this+big+billboard+behind+it+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+a+very+prominent+building+off+the+freeway+and+we+added+a+floor+and+cleaned+it+up+and+fixed+it+up+and+used+the+kind+of
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+thought+the+language+of+the+neighborhood++which+had+these+cornices+projecting+cornices+mine+got+a+little+exuberant
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+is+a+beautiful+material++and+it+turns+green+in+one+hundred+years+instead+of+like+copper+in+ten+or+fifteen
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+redid+the+side+of+the+building+and+re+proportioned+the+windows+so+it+sort+of+fit+into+the+space+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+surprised+both+boston+and+myself+that+we+got+it+approved+because+they+have+very+strict+kind+of+design+guideline
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+wouldn+t+normally+think+i+would+fit+them
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+detailing+was+very+careful+with+the+lead+copper+and+making
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fitting+it+tightly+into+the+fabric+of+the+existing+building
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ramblas+for+some+film+festival+i+did+the+hollywood+sign+going+and+coming+made+a+building+out+of+it++and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+built+it+i+flew+in+one+night+and+took+this+picture+but
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+made+it+a+third+smaller+than+my+model+without+telling+me
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+santa+monica+a+little+shopping+center
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+is+a+laser+laboratory+at+the+university+of+iowa
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+which+the+fish+comes+back+as+an+abstraction+in+the+back++it+s+the
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+support+labs+which+by+some+coincidence
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fit+perfectly+i+just+joined+the+points++in+the+curved+part+there+s+all+the+mechanical+equipment
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+solid+wall+behind+it+is+a
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=pipe+chase+a+pipe+canyon+and+so+it+was+an+opportunity+that+i+seized+because+i+didn+t+have+to+have+any+protruding+ducts
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+vents+or+things+in+this+form+it+gave+me+an+opportunity+to+make+a+sculpture+out+of+it
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+ve+been+building+it+so+long+i+don+t+remember+where+it+is+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+in+the+west+valley++and+we+started+with+the+stream
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=along+the+stream+dammed+it+up+to+make+a+lake++these+are+the+models+the
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=reality+with+the+lake+the+workmanship+is+pretty+bad
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+reminded+me+why+i+play+defensively+in+things+like+my+house+when+you+have+to+do+something+really+cheaply
error: request timeout
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+big+metal+thing+is+a+passage
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+go+downstairs+into+the+living+room+and+then+down+into+the+bedroom+which+is+on+the+right+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+kind+of+like+a+whole+built+town
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+asked+to+do+a
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hospital+for+schizophrenic+adolescents+at+yale+i+thought+it+was+fitting+for+me+to
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+a+house+next+to+a+philip+johnson+house+in+minnesota
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=had+a+dilemma+they+asked+philip+to+do+it+he+was+too+busy++he
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ended+up+having+to+make+it+a+sculpture+because+the+dilemma+was+how+do+you+build+a+building
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+doesn+t+look+like+the+language+is+it+going+to+look+like+this+beautiful+estate+is+sub+divided+etc+etc++you+ve+got+the+idea+and+so+we+finally+ended+up+making+it+these+people+are+art+collectors
error: request timeout
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+it+appears+very+sculptural+from+the
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+main+house+and+all+the+windows+are+on+the+other+side
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sculptural+as+you+walk+around+it+it+s+made+of+metal+and+the+brown+stuff+is
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=t+work+i+keep+trying+to+make+it+work+in+this+case+we+learned+how+to+detail+it
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=burnham+mall+on+the+left+it+s+never+been+finished+going+out+to+the+lake
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+had+the+opportunity+to+build+a
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=building+on+this+site+there+s+a+railroad+track+this+is+the
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=city+hall+over+here+somewhere+and+the+courthouse++and
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+centerline+of+the+mall+goes+out+burnham+had
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=designed+a+railroad+station+that+was+never+built+and+so+we+followed+sohio+is+on+the+axis+here++and+we+followed+the+axis+and
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=kind+of+goalposts++and+this+is+our+building+which+is+a
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=corporate+headquarters+for+an+insurance+company++we+collaborated+with+oldenburg+and+put+the+newspaper+on+top+folded
error: request timeout
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+drive+down+so+it+s+about+a+10+story+c+clamp
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+all+this+stuff+at+the+bottom+is+a+museum+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=an+idea+for+a+very+fancy+automobile+entry+this+owner+has+a+pet+peeve+about+bad+automobile+entries
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+would+be+a+hotel+so+the+centerline+of+this+thing
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+d+preserve+it++and+it+would+start+to+work
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+the+scale+of+the+new+buildings+by+pelli+and+kohn+pederson+fox++etc+that+are+underway
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+hard+to+do+high+rise+i
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+feel+much+more+comfortable+down+here++this+is+a+piece+of+property+in+brentwood+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+long+time+ago+about++eighty+two+or+something+after+my+house+i+designed+a+house+for+myself+that+would+be+a
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=village+of+several+pavilions+around+a+courtyard+and+and
error: request timeout
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=worked+for+me+and+built+that+actual+model+on+the+left+and+she+came+back
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=guess+wealthier+or+something+something+happened+and
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=asked+me+to+design+a+house+for+her+on+this+site
error: request timeout
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=following+that+basic+idea+of+the+village
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+changed+it+as+we+got+into+it++i+locked+the+the+house+into+the+site+by+cutting+the+back+end+here+you+see+on+the+photographs
error: request timeout
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=slicing+into+it+and+putting+all+the+bathrooms+and+dressing+rooms+like+a+retaining+wall+creating+a+lower+level+zone+for+the+master+bedroom+which+i+designed+like+a+kind+of+a+barge
error: request timeout
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+dome+was+a+request+from+the+client+she+wanted+a+dome+somewhere+in+the+house+she+didn+t+care+where
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+you+sleep+in+this+bedroom+i+hope+i+mean+i+haven+t+slept+in+it+yet+i+ve+offered+to+marry+her+so+i+could+sleep+there
error: request timeout
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=she+said+i+didn+t+have+to+do+that+but
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+feel+like+you+re+on+a+kind+of+barge+on+some+kind+of+lake+and+it+s+very+private+the+landscape+is+being+built+around+to+create+a+private+garden++and+then+up+above
error: request timeout
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+this+side+of+the+living+room+and+one+on+the+other
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=know+how+to+do+it+from+here+focus+the+one+on+the+right+it
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+up+there++left+it+s+my+right
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=anyway+you+enter+into+a+garden+with+a+beautiful+grove+of+trees+that+s+the+living
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+enter+into+the+living+room+and+then+so+on
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+the+bedroom+you+come+down+from+this+level+along+the+stairway+and+you+enter+the+bedroom+here
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=going+into+the+lake+and+the
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=bed+is+back+in+this+space+with+windows+looking+out+onto+the+lake+these
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=things+were+designed+to+give+foreground+and+to+create+a+greater+depth+in+this+shallow
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+material+is+lead+copper+like+in+the+building+in+boston
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+it+was+an+intent+to
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=make+this+small+piece+of+land+it+s+one+hundred+by+two+hundred+and+fifty
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=into+a+kind+of+an+estate
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=making+the+living+room+and+dining+room+into+this+pavilion+with+a+high+space+in+it
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+happened+by+accident+that+i+got+this+right+on+axis+with+the+dining+room+table
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=looks+like+i+got+a+baldessari+painting+for+free+but+the+idea+is+the+windows+are+all+placed+so+you+see+pieces+of+the+house
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=outside+eventually+this+will+be+screened+these+trees+will+come+up
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+will+be+very+private+and+you
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=feel+like+you+re+in+your+own+kind+of+village
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=michael+eisner+disney+we+re+doing+some+work+for+him++and+this+is+in
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=anaheim+california++and+it+s+a+freeway+building+you+go+go+under+this+bridge
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+about+sixty+five+miles+an+hour++and+there+s+another+bridge+here+and+you+re+through+this+room+in+a+split+second++and+the+building+will+sort+of
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+the+backside+it+s+much+more+humane+entrance++dining+hall+etc++and+then+this+thing+here
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+hoping+as+you+drive+by+you+ll+hear+the+picket+fence+effect+of+the+sound+hitting+it+kind+of+a
error: request timeout
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+doing+a+building+in+switzerland+basel++which+is+an+office+building+for+a+furniture+company
error: request timeout
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+are+the+early+studies+but
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+have+to+sell+furniture+to+normal+people+so+if+i+did+the+building
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+was+too+fancy+then+people+might+say+well+the+furniture+looks+ok+in+his+thing+but+no+it+ain+t+going+to+look+good+in+my+normal+building
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+we+ve+made+a+kind+of+pragmatic+slab+in+the+second+phase+here++and+we+ve+taken+the+conference+facilities+and+made+a+villa
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=out+of+them+so+that+the+communal+space+is
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=very+sculptural+and+separate++and+you+re+looking+at+it+from+the+offices+and+you+create+a+kind+of
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=interaction+between+these+pieces++this+is+in+paris+along+the
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=over+here+the+minister+of+finance+the+guy+that+moved+from+the+louvre+goes+in+here++there+s+a+new+library+across+the+river
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+back+in+here+in+this+already+treed+park++we+re+doing+a+very+dense+building+called+the+american+center+which+has+a+theater
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=apartments++dance+school+an+art
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=museum++restaurants+and+all+kinds+of+it+s+a+very+dense+program+bookstores
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+a+very+tight+small+this+is+the+ground+level+and+the+french+have+this
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=screwing+things+up+by+taking+a+beautiful+site+and+cutting+the+corner+off+they+call+it+the+plan+coupe++and
error: request timeout
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+to+get+around+the+corner++these+are+the+models+for
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+the+way+i+organized+myself+so+i+could+make+the+drawing
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+understood+the+problem+i+was+trying+to+get+around+this+plan+coupe+how+do+you+do+it+apartments+etc
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=kind+of+study+models+we+did
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+one+on+the+left+is+pretty+awful++you+can+see+why+i+was+ready+to+commit+suicide+when+this+one+was
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=built++but+out+of+it+came+finally+this+resolution+where+the
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=elevator+piece+worked+frontally+to+this+parallel+to+this+street+and+also+parallel+to+here+and+then+this+kind+of
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+this+balcony+and+the+skirt+kind+of+like+a+ballerina
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=lifting+her+skirt+to+let+you+into+the
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=foyer+the+restaurants+here+the+apartments
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+theater+etc+so+it+would+all+be+built+in+stone+in+french+limestone++except+for+this+metal+piece+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+faces+into+a+park+and+the+idea+was+to+make+this+express
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=facing+the+street+it+s+much
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=more+normal+except+i+slipped+a+few+mansards+down+so+that+coming+on+the+point+these+housing+units
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=made+a+gesture+to+the+corner
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+guys+have+any+ideas+for+it+please+contact+me+i+don+t+know+what+to+do
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=jay+chiat+is+a+glutton+for+punishment+and+he+hired+me+to+do+a+house+for+him+in+the+hamptons
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+s+got+a+fish++and+i+keep+thinking+this+is+going+to+be+the+last+fish
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+like+a+drug+addict+i+say+i+m+not+going+to+do+it+anymore+i+don+t+want+to+do+it+anymore+i+m+not+going+to+do+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+do+it+there+it+is+but+it+s+the+living+room+and+this+piece+here+is
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+don+t+know+what+it+is+i+just+added+it+so+that+we+d+have+enough+money+in+the+budget+so+we+could+take+something+out
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+ve+worked+with+all+of+the+guys+that+presented+to+you+earlier++we+ve+had+a+lot+of+fun+working+together+i+think
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+from+mars+for+them+and+they+are+for+me+but+somehow+we+all+manage+to+work+together+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+hotel+that+tony+baxter+s+group+is+doing
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=out+here++and+then+this+is+a+kind+of+a+shopping+mall+with+a+rodeo+and+restaurants+and
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=another+restaurant+++what+i+did+because+of+the+paris+skies+being+quite+dull+i+made+a+light+grid
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+perpendicular+to+the+train+station+to+the+route+of+the+train++it+looks+like+it
error: request timeout
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=been+there++and+then+crashed+all+these+simpler+forms+into+it+the+light+grid+will+have+a+light+be+lit+up
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+night+and+and+give+a+kind+of+light+ceiling
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=rhine+across+from+basel++we+did+a+furniture+factory+and+a+furniture+museum
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+tried+to+there+s+a+nick+grimshaw+building+over+here+there+s+an+oldenburg+sculpture+over+here+i+tried+to+make+a
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=relationship+urbanistically+and+i+don+t+gave+good+slides+to+show+it+s+just+been+completed+but
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+piece+here+is+this+building+and+these+pieces+here+and+here+and+as+you+pass+by+it+s+always
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=part+you+see+it+as+all+of+these+pieces+accrue+and+become+part+of+an+overall
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+plaster+and+just+zinc
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+wonder+if+this+is+a+museum+what+it+s+going+to+be+like+inside
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=going+to+be+so+busy+and+crazy+that
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+wouldn+t+show+anything++and+just+wait+i+m+so+cunning+and+clever
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+made+it+quiet+and+wonderful++but+on+the+outside+it+does
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=scream+out+at+you+a+bit
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=basically+three+square+rooms+with+a+couple+of+skylights+and+stuff+and+from+the+building+in+the+back+you+see+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=iceberg+floating+by+in+the+hills
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=down+and+becomes+that+one+so+it+s+pretty+quiet+inside
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+the+disney+hall+the+concert+hall++it+s
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+complicated+project+it+has+a+chamber+hall++it+s+related+to+an+existing
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=chandler+pavilion+that+was+built+with+a+lot+of+love+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+caring++and+it+s+not+a+great+building+but+i+approached+it+optimistically+that+we+would+make+a
error: request timeout
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+would+strengthen+both+of+us+and+the+plan+of+this+it+s+a+concert+hall+this+is+the+foyer
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+is+kind+of+a+garden+structure+there+s+commercial+at+the+ground+floor+these+are+offices+which+really
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+competition+we+didn+t+have+to+design+but+finally+there+s+a+hotel+there
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+were+the+kind+of+relationships+made+to+the+chandler++composing+these+elevations+together
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+relating+them+to+the+buildings+that+existed
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+competition+gave+us+criteria+which+led+to+this+compartmentalized
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=scheme++which+we+found+out+after+the+competition+would+not+work+at+all+but
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=everybody+liked+these+forms+and+liked+the+space+and+so+that+s+one+of+the+problems+of+a+competition+you+have+to+then+try+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=get+that+back+in+some+way++and+we+studied
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=many+models++this+was+our+original+model+these+were+the+three
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=buildings+that+were+the+ideal+the+concertgebouw+boston+and+berlin++everybody+liked+the+surround
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=actually+this+is+the+smallest+hall+in+size+and+it+has+more+seats+than+any+of
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+it+has+double+balconies+our+client+doesn+t+want+balconies+so
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+when+we+met+our+new+acoustician+he+told+us+this+was+the+right+shape+or+this+was+the+right+shape++and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+tried+many+shapes+trying+to+get
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+energy+of+the+original+design+within+an+acoustical
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=finally+settled+on+a+shape+that+was+the+proportion+of+the+concertgebouw+with+the
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sloping+outside+walls+which+the+acoustician+said+were+crucial+to+this+and+later
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=decided+they+weren+t+but+now+we+have+them+and
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=our+idea+is+to+make+the+seating+carriage+very+sculptural+and+and
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=out+of+wood+and+like+a+big+boat+sitting+in+this+plaster+room
error: request timeout
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+corners+would+have+skylights+and
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+columns+would+be+structural++and+the+nice+thing+about+introducing+columns+is+they+give+you+a+kind+of+sense+of+proscenium+from+wherever+you+sit
error: request timeout
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+not+a+final+design+these+are+just
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+the+way+to+being+and+so+i
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=wouldn+t+take+it+literally+except+the+feeling+of+the+space++we+studied+the+acoustics+with+laser
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=stuff++and+they+bounce+them+off+this+and+see+where+it+all+works+but+you+get+the+sense+of+the+hall+in+section
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=most+halls+come+straight+down+into+a
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+case+we+re+opening+it+back+up
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+getting+skylights+in+the+four+corners+and+so+it+will+be+quite+a+different
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+it+was+frog+like+fit+nicely+on+the+site+and+cranked+itself+well+when+you+get+into+a+box+it+s+harder+to+do+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+here+we+are+struggling+with+how+to+put+the+hotel+in
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=teapot+i+designed+for+alessi++i+just+stuck+it+on+there++but
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+how+i+do+work+i+do+take+pieces+and+bits+and+look+at+it+and+struggle+with+it+and+cut+it+away+and+of+course+it+s+not+going+to+look+like+that+but
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=crazy+way+i+tend+to+work++and+then+finally
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+asked+to+do+a+sculpture+at+the+foot+of+interstate
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=bank+tower+the+highest+building+in+l+a+larry+halprin+is+doing+the+stairs+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+asked+to+do+a+fish+and+so+i+did+a+snake
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=laughter+it+s+a+public+space+and+i+made+it+kind+of+a+garden+structure+and+you+can+go+in+it+it+s+a+kiva+and+larry+s+putting+some+water+in+there++and+it
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=works+much+better+than+a+fish+in+barcelona+i+was+asked+to+do+a+fish+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=re+working+on+that+at+the+foot+of+a+ritz+carlton+tower+being+done+by+skidmore+owings+and+merrill+and+the++ritz+carlton+tower+is+being+designed+with+exposed+steel
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=much+like+those+old+gas+tanks++and+so+we+took+the
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=language+of+this+exposed+steel+and+and+used+it+perverted+it+into+the+form+of+the
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+created+a+kind+of+a+19th+century+contraption+that+looks+like
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+will+sit+this+is+the+beach+and+the+harbor+out+in+front++and+this+is+really+a+shopping+center+with+department+stores++and+we+split+these+bridges
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=originally+this+was+all+solid+with+a+hole+in+it+we
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=cut+them+loose+and+made+several+bridges+and+created+a+kind+of+a+foreground+for+this+hotel
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+to+the+hotel+people+the+other+day++and+they+were+terrified+and+said+that+nobody+would+come+to+the+ritz+carlton+anymore
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+finally+i+just+threw+these+in+lou+danziger+i+didn+t+expect+lou+danziger
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+be+here+but+this+is+a+building+i+did+for+him+in+one+thousand+nine+hundred+and+sixty+four+i+think+a+little+studio+and+it+s
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sadly+for+sale+time+goes+on++and+this+is+my+son
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=working+with+me+on+a+small+fast+food+thing
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+designed+the+robot+as+the+cashier
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=head+moves+and+i+did+the+rest+of+it+and+the+food+wasn+t+as+good+as+the+stuff+and+so+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=failed+it+should+have+been+the+other+way+around+the+food+should+have+been+good+first+it+didn+t+work
found 0 videos: []
error: no video is found.
sleep 5 seconds to avoid blocking
------<747>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/FrankGehry_2002.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+listened+to+this+scientist+this+morning++dr+mullis+was+talking+about+his+experiments+and+i
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=realized+that+i+almost+became+a+scientist+when+i+was+fourteen+my+parents+bought+me+a+chemistry+set
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+decided+to+make+water
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+made+a+hydrogen+generator
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+made+an+oxygen+generator+and+i+had+the+two+pipes+leading+into+a+beaker+and+i+threw+a+match+in
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=turned+around+i+had+it+all+in+my+back
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+was+about+fifteen+feet+away+the+wall+was+covered+with+i+had+an+explosion+richard+saul+wurman+really+fg+people+on+the+street+came+and+knocked+on+the+door+to+see+if+i+was+okay
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+my+left+is+the+very+famous+perhaps+overly+famous+frank+gehry
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+frank+you+ve+come+to+a+place+in+your+life++which+is+astonishing++i+mean+it+is+astonishing
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+an+artist+for+an+architect+to+become+actually+an+icon+and+a+legend+in+their+own+time+i+mean+you+have+become+whether+you+can+giggle+at+it+because+it+s+a+funny
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thought+but+your+building+is+an+icon+you+can+draw+a+little+picture+of+that+building+it+can+be+used+in+ads
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+ve+had+not+rock+star+status+but+celebrity+status
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+doing+what+you+wanted+to+do+for+most+of+your+life++and+i+know+the+road+was+extremely+difficult
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+didn+t+seem+at+least+that+your+sell+outs++whatever+they+were+were+very+big
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+a+life+where+you+re+dependent+on+working+for+somebody
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+that+s+an+interesting+thing+for+a+creative+person+a+lot+of+us+work+for+people+we+re+in+the+hands+of+other+people+and+that+s+one+of+the+great+dilemmas+we+re+in+a+creativity+session+it+s
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+the+great+dilemmas+in+creativity
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+to+do+work+that+s+big+enough+and+not
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sell++out+and+you+ve+achieved+that+and+that+makes+your+win
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=doubly+big++triply+big+it+s+not+quite+a+question+but+you+can+comment+on+it+it+s+a+big+issue+fg
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+i+ve+always+just+i+ve+never+really+gone+out+looking+for+work+i+always+waited+for+it+to+sort+of+hit+me+on+the+head
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+started+out+i+thought+that+architecture+was+a+service+business+and+that+you+had+to+please+the+clients+and+stuff+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+realized+when+i+d+come+into+the+meetings+with+these
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=corrugated+metal+and+chain+link+stuff+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+would+just+look+at+me+like+i+d+just+landed+from+mars
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+couldn+t+do+anything+else+that+was+my+response+to+the+people+in+the+time+and+actually+it+was+responding+to+to
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=clients+that+i+had+who+didn+t+have+very+much+money+so+they+couldn+t+afford+very+much+i+think+it+was+circumstantial+until+i+got+to+my+house
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=where+the+client+was+my+wife+we+bought+this+tiny+little+bungalow+in+santa+monica+and+for+like+fifty+grand+i+built+a+house+around+it+and
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=few+people+got+excited+about+it++i+was+visiting+with+an+artist+michael+heizer+out+in+the
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=desert+near+las+vegas+somewhere+he+s+building+this+huge+concrete+place+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+late+in+the+evening+we+d+had+a+lot+to+drink+we+were+standing+out+in+the+desert+all+alone+and++thinking+about+my
error: request timeout
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=built+stuff+more+permanent++somewhere+in+two+thousand+years+somebody+s+going+to+like+it
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+thought+yeah+that+s+probably+a+good+idea
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=luckily+i+started+to+get+some
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=clients+that+had+a+little+more+money++so+the+stuff+was+a+little+more+permanent
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+just+found+out+the+world+ain+t+going+to+last+that+long+this+guy+was+telling+us+the+other+day++so
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=where+do+we+go+now+back+to+everything+s+so+temporary++i+don+t+see+it+the+way+you+you+characterized
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+me+every+day+is+a+new+thing+i+approach+each+project+with+a+new+insecurity
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=almost+like+the+first+project+i+ever+did+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+get+the+sweats+i+go+in+and+start+working+i+m+not+sure+where+i+m+going+if+i
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=knew+where+i+was+going+i+wouldn+t+do+it+when+i+can+predict+or+plan+it+i+don+t
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=do+it+i+discard+it+so+i+approach+it+with+the+same+trepidation++obviously
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=over+time+i+have+a+lot+more+confidence
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+it+s+going+to+be+ok++i+do
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=run+a+kind+of+a+business+i+ve+got+one+hundred+and+twenty+people
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+ve+got+to+pay+them+so+there+s+a+lot+of+responsibility+involved+but+the+actual+work+on+the+project+is
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+i+think+a+healthy+insecurity++and
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=said+the+other+day+i+could+relate+to
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+bilbao+was+finished+and+i+looked+at+it+i+saw+all+the+mistakes+i+saw+they+weren+t+mistakes+i+saw+everything+that+i+would+have+changed+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+embarrassed+by+it++i+felt+an+embarrassment+how+could+i+have+done+that+how+could+i+have
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=made+shapes+like+that+or+done+stuff+like+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+taken+several+years+to+now+look+at+it+detached+and+say
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=corner+and+a+piece+of+it+works+with+the+road+and+the+street+and+it+appears+to+have+a+relationship
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+i+started+to+like+it+rsw
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+s+the+status+of+the+new+york+project+fg
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+don+t+really+know++tom+krens+came+to+me+with+bilbao+and+explained+it+all+to+me+and+i+thought+he+was+nuts
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+didn+t+think+he+knew+what+he+was+doing+and+he
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=pulled+it+off+so+i+think+he+s+icarus+and+phoenix+all+in+one+guy
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+gets+up+there+and+then+he+comes+back+up+they
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=re+still+talking+about+it+september+eleven
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=generated+some+interest+in+moving+it+over+to
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+m+totally+against+that
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=talking+about+or+building+anything+on+ground+zero+i+think+for+a+long+time++rsw+the+picture+on+the+screen
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+will+be+finished+in+two+thousand+and+three+september+october+and+i+m+hoping+kyu+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=herbie+and+yo+yo+and+all+those+guys+come
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=play+with+us+at+that+place++luckily+today+most+of+the+people+i+m+working+with+are+people
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+really+like+richard+koshalek+is+probably+one+of+the+main+reasons+that+disney+hall+came+to+me+he+s+been+a+cheerleader
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+quite+a+long+time+there+aren+t+many+people+around+that+are+really+involved+with+architecture+as+clients+if+you
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+world++and+even+just+in+this+audience++most+of
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=nothing+that+you+would+call+architecture++right++and+so+to+find+one+a+guy+like+that
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+hang+on+to+him+++he+s+become+the+head+of+art+center
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+there+s+a+building+by+craig+ellwood+there
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+knew+craig+and+and+respected+him++they+want+to+add+to+it+and+it+s+hard+to+add+to+a+building+like+that+it+s+a
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=black+steel+building+and+richard+wants+to+add+a+library+and
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+s+a+lot+of+acreage+i+convinced+him+to+let+me+bring+in+another+architect+from+portugal++alvaro+siza+rsw
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=grew+up+and+lived+in+portugal+and+is+probably+considered+the+portuguese
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=main+guy+in+architecture++i+visited+with+him+a+few+years+ago
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+he+showed+me+his+early+work+and+his+early+work
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=had+a+resemblance+to+my+early+work
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+came+out+of+college+i+started+to
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=try+to+do+things+contextually+in+southern+california+and+you+got+into
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+logic+of+spanish+colonial+tile+roofs+and+things+like+that+i+tried+to+understand+that+language+as+a+beginning+as+a
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+a+place+to+jump+off++and+there+was+so+much+of+it+being+done+by+spec+builders+and+and+it+was+trivialized+so+much+that+it
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+wasn+t+i+just+stopped+i+mean+charlie+moore+did+a+bunch+of+it+but
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+didn+t+feel+good+to+me+siza+on+the+other+hand
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=continued+in+portugal+where+the+real+stuff+was+and+evolved+a+modern+language+that+relates+to
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+always+felt+that+he+should+come+to+southern+california+and+do+a+building+i+tried+to+get+him
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+couple+of+jobs+and+they+didn+t+pan+out+i+like+the+idea+of+collaboration+with
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+like+that+because+it+pushes+you
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+done+it+with+claes+oldenburg
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+with+richard+serra+who+doesn+t+think+architecture+is+art+did+you+see+that+thing
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+a+richer+experience+it+must+be+like+that+for+kyu+doing+things+with+musicians+it+s+similar+to+that+i+would+imagine+where+you
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=each+other++you+make+something+they+make+something++and+i+think
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+me+it+s+a+way+of+trying+to+understand+the+city+and+what+might+what+might+happen+in+the+city+rsw+is+it+going+to+be+near+the+current+campus
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+is+it+going+to+be+down+near+fg+no+it+s+near+the+current+campus++anyway++he+s+that+kind+of+patron+it+s+not+his+money+of+course
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=interesting+because+it+creates+chaos+right+everybody+doing+their+thing+makes+a+very+chaotic+environment+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+can+figure+out+how+to+work+off+each+other
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+get+a+bunch+of+people+who+respect+each+other+s+work+and+play
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=play+off+each+other+you+might+be+able+to+create+models+for+for+how+to+build+sections+of+the+city
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=without+resorting+to+the+one+architect+like+the+rockefeller+center+model+which+is+kind+of+from+another
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=era+rsw+i+found+the+most+remarkable+thing+my+preconception+of+bilbao
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+this+wonderful+building+you+go+inside
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=seen+drawings+you+had+presented+here+at+ted+the+surprise+of+bilbao
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+in+its+context+to+the+city
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+was+the+surprise+of+going+across+the+river+of+going+on+the+highway+around+it+of+walking+down+the+street+and+finding+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+was+the+real+surprise+of+bilbao+fg+but+you+know++richard+most+architects+when+they+present+their+work+most+of+the+people+we+know
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+get+up+and+you+talk+about+your+work+and+it+s+almost+like+you
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+tell+everybody+you+re+a+good+guy+by+saying+look+i+m
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=worried+about+the+context+i+m+worried+about+the+city
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+worried+about+my+client+i+worry+about+budget+that+i+m+on+time+blah+blah+blah+and+all+that+stuff+and+it+s+like
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=cleansing+yourself+so+that+you+can+by+saying+all+that+it+means+your
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+means+your+work+is+good+somehow++and+i+think
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+mean+that+should+be+a+matter+of+fact+like+gravity+you+re
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+going+to+defy+gravity+you+ve+got+to+work+with+the+building+department+if+you+don+t+meet+the+budgets++you+re+not+going+to+get+much+work+if
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=project+they+were+interviewing+me+for+mit+and+they+sent+their+their+facilities+people+to+bilbao
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+met+them+in+bilbao+they+came+for+for+three+days+rsw+this+is+the+computer+building+fg+yeah+the+computer+building+they+were+there+three+days+and+it+rained+every+day
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+kept+walking+around+i+noticed+they+were+looking+under
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=things+and+looking+for+things+and+they+wanted+to+know+where+the+buckets+were+hidden+you+know+people+put+buckets+out
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+clean+there+wasn+t+a+bloody+leak+in+the+place+it+was+just+fantastic++but
error: request timeout
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=yeah+well+up+until+then+every+building+leaked+so+this
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=had+a+fame+his+fame+was+built+on+that+in+l+a+for+a+while
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=laughter+fg+you+ve+all+heard+the+frank+lloyd+wright+story+when+the+woman+called+and+said
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sitting+on+the+couch+and+the+water
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=laughter+but+my+point+is+that
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+call+it+the+then+what+ok+you+solved+all+the+problems+you+did+all+the+stuff+you+made+nice++you+loved+your+clients+you+loved+the
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+do+you+bring+to+it++and+i+think+that+s+what
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+always+been+interested+in+is+that+which+is+a+personal+kind+of+expression
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+have+that+kind+of+personal+expression+and+still+touch+all+the+bases
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fitting+into+the+city++that+s+what+reminded+me++of+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+think+that+s+that+s+the+issue++you+know+it+s+the+then+what+that+most+clients
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=most+clients+aren+t+hiring+architects+for+that+they+re+hiring+them+to+get+it+done+get+it+on+budget
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=be+polite++and+they+re+missing+out+on
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=an+architect+rsw+at+a+certain+point+a+number+of+years+ago+people+when+michael+graves+was+a+fashion
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+wanted+a+michael+graves+building
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=since+bilbao+opened+which+is+now+four+five+years
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=both+krens+and+i+have+been+called+with+at+least+one+hundred+opportunities+china
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+come+in+and+do+the+bilbao+effect+and+i+ve+met+with+some+of+some+of+these+people+usually+i
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=say+no+right+away++but+some+of+them+come+with+pedigree+and+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+sound+well+intentioned+and+they
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+get+you+for+at+least+one+or+two+meetings+in+one+case+i+flew+all+the+way+to+malaga+with+a+team
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+the+thing+was+signed+with+seals+and+various
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=seals+from+the+city+and+that+they+wanted+me+to+come+and+do+a+building+in+their+port+i+asked+them+what+kind+of+building+it+was+when+you+get+here
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+took+us+they+put+us+up+in+a+great+hotel+and+we+were+looking+over+the
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+bay+and+then+they+took+us+in+a+boat+out+in+the+water+and+showed+us
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+these+sights+in+the+harbor+each+one+was+more+beautiful+than+the+other
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+were+going+to+have+lunch+with+the+mayor+and+we+were+going+to+have+dinner
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=most+important+people+in+malaga+just+before+going+to+lunch+with+the+mayor
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+went+to+the+harbor+commissioner+it+was+a+table
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+harbor+commissioner+was+here+and+i+was+here+and+my+guys
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+sat+down+and+we+had+a+drink+of+water+and+everybody+was+quiet+and+the+guy+looked+at+me+and+said
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=can+i+do+for+you+mr+gehry+rsw+oh
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+god+fg+so+i+got+up
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+said+to+my+team+let+s+get+out+of+here+we+stood+up+we+walked+out+they+followed+the+guy+that+dragged+us+there+followed+us+and+he+said+you+mean+you+re+not+going+to+have+lunch+with+the
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+old+enough+that+i+can+complain+i+can+t+travel
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+don+t+have+my+own+plane+yet
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+up+and+wind+up+the+meeting+because+it+s+been+very+long+but+let+me+just+say+a+couple+words+fg+can+i+say+something+are+you+going+to+talk+about
found 0 videos: []
sleep 2 seconds to avoid blocking
error: no video is found.
sleep 4 seconds to avoid blocking
------<748>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/FrankWarren_2012.stm
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+all+started+with+a+crazy+idea+in+november+of+two+thousand+and+four
found 1 videos: [['/talks/frank_warren_half_a_million_secrets', '2012']]
selected: /talks/frank_warren_half_a_million_secrets
sleep 3 seconds to avoid blocking
------<749>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/FransDeWaal_2011X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+born+in+den+bosch+where+the+painter+hieronymus+bosch+named+himself+after+and+i+ve+always+been+very+fond+of+this+painter
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+lived+and+worked+in+the+15th+century++and+what+is+interesting+about+him+in+relation+to+morality+is+that+he+lived+at+a+time+where+religion+s+influence+was+waning+and+he+was+sort+of+wondering+i+think
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+would+happen+with+society+if+there+was+no+religion+or+if+there+was+less+religion+and+so+he+painted+this+famous+painting+the+garden+of+earthly+delights+which+some+have+interpreted+as
found 1 videos: [['/talks/frans_de_waal_moral_behavior_in_animals', '2012']]
selected: /talks/frans_de_waal_moral_behavior_in_animals
sleep 3 seconds to avoid blocking
------<750>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/FransLanting_2005.stm
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+s+been+my+passion+as+a+photographer+for+national+geographic+i+ve+portrayed+it+for+many
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+five+years+ago++i+went+on+a+personal+journey
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+wanted+to+visualize+the+story+of+life+it
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+the+hardest+thing+i+ve+ever+attempted++and+there+have+been+plenty+of+times+when+i+felt+like+backing+out
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+there+were+also+revelations++and+one+of+those+i+d+like+to+share+with+you+today
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+went+down+to+a+remote+lagoon+in+australia++hoping+to+see+the+earth
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+way+it+was+three+billion+years+ago++back+before+the+sky+turned+blue
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+stromatolites+down+there+the+first+living+things+to+capture+photosynthesis
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+s+the+only+place+they+still+occur+today++going+down+there+was+like+entering+a+time+capsule
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+came+out+with+a+different+sense+of+myself+in+time
found 2 videos: [['/talks/frans_lanting_the_story_of_life_in_photographs', '2007'], ['/talks/david_rockwell_a_memorial_at_ground_zero', '2007']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+oxygen+exhaled+by+those+stromatolites+is+what+we+all+breathe+today
found 1 videos: [['/talks/frans_lanting_the_story_of_life_in_photographs', '2007']]
selected: /talks/frans_lanting_the_story_of_life_in_photographs
sleep 4 seconds to avoid blocking
------<751>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/FransLanting_2014.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=humanity+takes+center+stage+at+ted++but+i+would+like+to+add+a+voice+for+the+animals
found 1 videos: [['/talks/frans_lanting_photos_that_give_voice_to_the_animal_kingdom', '2014']]
selected: /talks/frans_lanting_photos_that_give_voice_to_the_animal_kingdom
sleep 2 seconds to avoid blocking
------<752>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/FranzFreudenthal_2016.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+most+complex+problems+in+our+time
found 15 videos: [['/talks/franz_freudenthal_a_new_way_to_heal_hearts_without_surgery', '2016'], ['/talks/david_chalmers_how_do_you_explain_consciousness', '2014'], ['/talks/james_bridle_the_nightmare_videos_of_children_s_youtube_and_what_s_wrong_with_the_internet_today', '2018'], ['/talks/tom_wujec_got_a_wicked_problem_first_tell_me_how_you_make_toast', '2015'], ['/talks/hilary_cottam_social_services_are_broken_how_we_can_fix_them', '2015'], ['/talks/tim_harford_how_frustration_can_make_us_more_creative', '2016'], ['/talks/margaret_heffernan_forget_the_pecking_order_at_work', '2015'], ['/talks/yves_morieux_how_too_many_rules_at_work_keep_you_from_getting_things_done', '2015'], ['/talks/raphael_arar_how_we_can_teach_computers_to_make_sense_of_our_emotions', '2018'], ['/talks/anthony_goldbloom_the_jobs_we_ll_lose_to_machines_and_the_ones_we_won_t', '2016'], ['/talks/naomi_mcdougall_jones_what_it_s_like_to_be_a_woman_in_hollywood', '2017'], ['/talks/adam_driver_my_journey_from_marine_to_actor', '2016'], ['/talks/bill_and_melinda_gates_why_giving_away_our_wealth_has_been_the_most_satisfying_thing_we_ve_done', '2014'], ['/talks/david_miliband_the_refugee_crisis_is_a_test_of_our_character', '2017'], ['/talks/amy_edmondson_how_to_turn_a_group_of_strangers_into_a_team', '2018']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=can+be+solved+with+simple+techniques++if+we+are+able+to+dream
found 2 videos: [['/talks/franz_freudenthal_a_new_way_to_heal_hearts_without_surgery', '2016'], ['/talks/alexander_belcredi_how_a_long_forgotten_virus_could_help_us_solve_the_antibiotics_crisis', '2018']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+a+child++i+discovered+that+creativity+is+the+key+to+cross
found 1 videos: [['/talks/franz_freudenthal_a_new_way_to_heal_hearts_without_surgery', '2016']]
selected: /talks/franz_freudenthal_a_new_way_to_heal_hearts_without_surgery
sleep 5 seconds to avoid blocking
------<753>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/FredericKaplan_2013X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+an+image+of+the+planet+earth+it+looks+very+much+like+the+apollo+pictures
found 2 videos: [['/talks/will_marshall_tiny_satellites_show_us_the_earth_as_it_changes_in_near_real_time', '2014'], ['/talks/frederic_kaplan_how_to_build_an_information_time_machine', '2014']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+are+very+well+known+there+is+something+different++you+can+click+on+it
found 19 videos: [['/talks/markham_nolan_how_to_separate_fact_and_fiction_online', '2012'], ['/talks/jean_baptiste_michel_erez_lieberman_aiden_what_we_learned_from_5_million_books', '2011'], ['/talks/andy_yen_think_your_email_s_private_think_again', '2015'], ['/talks/frederic_kaplan_how_to_build_an_information_time_machine', '2014'], ['/talks/srdja_popovic_how_to_topple_a_dictator', '2011'], ['/talks/kevin_slavin_how_algorithms_shape_our_world', '2011'], ['/talks/stuart_firestein_the_pursuit_of_ignorance', '2013'], ['/talks/aaron_koblin_visualizing_ourselves_with_crowd_sourced_data', '2011'], ['/talks/dave_debronkart_meet_e_patient_dave', '2011'], ['/talks/charles_limb_your_brain_on_improv', '2011'], ['/talks/rives_reinventing_the_encyclopedia_game', '2012'], ['/talks/lisa_harouni_a_primer_on_3d_printing', '2012'], ['/talks/yoav_medan_ultrasound_surgery_healing_without_cuts', '2011'], ['/talks/wayne_mcgregor_a_choreographer_s_creative_process_in_real_time', '2012'], ['/talks/jon_nguyen_tour_the_solar_system_from_home', '2012'], ['/talks/rives_the_museum_of_four_in_the_morning', '2014'], ['/talks/jinsop_lee_design_for_all_5_senses', '2013'], ['/talks/lauren_hodge_shree_bose_naomi_shah_award_winning_teenage_science_in_action', '2012'], ['/talks/richard_seymour_how_beauty_feels', '2011']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+if+you+click+on+it+you+can
found 17 videos: [['/talks/sally_kohn_don_t_like_clickbait_don_t_click', '2014'], ['/talks/neil_burgess_how_your_brain_tells_you_where_you_are', '2012'], ['/talks/joy_sun_should_you_donate_differently', '2014'], ['/talks/jean_baptiste_michel_erez_lieberman_aiden_what_we_learned_from_5_million_books', '2011'], ['/talks/julian_baggini_is_there_a_real_you', '2012'], ['/talks/markham_nolan_how_to_separate_fact_and_fiction_online', '2012'], ['/talks/gary_kovacs_tracking_our_online_trackers', '2012'], ['/talks/greg_gage_how_to_control_someone_else_s_arm_with_your_brain', '2015'], ['/talks/frederic_kaplan_how_to_build_an_information_time_machine', '2014'], ['/talks/jake_barton_the_museum_of_you', '2013'], ['/talks/kevin_slavin_how_algorithms_shape_our_world', '2011'], ['/talks/david_pogue_10_top_time_saving_tech_tips', '2013'], ['/talks/bettina_bair_inside_your_computer', '2013'], ['/talks/ryan_merkley_online_video_annotated_remixed_and_popped', '2012'], ['/talks/david_grady_how_to_save_the_world_or_at_least_yourself_from_bad_meetings', '2014'], ['/talks/andreas_ekstrom_the_moral_bias_behind_your_search_results', '2015'], ['/talks/andy_yen_think_your_email_s_private_think_again', '2015']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+many+cases+you+can+also+see+how+a+building+looks+from+a+nearby+street+this+is+pretty+amazing++but+there+s+something+missing
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+this+wonderful+tour+it+s+time+i+m+not+really+sure+when+this+picture+was+taken++i+m+not+even+sure+it+was+taken+at
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+my+lab+we+develop+tools+to+travel+not+only+in+space+but+also+through+time
found 1 videos: [['/talks/frederic_kaplan_how_to_build_an_information_time_machine', '2014']]
selected: /talks/frederic_kaplan_how_to_build_an_information_time_machine
sleep 2 seconds to avoid blocking
------<754>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/FrederickBalagadde_2010U.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+greatest+irony+in+global+health+is+that+the+poorest+countries+carry+the+largest
found 1 videos: [['/talks/frederick_balagadde_bio_lab_on_a_microchip', '2010']]
selected: /talks/frederick_balagadde_bio_lab_on_a_microchip
sleep 3 seconds to avoid blocking
------<755>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/FredJansen_2015.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+to+take+you+on+the+epic+quest+of+the+rosetta+spacecraft
found 1 videos: [['/talks/fred_jansen_how_to_land_on_a_comet', '2015']]
selected: /talks/fred_jansen_how_to_land_on_a_comet
sleep 4 seconds to avoid blocking
------<756>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/FredSwaniker_2014G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+the+age+of+four+because+of+the+coup+d+tat+my+family+had+to+leave
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+native+home+of+ghana+and+move+to+the+gambia+as+luck+would+have+it+six+months+after+we+arrived++they+too+had+a+military+coup
found 1 videos: [['/talks/fred_swaniker_the_leaders_who_ruined_africa_and_the_generation_who_can_fix_it', '2014']]
selected: /talks/fred_swaniker_the_leaders_who_ruined_africa_and_the_generation_who_can_fix_it
sleep 1 seconds to avoid blocking
------<757>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/FredyPeccerelli_2014Y.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=guatemala+is+recovering+from+a+36+year+armed+conflict+a+conflict+that+was+fought+during+the+cold+war+it+was+really+just
found 1 videos: [['/talks/fredy_peccerelli_a_forensic_anthropologist_who_brings_closure_for_the_disappeared', '2015']]
selected: /talks/fredy_peccerelli_a_forensic_anthropologist_who_brings_closure_for_the_disappeared
sleep 1 seconds to avoid blocking
------<758>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/FreemanDyson_2003.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+will+we+be+remembered+in+two+hundred+years++i+happen+to+live+in+a+little+town+princeton+in+new+jersey+which
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=every+year+celebrates+the+great+event+in+princeton+history+the+battle+of+princeton
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+was+in+fact+a+very+important+battle+it+was+the+first+battle+that+george+washington+won+in+fact
error: request timeout
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=pretty+much+of+a+turning+point+in+the+war+of+independence+it+happened+two+hundred+and+twenty+five+years+ago
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+actually+a+terrible+disaster+for+princeton
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+town+was+burned+down+it+was+in+the+middle+of+winter++and+it+was+a+very+very+severe+winter
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+about+a+quarter+of+all+the+people+in+princeton+died+that+winter+from+hunger+and+cold
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+they+remember+is+of+course+the+great+triumph+that+the+brits+were+beaten+and+we+won
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+that+the+country+was+born
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+i+agree+very+emphatically+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+pain+of+childbirth+is+not+remembered+it+s+the+child+that+s+remembered++and+that+s+what+we+re+going+through+at+this+time
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=talk+for+one+minute+about+the+future+of+biotechnology++because+i+think+i+know+very+little+about+that+i+m+not+a+biologist
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=everything+i+know+about+it+can+be+said+in+one+minute
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+i+m+saying+is+that+we+should+follow+the+model+that+has+been+so+successful+with+the+electronic
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=into+a+great+success+in+the+world+as+a+whole+is+toys
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+soon+as+computers+became+toys+when+kids+could+come+home+and+play+with+them
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=then+the+the+industry+really+took+off++and+that+has+to+happen+with+biotech+there+s+a+huge
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+are+practical+biologists+who+are+dog+breeders++pigeon+breeders
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=orchid+breeders++rose+breeders+people+who
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=handle+biology+with+their+hands++and+who+are+dedicated+to+producing+beautiful+things+beautiful
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+people+will+be+empowered+with+biotech++and+that+will+be+an+enormous+positive
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+biotechnology++that+will+blow+away+a+lot+of+the+opposition++when+people+have+this
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=buy+the+software+you+design+it
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+won+t+say+anymore++you+can+take+it+on+from+there
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+it+has+to+happen+before
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=becomes+natural+becomes+part+of+the+human+condition
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=something+that+everybody+s+familiar+with+and+everybody+accepts+so+let+s
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=leave+that+aside+i+want+to+talk+about+something+quite+different+which+is+what+i+know
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+is+astronomy+and+i+m+interested+in+searching+for+life+in+the+universe++and+it+s
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=open+to+us+to+introduce+a+new+way+of+doing+that+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+what+i+ll+talk+about+for+ten+minutes+or+whatever+the+time+remains
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+important+fact+is+that+most+of+the+real+estate+that+s+accessible
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+us+i+m+not+talking+about+the+stars+i+m+talking+about+the+solar+system+the+stuff+that+s+within+reach
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+spacecraft+and+within+reach+of+our+earthbound+telescopes
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=most+of+the+real+estate+is+very+cold
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+very+far+from+the+sun++if+you+look+at+the+solar+system+as+we+know+it+today++it+has+a+few+planets+close+to+the+sun+that+s+where+we
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+has+a+fairly+substantial+number+of+asteroids+between
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+orbit+of+the+earth+out+through+to
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+orbit+of+jupiter++the+asteroids+are+a+substantial+amount+of+real+estate+but+not+very+large
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+s+not+very+promising+for+life++since+most+of+it+consists+of+rock+and+metal+mostly+rock
error: request timeout
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+only+cold+but+very+dry
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+the+asteroids+we+don+t+have+much+hope+for
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+stand+some+interesting+places+a+little+further+out
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+moons+of+jupiter+and+saturn+particularly+there+s+a+place+called+europa+which+is+europa+is+one+of+the+moons+of+jupiter
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+looks+as+if+it+s+floating+on+top+of+an+ocean++so+we+believe+that+on+europa+there+is+in+fact+a+deep+ocean+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+makes+it+extraordinarily+interesting+as+a+place+to+explore
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+most+likely+place+for+life+to+originate+just+as+it+originated+on+the+earth++so
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+would+love+to+explore+europa+to+go+down+through+the+ice
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=find+out+who+is+swimming+around+in+the+ocean++whether+there+are+fish
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+seaweed+or+sea+monsters+whatever+there+may+be+that+s+exciting+or+cephalopods
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+that+s+hard+to+do
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=unfortunately+the+ice+is+thick+we+don+t+know+just+how+thick+it+is+probably+miles+thick+so+it+s+very+expensive+and+very
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+go+down+there+send+down+your+submarine+or+whatever+it+is
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+explore+that+s+something+we+don+t+yet+know+how+to+do+there+are+plans+to+do+it++but+it+s+hard
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=go+out+a+bit+further+you+ll+find+that+beyond+the+orbit+of+neptune+way+out+far+from+the+sun
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+where+the+real+estate+really+begins+you+ll+find
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=millions+or+trillions+or+billions+of+objects
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+in+what+we+call+the+kuiper+belt+or+the+oort+cloud+these+are+clouds+of+small+objects
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=appear+as+comets+when+they+fall+close+to+the+sun++mostly+they+just+live+out+there+in+the+cold+of+the+outer+solar+system
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=very+interesting+indeed+because+they+consist+primarily+of+ice
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+other+minerals+which+are+just+the+right+ones+for+developing+life+so+if+life+could+be+established+out+there
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+would+have+all+the+essentials
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+what+i+m+proposing+is+that+there+is+where+we+should+be+looking+for+life+rather+than+on+mars++although+mars+is
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=course+also+a+very+promising+and+interesting+place+but+we+can+look+outside+very+cheaply
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+in+a+simple+fashion+and+that+s+what+i+m+going+to+talk+about+there+is+a
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=imagine+that+life+originated+on+europa+and+it+was+sitting+in+the+ocean+for+billions+of+years
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+quite+likely+that+it+would+move+out+of+the+ocean+onto+the
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=surface++just+as+it+did+on+the+earth++staying+in+the+ocean+and+evolving+in+the+ocean+for+two+billion+years+finally+came+out+onto+the+land
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+of+course+it+had+great+much+greater+freedom
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+a+much+greater+variety+of+creatures
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=developed+on+the+land+than+had+ever+been+possible+in+the+ocean+and+the+step+from+the+ocean+to+the+land+was+not+easy
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+europa+in+the+ocean++it+could+also+have+moved+out+onto+the+surface+there+wouldn+t+have+been+any+air+there+it+s+a+vacuum+it+is+out
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+cold++but+it+still+could+have+come++you+can+imagine+that+the+plants+growing+up+like+kelp
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=through+cracks+in+the+ice+growing+on+the+surface+what+would+they+need+in+order+to+grow+on+the+surface+they+d+need+first+of+all
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+have+a+thick+skin+to+protect+themselves+from+losing+water+through+the+through+the+skin
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+they+would+have+to+have+something+like+a+reptilian+skin
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+better+what+is+more+important+is+that+they+would+have+to+concentrate+sunlight+the+sunlight+in+jupiter
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+the+satellites+of+jupiter+is
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=twenty+five+times+fainter+than+it+is+here
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=since+jupiter+is+five+times+as+far+from+the+sun++so+they+would+have+to+have+these+creatures+which+i+call+sunflowers++which+i+imagine+living+on+the+surface+of+europa
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=either+lenses+or+mirrors+to+concentrate+sunlight++so+they+could+keep+themselves
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+would+be+at+a+temperature+of+minus+one+hundred+and+fifty+which+is+certainly+not+favorable+for+developing+life+at+least+of+the+kind+we+know
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+if+they+just+simply+could+grow+like+leaves+little+lenses+and+mirrors+to+concentrate+sunlight+then+they+could+keep+warm+on+the+surface
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+could+enjoy+all+the+benefits+of+the+sunlight
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+have+roots+going+down+into+the+ocean+life
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=then+could+flourish+much+more+so+why+not+look+of+course+it+s+not+very+likely+that+there+s+life+on+the+surface+of+europa++none+of+these+things+is+likely
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+philosophy+is+look+for+what+s+detectable+not+for+what+s+probable+there+s+a+long+history+in+astronomy
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+unlikely+things+turning+out+to+be+there+and+i+mean+the+finest+example+of+that+was+radio+astronomy+as+a
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=whole+this+was+originally+when+radio+astronomy+began
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=radio+waves+coming+from+the+sky++and+the+regular+astronomers+were+scornful+about+this+they+said
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+all+right++you+can+detect+radio+waves+from+the+sun
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+the+sun+is+the+only+object+in+the+universe+that+s+close+enough+and+bright+enough+actually+to+be+detectable
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+radio+waves+from+the+sun+are+fairly+faint++and+everything+else+in+the+universe+is+millions+of
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=times+further+away++so+it+certainly+will+not+be+detectable
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+set+back+the+progress+of+radio+astronomy+by+about+twenty+years
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=since+there+was+nothing+there+you+might+as+well+not+look+well
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+course+as+soon+as+anybody+did+look++which+was+after+about+twenty+years
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+radio+astronomy+really+took+off+because+it+turned+out+the+universe+is+absolutely+full+of+all+kinds+of+wonderful+things
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=brighter+than+the+sun++so+the+same+thing+could+be+true+for+this
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=kind+of+life+which+i+m+talking+about+on+cold+objects+that
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+could+in+fact+be+very+abundant
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+over+the+universe++and+it+s+not+been+detected+just+because+we+haven+t+taken+the+trouble+to+look+so
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+last+thing+i+want+to+talk+about+is+how+to+detect+it
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=something+called+pit+lamping+that+s+the+phrase+which+i+learned+from+my+son+george+who+is+there+in+the+audience++you+take+that+s+a
error: request timeout
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+happen+to+want+to+hunt+animals+at+night++you+take+a+miner+s+lamp+which+is+a+pit+lamp
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+strap+it+onto+your+forehead++so+you+can+see
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+reflection+in+the+eyes+of+the+animal+so+if+you+go+out+at+night
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+shine+a+flashlight++the+animals
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+bright+you+see+the+red+glow+in+their+eyes++which+is+the+reflection+of+the+flashlight++and+then+if+you+re
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=characters++you+shoot+the+animals+and+take+them+home+and+of+course+that+spoils+the+game+for+the+other+hunters+who+hunt+in+the+daytime+so+in+canada
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+illegal++in+new+zealand+it+s+legal+because+the+new+zealand+farmers+use+this+as+a+way+of+getting+rid+of+rabbits+because
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+rabbits+compete+with+the+sheep++in+new+zealand++so+the+farmers+go+out+at+night+with+heavily+armed+jeeps
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=shine+the+headlights++and+anything+that+doesn+t+look+like+a+sheep+you+shoot
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+have+proposed+to+apply+the+same+trick
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+looking+for+life+in+the+universe+that+if+these+creatures+who+are+living+on+cold+surfaces+either+on+europa++or+further+out
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=anywhere+where+you+can+live+on+a+cold+surface
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=those+creatures+must+be+provided+with+reflectors
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+order+to+concentrate+sunlight+they+have+to+have+lenses+and+mirrors+in+order+to+keep+themselves+warm++and+then+when+you+shine+sunlight
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+them++the+sunlight+will+be+reflected+back+just+as+it+is+in+the+eyes+of+an+animal
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+these+creatures+will+be+bright+against+the+cold+surroundings++and+the+further+out+you+go+in+this
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=away+from+the+sun++the+more+powerful+this+reflection+will+be+so+actually+this+method+of+of+hunting+for+life
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+stronger+as+you+go+further+away++because+the+optical+reflectors+have+to+be+more+powerful+so+the+reflected+light+shines+out+even+more+in
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+as+you+go+further+away+from+the+sun++this+becomes+more+and+more+powerful
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+in+fact+you+can+look+for+these+creatures+with+telescopes+from+the+earth
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=why+aren+t+we+doing+it+simply+because+nobody+thought+of+it+yet
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+hope+that+we+shall+look+and+with+any
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+probably+won+t+find+anything+none+of+these+speculations+may+have+any+basis+in+fact
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+still++it+s+a+good+chance+and+of+course+if+it+happens+it+will+transform+our+view+of+life
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+way+life+can+live+out+there
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+has+enormous+advantages+as+compared+with+living+on+a+planet++it+s+extremely+hard+to+move+from+one+planet+to+another
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+re+having+great+difficulties+at+the+moment
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=any+creatures+that+live+on+a+planet+are+pretty+well+stuck+especially+if+you+breathe+air++it+s+very+hard+to+get+from+planet
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+live+in+a+vacuum+if+you+live+on+the+surface+of+one+of+these+objects+say+in+the+kuiper+belt+this+an+object+like+pluto+or+one+of+the+smaller
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+happened+if+you+if+you+re+living+on+the+surface+there+and+you+get+knocked+off+the+surface+by+a+collision
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=then+it+doesn+t+change+anything+all+that+much+you+still+are+on+a+piece+of+ice
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+still+have+sunlight+and+you+can+still+survive
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=while+you+re+traveling+from+one+place+to+another++and+then+if+you+run+into+another
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+stay+there+and+colonize+the+other+object+so+life+will+spread+then+from+one+object+to+another++so+if+it+if+it+exists+at+all+in+the+kuiper+belt
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+likely+to+to+be+very+widespread+and+you+will+have+then+a+great
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=competition+amongst+species+darwinian+evolution+so+there+ll+be+a+huge+advantage+to+the+species+which+is+able+to+jump+from+one
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=place+to+another+without+having+to+wait+for+a+collision++and+there+ll+be+advantages+for+spreading+out
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=long++sort+of+kelp+like+forest
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+vegetation+i+call+these+creatures+sunflowers+they+look+like++maybe+like+sunflowers+they+have+to+be+all+the+time+pointing+toward+the+sun
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+will+be+able+to
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=spread+out+in+space+because+gravity+on+these+objects+is+weak++so+they+can+collect+sunlight+from+a+big+area++so+they+will+in+fact+be+quite+easy
error: request timeout
sleep 1 seconds to avoid blocking
error: no video is found.
sleep 3 seconds to avoid blocking
------<759>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/FreemanHrabowski_2013.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=be+talking+about+the+success+of+my+campus+the+university+of+maryland+baltimore+county+umbc
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+educating+students+of+all+types++across+the+arts+and+humanities+and+the+science+and+engineering+areas
found 1 videos: [['/talks/freeman_hrabowski_4_pillars_of_college_success_in_science', '2013']]
selected: /talks/freeman_hrabowski_4_pillars_of_college_success_in_science
sleep 4 seconds to avoid blocking
------<760>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GabbyGiffords_2014.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=began+like+all+others+you+were+both+doing+the+work+that+you+love
found 15 videos: [['/talks/elizabeth_lesser_say_your_truths_and_seek_them_in_others', '2016'], ['/talks/andrew_solomon_love_no_matter_what', '2013'], ['/talks/jake_barton_the_museum_of_you', '2013'], ['/talks/andrew_solomon_depression_the_secret_we_share', '2013'], ['/talks/monica_byrne_a_sci_fi_vision_of_love_from_a_318_year_old_hologram', '2016'], ['/talks/johann_hari_everything_you_think_you_know_about_addiction_is_wrong', '2015'], ['/talks/david_anderson_your_brain_is_more_than_a_bag_of_chemicals', '2013'], ['/talks/norman_lear_an_entertainment_icon_on_living_a_life_of_meaning', '2016'], ['/talks/gabby_giffords_and_mark_kelly_be_passionate_be_courageous_be_your_best', '2014'], ['/talks/paul_bloom_can_prejudice_ever_be_a_good_thing', '2014'], ['/talks/ryan_gravel_how_an_old_loop_of_railroads_is_changing_the_face_of_a_city', '2016'], ['/talks/henry_evans_and_chad_jenkins_meet_the_robots_for_humanity', '2013'], ['/talks/brian_goldman_doctors_make_mistakes_can_we_talk_about_that', '2012'], ['/talks/chelsea_shields_how_i_m_working_for_change_inside_my_church', '2015'], ['/talks/joshua_prager_in_search_of_the_man_who_broke_my_neck', '2013']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+were+meeting+with+constituents+which+is+something+that+you+loved+doing+as+a+congresswoman+and+mark+you+were+happily+preparing+for
found 1 videos: [['/talks/gabby_giffords_and_mark_kelly_be_passionate_be_courageous_be_your_best', '2014']]
selected: /talks/gabby_giffords_and_mark_kelly_be_passionate_be_courageous_be_your_best
sleep 2 seconds to avoid blocking
------<761>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GabeBarciaColombo_2013U.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+a+vending+machine+in+los+angeles+it+s+in+a+shopping+mall+and+it+sells+fish+eggs+it+s+a+caviar+vending+machine
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=machine+that+sells+small+artistic+creations+by+different+artists+usually+on+small+wood+blocks+or+matchboxes+in+limited+edition
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+oliver+medvedik+he+is+not+a+vending+machine++but+he+is+one+of+the+founders+of+genspace
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+community+biolab+in+brooklyn+new+york+where+anybody+can+go+and+take+classes+and+learn+how+to+do+things+like+grow++e+coli+that+glows+in+the+dark+or+learn+how+to+take+strawberry+dna
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+fact+i+saw+oliver+do+one+of+these+strawberry+dna+extractions+about+a+year+ago+and+this+is+what+led+me+into+this+bizarre+path+that+i+m+going+to+talk+to
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=strawberry+dna+is+really+fascinating+because+it+s+so+beautiful+i+d+never+thought+about+dna+being+a+beautiful+thing+before+before+i+saw+it+in+this+form
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+lot+of+people+especially+in+the+art+community+don+t+necessarily+engage+in+science+in+this+way
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+instantly+joined+genspace+after+this+and+asked+oliver+if+we+can+do+this+with+strawberries+can+we+do+this+with+people+about+ten+minutes+later+we+were+both+spitting+in+vials+coming+up+with+a+protocol+for+human+dna+extraction++i+started+doing+this+on
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+what+my+my+dna+actually+looks+like++and+i+was+at+a+dinner+party+with+some+artist+friends+and+i+was+telling+them+about+this+project+and+they+couldn+t+believe+that+you+could+actually+see+dna
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+said+all+right+let+s+get+out+some+supplies+right+now+and+i+started+having+these+bizarre+dinner+parties+on+friday+nights
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=where+people+would+come+over+and+we+d+do+dna+extractions++and+i+would+capture+them+on+video+because+it+created+this+kind+of+funny+portrait+as+well
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+are+people+who+don+t+necessarily+regularly+engage+with+science
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=tell+from+their+reactions+but+they+became+fascinated+by+it+and+it+was+really+exciting+for+me+to+see+them+get+excited+about+science+and+so
found 1 videos: [['/talks/gabe_barcia_colombo_my_dna_vending_machine', '2014']]
selected: /talks/gabe_barcia_colombo_my_dna_vending_machine
sleep 4 seconds to avoid blocking
------<762>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GabrielBarciaColombo_2012.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+love+to+collect+things++ever+since+i+was+a+kid+i+ve+had+massive+collections+of+random+stuff+everything+from+bizarre+hot+sauces+from+all+around+the+world
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+insects+that+i+ve+captured+and+put+in+jars
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+no+secret+because+i+like+collecting+things+that+i+love+the+natural+history+museum+and+the+collections+of+animals+at+the+natural+history+museum+in+dioramas
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+to+me+are+like+living+sculptures+right++that+you+can+go+and+look+at+and+they+memorialize+a+specific+point+of+time+in+this+animal+s+life
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+was+thinking+about+my+own+life++and+how+i+d+like+to+memorialize+my+life+you+know+for+the+ages
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+also+the+lives+of+my+friends++but
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+problem+with+this+is+that+my+friends+aren+t+quite+keen+on+the+idea+of+me
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+instead+i+turned+to+video+and+video+is+the+next+best+way+to+preserve+and+memorialize+someone+and+to+capture+a+specific+moment+in+time++so+what+i+did+was+i+filmed+six+of+my+friends
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+using+video+mapping+and+video+projection+i+created+a+video+sculpture++which+was+these+six+friends+projected+into+jars
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+now+i+have+this+collection+of+my+friends+i+can+take+around+with+me+whenever+i+go+and+this+is+called+animalia+chordata+from+the+latin+nomenclature+for
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=being+classification+system++so+this+piece+memorializes+my+friends+in+these+jars++and+they+actually+move+around
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=laughter+so+this+is+interesting+to+me+but+it+lacked+a+certain+human+element+it
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+a+digital+sculpture+so+i+wanted+to+add+an+interaction+system+so+what+i+did+was+i+added+a+proximity+sensor++so+that+when+you+get+close+to+the+people+in+jars++they+react+to+you+in+different+ways+you+know
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=just+like+people+on+the+street+when
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=get+too+close+to+them++some+people+reacted+in+terror+others+reacted+in+asking+you+for+help++and+some+people+hide+from+you
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+this+was+really+interesting+to+me+this+idea+of+taking+video+off+the+screen+and+putting+it+in+real+life++and+also+adding+interactivity+to+sculpture
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+over+the+next+year++i+documented+forty+of+my+other
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=friends+and+trapped+them+in+jars+as+well+and+created+a+piece+known+as+garden+which+is+literally+a+garden+of+humanity
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+something+about+the+first+piece+the+animali+chordata+piece+kept+coming+back+to+me+this+idea+of+interaction+with+art++and+i+really+liked+the+idea+of+people+being+able+to+interact+and+also+being+challenged+by+interacting+with+art
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+wanted+to+create+a+new+piece+that+actually+forced+people+to+come+and+interact+with+something+and+the+way+i+did+this+was+actually+by+projecting+a+1950s+housewife+into+a+blender
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+a+piece+called+blend++and+what+it+does+is+it+actually+makes+you
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=implicit+in+the+work+of+art+you+may+never+experience+the+entire+thing+yourself
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+walk+away+you+can+just+watch+as+this+as+this+character+stands+there+in+the+blender+and+looks+at+you+or+you+can+actually+choose+to+interact+with+it
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+if+you+do+choose+to+interact+with+the+with+the+piece
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+press+the+blender+button+it+actually+sends+this+character+into+this+dizzying+disarray+of+dishevelment
found 1 videos: [['/talks/gabriel_barcia_colombo_capturing_memories_in_video_art', '2012']]
selected: /talks/gabriel_barcia_colombo_capturing_memories_in_video_art
sleep 1 seconds to avoid blocking
------<763>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GailReed_2014P.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+tell+you+how+twenty+thousand+remarkable+young+people+from+over+one+hundred+countries+ended+up+in+cuba
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+are+transforming+health+in+their+communities
found 2 videos: [['/talks/gail_reed_where_to_train_the_world_s_doctors_cuba', '2014'], ['/talks/myriam_sidibe_the_simple_power_of_hand_washing', '2014']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ninety+percent+of+them+would+never+have+left+home+at+all+if+it+weren+t+for+a+scholarship+to+study+medicine+in+cuba
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+a+commitment+to+go+back+to+places+like+the+ones+they+d+come+from
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+become+doctors+for+people+like+themselves+to+walk+the+walk
found 14 videos: [['/talks/gail_reed_where_to_train_the_world_s_doctors_cuba', '2014'], ['/talks/bill_doyle_treating_cancer_with_electric_fields', '2012'], ['/talks/lisa_kristine_photos_that_bear_witness_to_modern_slavery', '2012'], ['/talks/martine_rothblatt_my_daughter_my_wife_our_robot_and_the_quest_for_immortality', '2015'], ['/talks/kelli_jean_drinkwater_enough_with_the_fear_of_fat', '2016'], ['/talks/ivan_oransky_are_we_over_medicalized', '2012'], ['/talks/alyson_mcgregor_why_medicine_often_has_dangerous_side_effects_for_women', '2015'], ['/talks/adam_driver_my_journey_from_marine_to_actor', '2016'], ['/talks/guy_winch_why_we_all_need_to_practice_emotional_first_aid', '2015'], ['/talks/mary_bassett_why_your_doctor_should_care_about_social_justice', '2016'], ['/talks/peter_attia_is_the_obesity_crisis_hiding_a_bigger_problem', '2013'], ['/talks/adam_galinsky_how_to_speak_up_for_yourself', '2016'], ['/talks/andrew_solomon_love_no_matter_what', '2013'], ['/talks/dalia_mogahed_the_attitudes_that_sparked_arab_spring', '2012']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=havana+s+latin+american+medical+school+it+s+the+largest+medical+school+in+the+world+graduating
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thousand+young+doctors+since+its+first+class+of+two+thousand+and+five+with+nearly+ten+thousand+more+in+the+pipeline
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=its+mission+to+train+physicians+for+the+people+who+need+them+the+most+the+over+one+billion
found 1 videos: [['/talks/gail_reed_where_to_train_the_world_s_doctors_cuba', '2014']]
selected: /talks/gail_reed_where_to_train_the_world_s_doctors_cuba
sleep 4 seconds to avoid blocking
------<764>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GarikIsraelian_2009G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+have+a+very+difficult+task++i+m+a+spectroscopist
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+have+to+talk+about+astronomy+without+showing+you+any+single+image+of+nebulae+or+galaxies+etc
found 1 videos: [['/talks/garik_israelian_how_spectroscopy_could_reveal_alien_life', '2009']]
selected: /talks/garik_israelian_how_spectroscopy_could_reveal_alien_life
sleep 4 seconds to avoid blocking
------<765>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GarrettLisi_2008.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=check+out+those+killer+equations++sweet
found 1 videos: [['/talks/garrett_lisi_an_8_dimensional_model_of_the_universe', '2008']]
selected: /talks/garrett_lisi_an_8_dimensional_model_of_the_universe
sleep 1 seconds to avoid blocking
------<766>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GarryKasparov_2017.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+became+the+world+chess+champion+after+beating+anatoly+karpov+earlier+that
found 1 videos: [['/talks/garry_kasparov_don_t_fear_intelligent_machines_work_with_them', '2017']]
selected: /talks/garry_kasparov_don_t_fear_intelligent_machines_work_with_them
sleep 4 seconds to avoid blocking
------<767>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GarthLenz_2011X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=world+s+largest+and+most+devastating+environmental+and+industrial+project+is+situated+in+the+heart+of+the+largest+and+most+intact+forest+in+the+world++canada+s+boreal+forest
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+home+to+the+largest+remaining+wild+caribou+herd+in+the+world+the+george+river+caribou+herd+numbering+approximately+four+hundred+thousand+animals+unfortunately+when+i+was+there+i+couldn+t+find+one+of+them
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+you+have+the+antlers+as+proof
found 1 videos: [['/talks/garth_lenz_the_true_cost_of_oil', '2012']]
selected: /talks/garth_lenz_the_true_cost_of_oil
sleep 2 seconds to avoid blocking
------<768>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GaryGreenberg_2012X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+want+to+talk+a+little+bit+about+seeing+the+world+from+a+totally+unique+point+of+view++and+this+world+i+m+going+to+talk+about+is+the+micro+world
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+found++after+doing+this+for+many+many+years+that+there+s+a+magical+world+behind+reality++and+that+can+be+seen+directly
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+m+going+to+show+you+some+of+this+today++so+let+s+start+off+looking+at+something+rather
found 2 videos: [['/talks/charles_hazlewood_trusting_the_ensemble', '2011'], ['/talks/harsha_bhogle_the_rise_of_cricket_the_rise_of_india', '2010']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+so+small+something+that+we+can+see+with+our+naked+eye++and+that+s+a+bee++so+when+you+look+at+this+bee+it+s+about+this+size+here+it+s+about+a+centimeter
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+to+really+see+the+details+of+the+bee+and+really+appreciate+what+it+is+you+have+to+look+a+little+bit+closer++so
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+just+the+eye+of+the+bee
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+a+microscope+and+now+all+of+a+sudden+you+can+see+that+the+bee+has+thousands+of+individual+eyes+called+ommatidia
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+actually+have+sensory+hairs+in+their+eyes+so+they+know+when+they+re+right+up+close+to+something+because+they+can+t+see+in+stereo
error: request timeout
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+is+a+human+hair+a+human+hair+is+about+the+smallest+thing+that+the+eye+can+see+it+s+about+a+tenth+of+a+millimeter
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+as+we+go+smaller+again+about+ten+times+smaller+than+that+is+a+cell
error: request timeout
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=across+the+diameter+of+a+human+hair
found 3 videos: [['/talks/gary_greenberg_the_beautiful_nano_details_of_our_world', '2012'], ['/talks/regina_dugan_from_mach_20_glider_to_hummingbird_drone', '2012'], ['/talks/john_delaney_wiring_an_interactive_ocean', '2010']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+when+we+would+look+at+cells+this+is+how+i+really+got+involved+in+biology+and+science+is+by+looking+at+living+cells+in+the+microscope
found 2 videos: [['/talks/gary_greenberg_the_beautiful_nano_details_of_our_world', '2012'], ['/talks/edith_widder_glowing_life_in_an_underwater_world', '2010']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+first+saw+living+cells+in+a+microscope+i+was+absolutely
found 3 videos: [['/talks/gary_greenberg_the_beautiful_nano_details_of_our_world', '2012'], ['/talks/lee_cronin_making_matter_come_alive', '2011'], ['/talks/tyler_dewitt_hey_science_teachers_make_it_fun', '2013']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=enthralled+and+amazed+at+what+they+looked+like++so+if+you+look+at+the+cell+like+that+from+the+immune+system+they+re+actually+moving+all+over+the+place
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=foreign+objects++bacteria+things+that+it+can+find++and+it+s+looking+around+and+when+it+finds+something+and+recognizes+it+being+foreign+it+will+actually+engulf+it+and+eat+it+so+if+you+look+right+there
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+take+some+heart+cells
found 13 videos: [['/talks/susan_lim_transplant_cells_not_organs', '2011'], ['/talks/susan_solomon_the_promise_of_research_with_stem_cells', '2012'], ['/talks/noel_bairey_merz_the_single_biggest_health_threat_women_face', '2012'], ['/talks/david_agus_a_new_strategy_in_the_war_on_cancer', '2010'], ['/talks/anthony_atala_printing_a_human_kidney', '2011'], ['/talks/nina_tandon_could_tissue_engineering_mean_personalized_medicine', '2012'], ['/talks/mark_roth_suspended_animation_is_within_our_grasp', '2010'], ['/talks/paula_johnson_his_and_hers_health_care', '2014'], ['/talks/anthony_atala_growing_new_organs', '2010'], ['/talks/eric_dishman_health_care_should_be_a_team_sport', '2013'], ['/talks/molly_stevens_a_new_way_to_grow_bone', '2014'], ['/talks/george_zaidan_what_is_fat', '2013'], ['/talks/dan_reisel_the_neuroscience_of_restorative_justice', '2014']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=from+an+animal+and+put+it+in+a+dish++they+ll+just+sit+there+and+beat+that+s+their+job+every+cell+has+a+mission
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+life++and+these+cells+the+mission+is+to+move+blood+around+our+body
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+next+cells+are+nerve+cells+and+right+now+as+we+see+and+understand+what+we+re+looking+at+our+brains+and+our+nerve+cells+are+actually+doing+this+right+now+they+re+not+just+static++they+re+moving+around+making+new+connections++and+that+s+what
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=happens+when+we+learn++as+you+go+farther+down+this+scale+here
found 10 videos: [['/talks/danny_hillis_back_to_the_future_of_1994', '2012'], ['/talks/gary_greenberg_the_beautiful_nano_details_of_our_world', '2012'], ['/talks/shukla_bose_teaching_one_child_at_a_time', '2010'], ['/talks/siddharthan_chandran_can_the_damaged_brain_repair_itself', '2014'], ['/talks/jonathan_haidt_how_common_threats_can_make_common_political_ground', '2013'], ['/talks/daniel_kahneman_the_riddle_of_experience_vs_memory', '2010'], ['/talks/regina_dugan_from_mach_20_glider_to_hummingbird_drone', '2012'], ['/talks/margaret_heffernan_the_dangers_of_willful_blindness', '2013'], ['/talks/john_maeda_how_art_technology_and_design_inform_creative_leaders', '2012'], ['/talks/brian_greene_is_our_universe_the_only_universe', '2012']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+a+micron+or+a+micrometer+and+we+go+all+the+way+down+to+here+to+a+nanometer+and+an+angstrom+now+an+angstrom+is+the+size+of+the+diameter+of+a+hydrogen+atom
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+how+small+that+is
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+microscopes+that+we+have+today+can+actually+see+individual
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+these+are+some+pictures+of+individual+atoms+each+bump+here+is+an+individual+atom+this+is+a+ring+of+cobalt+atoms
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+this+whole+world+the+nano+world+this+area+in+here+is+called+the+nano+world
error: request timeout
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+whole+micro+world+that+we+see+there
found 11 videos: [['/talks/gary_greenberg_the_beautiful_nano_details_of_our_world', '2012'], ['/talks/jonathan_trent_energy_from_floating_algae_pods', '2012'], ['/talks/dale_dougherty_we_are_makers', '2011'], ['/talks/melissa_garren_the_sea_we_ve_hardly_seen', '2012'], ['/talks/michael_pawlyn_using_nature_s_genius_in_architecture', '2011'], ['/talks/vinay_venkatraman_technology_crafts_for_the_digitally_underserved', '2012'], ['/talks/daniel_kraft_medicine_s_future_there_s_an_app_for_that', '2011'], ['/talks/alastair_parvin_architecture_for_the_people_by_the_people', '2013'], ['/talks/rachel_botsman_the_currency_of_the_new_economy_is_trust', '2012'], ['/talks/melinda_gates_what_nonprofits_can_learn_from_coca_cola', '2010'], ['/talks/eric_dishman_take_health_care_off_the_mainframe', '2010']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+a+nano+world+that+is+wrapped+up+within+that+and+the+whole++and+that+is+the+world+of+molecules+and+atoms++but+i+want+to+talk+about+this+larger+world+the+world+of+the+micro+world
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+would+that+flower+look+like+if+the+flower+was+this+big+it+wouldn+t+look+or+feel+like+anything+that+we+see+when+we+look+at+a+flower
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+if+you+look+at+this+flower+here+and+you+re+a+little+bug+if+you+re+on+that+surface+of+that+of+that+flower
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+what+the+terrain+would+look+like+the+petal+of+that+flower+looks+like+that+so+the+ant+is+kind+of+crawling+over+these+objects+and+if+you+look+a+little+bit+closer+at+this
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=stigma+and+the+stamen+here++this+is+the+style+of+that+flower++and+you+notice+that+it+s+got+these+little+these+are+like+little+jelly+like
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=things+that+are+what+are+called+spurs+these+are
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=nectar+spurs++so+this+little+ant+that+s+crawling+here+it+s+like+it+s+in+a+little+willy+wonka+land+it+s+like+a+little+disneyland+for+them
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+not+like+what+we+see
found 14 videos: [['/talks/james_gillies_dark_matter_the_matter_we_can_t_see', '2013'], ['/talks/sam_kean_what_happens_when_you_remove_the_hippocampus', '2014'], ['/talks/jean_baptiste_michel_erez_lieberman_aiden_what_we_learned_from_5_million_books', '2011'], ['/talks/kelli_sandman_hurley_what_is_dyslexia', '2013'], ['/talks/deborah_rhodes_a_test_that_finds_3x_more_breast_tumors_and_why_it_s_not_available_to_you', '2011'], ['/talks/lauren_zalaznick_the_conscience_of_television', '2011'], ['/talks/peter_diamandis_abundance_is_our_future', '2012'], ['/talks/barbara_natterson_horowitz_what_veterinarians_know_that_physicians_don_t', '2014'], ['/talks/nancy_frates_meet_the_mom_who_started_the_ice_bucket_challenge', '2014'], ['/talks/regina_dugan_from_mach_20_glider_to_hummingbird_drone', '2012'], ['/talks/noel_bairey_merz_the_single_biggest_health_threat_women_face', '2012'], ['/talks/roger_stein_a_bold_new_way_to_fund_drug_research', '2014'], ['/talks/gregoire_courtine_the_paralyzed_rat_that_walked', '2013'], ['/talks/rodney_brooks_why_we_will_rely_on_robots', '2013']]
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+here+is+a+what+you+see+as+one+little+yellow+dot+of+pollen+when+you+look+in+a+microscope+it+s+actually+made+of+thousands
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+little+grains+of+pollen++so+this+for+example+when+you+see+bees+flying+around+these+little+plants+and+they+re+collecting+pollen+those+pollen+grains+that+they+re+collecting+they+pack
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=into+their+legs+and+they+take+it+back+to+the+hive++and+that+s+what+makes+the+beehive+the+wax+in+the+beehive++and+they+re+also+collecting
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=nectar+and+that+s+what+makes+the+honey+that+we+eat
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+s+a+close+up+picture+or+this+is+actually+a+regular+picture+of+a+water+hyacinth+and+if+you+had+really+really+good+vision+with+your+naked+eye+you+d+see+it+about+that+well
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+the+stamen+and+the+pistil+but+look+what+the+stamen+and+the+pistil+look+like+in+a+microscope+that+s+the+stamen
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+there+s+the+the+pistil+there+and+these+are+the+little+little+things+called+trichomes+and+that+s+what+makes+the
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+flower+give+a+fragrance+and
found 1 videos: [['/talks/gary_greenberg_the_beautiful_nano_details_of_our_world', '2012']]
selected: /talks/gary_greenberg_the_beautiful_nano_details_of_our_world
sleep 4 seconds to avoid blocking
------<769>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GaryHaugen_2015.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+be+honest+by+personality+i+m+just+not+much+of+a+crier
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+think+in+my+career+that+s+been+a+good+thing+i+m+a+civil+rights+lawyer+and
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+seen+some+horrible+things+in+the+world++i+began+my+career+working+police+abuse+cases+in+the+united+states+and+then
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+one+thousand+nine+hundred+and+ninety+four+i+was+sent+to+rwanda+to+be+the+director+of+the+u+n++s+genocide+investigation
error: request timeout
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=tears+just+aren+t+much+help+when+you+re+trying+to+investigate+a+genocide+the+things+i+had+to
error: request timeout
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=unspeakable+what+i+can+tell+you+is+this+that+the+rwandan+genocide+was
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+the+world+s+greatest+failures+of+simple+compassion++that+word+compassion+actually+comes+from+two+latin+words
found 1 videos: [['/talks/gary_haugen_the_hidden_reason_for_poverty_the_world_needs_to_address_now', '2015']]
selected: /talks/gary_haugen_the_hidden_reason_for_poverty_the_world_needs_to_address_now
sleep 2 seconds to avoid blocking
------<770>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GaryKovacs_2012U.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=know+why+but+i+m+continually+amazed+to+think+that+two+and+a+half+billion+of+us+around+the+world+are+connected+to+each+other+through+the+internet
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+at+any+point+in+time+more+than+thirty+percent+of+the+world+s+population+can+go+online
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+amount+of+time+each+of+us+is+spending+doing+all+of+this+is+also+continuing+to+go+grow+a+recent+study+showed+that+the+young+generation+alone+is+spending+over+eight+hours+a+day+online
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+the+parent+of+a+nine+year+old+girl+that+number+seems+awfully+low
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=laughter+but+just+as+the+internet+has+opened+up+the+world+for+each+and+every+one+of+us+it+has+also+opened+up+each+and+every+one+of+us
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+the+world+and+increasingly+the+price+we+re+being+asked+to+pay+for+all+of+this+connectedness
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=today+what+many+of+us+would+love+to+believe+is+that+the+internet+is+a+private+place+it+s+not
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+with+every+click+of+the+mouse+and+every+touch+of+the+screen
found 1 videos: [['/talks/gary_kovacs_tracking_our_online_trackers', '2012']]
selected: /talks/gary_kovacs_tracking_our_online_trackers
sleep 1 seconds to avoid blocking
------<771>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GaryLauder_2010.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+only+have+three+minutes+so+i+m+going+to+have+to+talk+fast+and+it+will+use+up+your+spare+mental+cycles+so+multitasking+may+be+hard
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+twenty+seven+years+ago+i+got+a+traffic+ticket+that+got+me+thinking+i+ve+had+some
error: request timeout
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=energy+efficiency+is+more+than+just+about+the+vehicle+it+s+also+about+the+road+road+design+makes+a+difference+particularly+intersections+of+which+there+are+two+types+signalized+and+unsignalized+which+means+stop+signs
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fifty+percent+of+crashes+happen+at+intersections++roundabouts+are+much+better+a+study+of+of+twenty+four+intersections+has+found
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=crashes+drop+forty+percent+from+when+you+convert+a+traffic+light+into+a
error: request timeout
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+that+s+just+safety+what+about+time+and+gas+so+traffic+keeps+flowing+so+that+means+less+braking+which+means+less+accelerating+less+gas+and+less+pollution
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=less+time+wasted+and+that+partly+accounts+for+europe+s+better+efficiency+than+we+have+in+the+united+states
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so++unsignalized+intersections+meaning+stop+signs+they+save+many+lives++but+there+s+an
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=excessive+proliferation+of+them++small+roundabouts+are+starting+to+appear
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+one+in+my+neighborhood+and+they+are+much+better+better+than+traffic+lights+better+than+four+way+stop+signs+they+re+expensive+to+install++but+they+are+more+expensive+not
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+so+we+should+look+at+that+but+they+are+not+applicable+in+all+situations+so+take+for+example+the+three+way+intersection
found 1 videos: [['/talks/gary_lauder_take_turns', '2010']]
selected: /talks/gary_lauder_take_turns
sleep 5 seconds to avoid blocking
------<772>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GarySlutkin_2013P.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=physician+trained+in+infectious+diseases+and+following+my+training++i+moved+to+somalia
found 1 videos: [['/talks/gary_slutkin_let_s_treat_violence_like_a_contagious_disease', '2013']]
selected: /talks/gary_slutkin_let_s_treat_violence_like_a_contagious_disease
sleep 2 seconds to avoid blocking
------<773>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GaryWolf_2010S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+got+up+this+morning+at+six+ten
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+m+after+going+to+sleep+at+twelve++forty+five+a+m+i+was+awakened+once+during+the+night+my+heart+rate+was++sixty+one+beats+per+minute+my+blood+pressure
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=rate+during+exercise+wasn+t+calculated+i+had+about+six+hundred+milligrams+of+caffeine+zero+of+alcohol+and+my+score+on+the+narcissism+personality+index+or+the
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+a+reassuring+zero+point+three+one
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+know+that+numbers+are+useful+for+us+when+we+advertise+manage+govern++search+i+m+going+to+talk+about+how+they+re+useful+when+we+reflect
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+want+to+improve+a+few+years+ago+kevin+kelly+my+partner+and+i
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=noticed+that+people+were+subjecting+themselves+to+regimes+of+quantitative+measurement+and+self+tracking+that+went+far+beyond+the+ordinary+familiar+habits+such+as+stepping+on+a+scale+every+day
error: request timeout
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=tracking+their+food+via+twitter+their+kids++diapers
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+their+iphone+they+were+making+detailed+journals+of+their+spending+their+mood+their+symptoms+their+treatments
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now++we+know+some+of+the+technological+facts+that+are+driving+this+change+in+our+lifestyle+the
found 1 videos: [['/talks/gary_wolf_the_quantified_self', '2010']]
selected: /talks/gary_wolf_the_quantified_self
sleep 1 seconds to avoid blocking
------<774>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GavinPretorPinney_2013G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+much+people+moan+about+them
found 7 videos: [['/talks/elyn_saks_a_tale_of_mental_illness_from_the_inside', '2012'], ['/talks/khadija_gbla_my_mother_s_strange_definition_of_empowerment', '2015'], ['/talks/gavin_pretor_pinney_cloudy_with_a_chance_of_joy', '2013'], ['/talks/kirk_sorensen_thorium_an_alternative_nuclear_fuel', '2012'], ['/talks/andrew_vanden_heuvel_the_moon_illusion', '2013'], ['/talks/julie_taymor_spider_man_the_lion_king_and_life_on_the_creative_edge', '2013'], ['/talks/alain_de_botton_atheism_2_0', '2012']]
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+think+about+it+the+english+language+has+written+into+it+negative+associations+towards+the+clouds+someone+who+s+down+or+depressed
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+when+there+s+bad+news+in+store+there+s+a+cloud+on+the+horizon+i+saw+an+article+the+other+day
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+about+problems+with+computer+processing+over+the+internet
found 7 videos: [['/talks/mikko_hypponen_fighting_viruses_defending_the_net', '2011'], ['/talks/nick_bostrom_what_happens_when_our_computers_get_smarter_than_we_are', '2015'], ['/talks/anant_agarwal_why_massive_open_online_courses_still_matter', '2014'], ['/talks/gavin_pretor_pinney_cloudy_with_a_chance_of_joy', '2013'], ['/talks/read_montague_what_we_re_learning_from_5_000_brains', '2012'], ['/talks/rebecca_mackinnon_let_s_take_back_the_internet', '2011'], ['/talks/mary_lou_jepsen_could_future_devices_read_images_from_our_brains', '2014']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+cloud+over+the+cloud+was+the+headline
found 4 videos: [['/talks/gavin_pretor_pinney_cloudy_with_a_chance_of_joy', '2013'], ['/talks/peter_diamandis_abundance_is_our_future', '2012'], ['/talks/eric_liu_why_ordinary_people_need_to_understand_power', '2014'], ['/talks/richard_ledgett_the_nsa_responds_to_edward_snowden_s_ted_talk', '2014']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+seems+like+they+re+everyone+s+default+doom+and+gloom+metaphor+but+i+think+they+re+beautiful+don+t+you+it+s+just+that+their
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=beauty+is+missed+because+they+re+so+omnipresent+so
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+don+t+know+commonplace+that+people+don+t+notice+them+they+don+t+notice+the+beauty+but+they+don+t+even+notice+the+clouds+unless+they+get+in+the+way+of+the+sun
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+people+think+of+clouds+as+things+that+get+in+the+way
found 11 videos: [['/talks/antonio_donato_nobre_the_magic_of_the_amazon_a_river_that_flows_invisibly_all_around_us', '2014'], ['/talks/dustin_yellin_a_journey_through_the_mind_of_an_artist', '2015'], ['/talks/ben_saunders_why_bother_leaving_the_house', '2012'], ['/talks/daniel_levitin_how_to_stay_calm_when_you_know_you_ll_be_stressed', '2015'], ['/talks/pico_iyer_where_is_home', '2013'], ['/talks/gavin_pretor_pinney_cloudy_with_a_chance_of_joy', '2013'], ['/talks/yuval_noah_harari_what_explains_the_rise_of_humans', '2015'], ['/talks/juan_enriquez_will_our_kids_be_a_different_species', '2012'], ['/talks/rose_goslinga_crop_insurance_an_idea_worth_seeding', '2014'], ['/talks/neil_pasricha_the_3_a_s_of_awesome', '2011'], ['/talks/mikko_hypponen_how_the_nsa_betrayed_the_world_s_trust_time_to_act', '2013']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+think+of+them+as+the+annoying+frustrating+obstructions+and+then+they+rush+off+and+do+some+blue
found 1 videos: [['/talks/gavin_pretor_pinney_cloudy_with_a_chance_of_joy', '2013']]
selected: /talks/gavin_pretor_pinney_cloudy_with_a_chance_of_joy
sleep 5 seconds to avoid blocking
------<775>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GavinSchmidt_2014.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+live+in+a+very+complex+environment++complexity+and+dynamism+and+patterns+of+evidence+from+satellite+photographs+from+videos+you+can+even+see+it+outside+your+window
found 1 videos: [['/talks/gavin_schmidt_the_emergent_patterns_of_climate_change', '2014']]
selected: /talks/gavin_schmidt_the_emergent_patterns_of_climate_change
sleep 3 seconds to avoid blocking
------<776>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GayleLemmon_2011X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+do+not+invest+in+victims+we+invest+in+survivors
found 1 videos: [['/talks/gayle_tzemach_lemmon_women_entrepreneurs_example_not_exception', '2012']]
selected: /talks/gayle_tzemach_lemmon_women_entrepreneurs_example_not_exception
sleep 3 seconds to avoid blocking
------<777>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GayleTzemachLemmon_2015W.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=every+group+of+female+friends+has+the+funny+one+the+one+you+go+to+when+you+need+a+good+cry++the+one+who+tells+you+to+suck+it+up+when+you+ve+had+a+hard+day
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+group+was+no+different
found 15 videos: [['/talks/andrew_solomon_love_no_matter_what', '2013'], ['/talks/gayle_tzemach_lemmon_meet_the_women_fighting_on_the_front_lines_of_an_american_war', '2015'], ['/talks/barat_ali_batoor_my_desperate_journey_with_a_human_smuggler', '2015'], ['/talks/anab_jain_why_we_need_to_imagine_different_futures', '2017'], ['/talks/zak_ebrahim_i_am_the_son_of_a_terrorist_here_s_how_i_chose_peace', '2014'], ['/talks/jared_diamond_how_societies_can_grow_old_better', '2013'], ['/talks/monica_lewinsky_the_price_of_shame', '2015'], ['/talks/michael_bodekaer_this_virtual_lab_will_revolutionize_science_class', '2016'], ['/talks/andreas_ekstrom_the_moral_bias_behind_your_search_results', '2015'], ['/talks/shane_koyczan_to_this_day_for_the_bullied_and_beautiful', '2013'], ['/talks/ricardo_semler_how_to_run_a_company_with_almost_no_rules', '2015'], ['/talks/russ_altman_what_really_happens_when_you_mix_medications', '2016'], ['/talks/seema_bansal_how_to_fix_a_broken_education_system_without_any_more_money', '2016'], ['/talks/wendy_freedman_this_telescope_might_show_us_the_beginning_of_the_universe', '2015'], ['/talks/scott_dinsmore_how_to_find_work_you_love', '2015']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=except+that+this+was+a+community+of+groundbreaking+women
found 1 videos: [['/talks/gayle_tzemach_lemmon_meet_the_women_fighting_on_the_front_lines_of_an_american_war', '2015']]
selected: /talks/gayle_tzemach_lemmon_meet_the_women_fighting_on_the_front_lines_of_an_american_war
sleep 5 seconds to avoid blocking
------<778>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GeenaRocero_2014.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+world+makes+you+something+that+you+re+not
found 12 videos: [['/talks/olivier_scalabre_the_next_manufacturing_revolution_is_here', '2016'], ['/talks/taiye_selasi_don_t_ask_where_i_m_from_ask_where_i_m_a_local', '2015'], ['/talks/jean_paul_mari_the_chilling_aftershock_of_a_brush_with_death', '2015'], ['/talks/vinay_venkatraman_technology_crafts_for_the_digitally_underserved', '2012'], ['/talks/jeffrey_kluger_the_sibling_bond', '2012'], ['/talks/jane_fonda_life_s_third_act', '2012'], ['/talks/rory_sutherland_perspective_is_everything', '2012'], ['/talks/steve_ramirez_and_xu_liu_a_mouse_a_laser_beam_a_manipulated_memory', '2013'], ['/talks/helen_fisher_technology_hasn_t_changed_love_here_s_why', '2016'], ['/talks/john_green_the_nerd_s_guide_to_learning_everything_online', '2015'], ['/talks/stephen_friend_the_hunt_for_unexpected_genetic_heroes', '2014'], ['/talks/michael_murphy_architecture_that_s_built_to_heal', '2016']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+you+know+inside+what+you+are++and+that+question+burns+in+your+heart+how+will+you+become
found 6 videos: [['/talks/geena_rocero_why_i_must_come_out', '2014'], ['/talks/shonda_rhimes_my_year_of_saying_yes_to_everything', '2016'], ['/talks/sandi_toksvig_a_political_party_for_women_s_equality', '2016'], ['/talks/chris_hadfield_what_i_learned_from_going_blind_in_space', '2014'], ['/talks/ben_saunders_why_bother_leaving_the_house', '2012'], ['/talks/leyla_acaroglu_paper_beats_plastic_how_to_rethink_environmental_folklore', '2014']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+may+be+somewhat+unique+in+this++but+i+am+not+alone+not+alone+at+all
found 2 videos: [['/talks/geena_rocero_why_i_must_come_out', '2014'], ['/talks/morgana_bailey_the_danger_of_hiding_who_you_are', '2015']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+when+i+became+a+fashion+model++i+felt+that+i+d+finally+achieved+the+dream+that+i+d+always+wanted+since+i+was+a+young+child
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+outside+self+finally+matched+my+inner+truth
found 1 videos: [['/talks/geena_rocero_why_i_must_come_out', '2014']]
selected: /talks/geena_rocero_why_i_must_come_out
sleep 3 seconds to avoid blocking
------<779>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GeertChatrou_2010X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thank+you+very+much+that+was+whistling++i+m+trying+to+do+this+in+english
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+age+of+four++about+four+my+dad+was+always+whistling+around+the+house+and+i+just+thought+that+s+part+of+communication+in+my
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=family+so+i+whistled+along+with+him++and+actually+until+i
found 2 videos: [['/talks/geert_chatrou_a_whistleblower_you_haven_t_heard', '2011'], ['/talks/jonathan_harris_the_web_as_art', '2008']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+always+annoyed+and+irritated+people+with+whistling
found 1 videos: [['/talks/geert_chatrou_a_whistleblower_you_haven_t_heard', '2011']]
selected: /talks/geert_chatrou_a_whistleblower_you_haven_t_heard
sleep 4 seconds to avoid blocking
------<780>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GenevievevonPetzinger_2015F.stm
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+shadowy+opening+in+a+limestone+cliff+that+draws+you+in
found 1 videos: [['/talks/genevieve_von_petzinger_why_are_these_32_symbols_found_in_ancient_caves_all_over_europe', '2015']]
selected: /talks/genevieve_von_petzinger_why_are_these_32_symbols_found_in_ancient_caves_all_over_europe
sleep 5 seconds to avoid blocking
------<781>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GeoffMulgan_2009G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+believe+that+it+s+less+than+a+year+since+the+extraordinary+moment+when+the+finance+the+credit+which+drives+our+economies+froze
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+massive+cardiac+arrest+the+effect++the+payback+perhaps+for+years+of
found 1 videos: [['/talks/geoff_mulgan_post_crash_investing_in_a_better_world', '2009']]
selected: /talks/geoff_mulgan_post_crash_investing_in_a_better_world
sleep 5 seconds to avoid blocking
------<782>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GeoffMulgan_2011G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+i+want+to+talk+about+today+is+one+idea+it+s+an+idea+for+a+new+kind+of+school+which+turns+on+its+head+much+of+our+conventional+thinking+about+what+schools+are+for+and+how+they+work+and+it+might+just+be+coming+to+a+neighborhood+near+you
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=where+it+comes+from+is+an+organization+called+the+young+foundation+which+over+many+decades+has+come+up+with+many+innovations+in+education+like+the+open+university
found 1 videos: [['/talks/geoff_mulgan_a_short_intro_to_the_studio_school', '2011']]
selected: /talks/geoff_mulgan_a_short_intro_to_the_studio_school
sleep 3 seconds to avoid blocking
------<783>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GeoffreyCanada_2013S.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+last+time+i+looked
found 17 videos: [['/talks/maysoon_zayid_i_got_99_problems_palsy_is_just_one', '2014'], ['/talks/nicholas_negroponte_a_30_year_history_of_the_future', '2014'], ['/talks/adam_garone_healthier_men_one_moustache_at_a_time', '2012'], ['/talks/joseph_kim_the_family_i_lost_in_north_korea_and_the_family_i_gained', '2013'], ['/talks/norman_spack_how_i_help_transgender_teens_become_who_they_want_to_be', '2014'], ['/talks/zak_ebrahim_i_am_the_son_of_a_terrorist_here_s_how_i_chose_peace', '2014'], ['/talks/sarah_kay_if_i_should_have_a_daughter', '2011'], ['/talks/paola_antonelli_why_i_brought_pac_man_to_moma', '2013'], ['/talks/sean_carroll_distant_time_and_the_hint_of_a_multiverse', '2011'], ['/talks/eric_whitacre_a_virtual_choir_2_000_voices_strong', '2011'], ['/talks/james_a_white_sr_the_little_problem_i_had_renting_a_house', '2015'], ['/talks/chris_hadfield_what_i_learned_from_going_blind_in_space', '2014'], ['/talks/boyd_varty_what_i_learned_from_nelson_mandela', '2013'], ['/talks/adam_spencer_why_i_fell_in_love_with_monster_prime_numbers', '2013'], ['/talks/zeynep_tufekci_online_social_change_easy_to_organize_hard_to_win', '2015'], ['/talks/steven_wise_chimps_have_feelings_and_thoughts_they_should_also_have_rights', '2015'], ['/talks/thomas_thwaites_how_i_built_a_toaster_from_scratch', '2011']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=our+children+that+we+re+going+to+needlessly+lose
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+could+save+them+all+you+saw+the+quality+of+the+educators+who+were+here
found 5 videos: [['/talks/geoffrey_canada_our_failing_schools_enough_is_enough', '2013'], ['/talks/matt_mills_image_recognition_that_triggers_augmented_reality', '2012'], ['/talks/daphne_koller_what_we_re_learning_from_online_education', '2012'], ['/talks/jason_decaires_taylor_an_underwater_art_museum_teeming_with_life', '2015'], ['/talks/jose_bowen_beethoven_the_businessman', '2012']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=do+not+tell+me+they+could+not+reach+those+kids+and+save+them+i+know+they+could++it+is+absolutely+possible
found 5 videos: [['/talks/geoffrey_canada_our_failing_schools_enough_is_enough', '2013'], ['/talks/roger_doiron_my_subversive_garden_plot', '2011'], ['/talks/jeffrey_kluger_the_sibling_bond', '2012'], ['/talks/sugata_mitra_build_a_school_in_the_cloud', '2013'], ['/talks/nonny_de_la_pena_the_future_of_news_virtual_reality', '2015']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=why+haven+t+we+fixed+this
found 7 videos: [['/talks/skylar_tibbits_the_emergence_of_4d_printing', '2013'], ['/talks/wayne_mcgregor_a_choreographer_s_creative_process_in_real_time', '2012'], ['/talks/alex_wissner_gross_a_new_equation_for_intelligence', '2014'], ['/talks/keren_elazari_hackers_the_internet_s_immune_system', '2014'], ['/talks/nigel_marsh_how_to_make_work_life_balance_work', '2011'], ['/talks/iwan_baan_ingenious_homes_in_unexpected_places', '2013'], ['/talks/debra_jarvis_yes_i_survived_cancer_but_that_doesn_t_define_me', '2014']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=those+of+us+in+education+have+held+on+to+a+business+plan+that+we+don+t+care+how+many+millions+of+young+people+fail++we+re+going+to+continue+to+do+the
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=same+thing+that+didn+t+work++and+nobody+nobody+is+getting+crazy+about+it
found 1 videos: [['/talks/jamie_drummond_let_s_crowdsource_the_world_s_goals', '2012']]
selected: /talks/jamie_drummond_let_s_crowdsource_the_world_s_goals
sleep 4 seconds to avoid blocking
------<784>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GeoffreyWest_2011G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=cities+are+the+crucible+of+civilization
found 1 videos: [['/talks/geoffrey_west_the_surprising_math_of_cities_and_corporations', '2011']]
selected: /talks/geoffrey_west_the_surprising_math_of_cities_and_corporations
sleep 3 seconds to avoid blocking
------<785>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GeorgeAyittey_2007G.stm
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+conference+is+going+to+rank+as+the+most+important
found 8 videos: [['/talks/george_ayittey_africa_s_cheetahs_versus_hippos', '2007'], ['/talks/juan_enriquez_the_next_species_of_human', '2009'], ['/talks/james_surowiecki_the_power_and_the_danger_of_online_crowds', '2008'], ['/talks/keith_bellows_the_camel_s_hump', '2008'], ['/talks/david_carson_design_and_discovery', '2009'], ['/talks/jeff_bezos_the_electricity_metaphor_for_the_web_s_future', '2007'], ['/talks/paula_scher_great_design_is_serious_not_solemn', '2009'], ['/talks/david_rockwell_a_memorial_at_ground_zero', '2007']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+beginning+of+the++21st+century
found 9 videos: [['/talks/george_ayittey_africa_s_cheetahs_versus_hippos', '2007'], ['/talks/misha_glenny_the_real_story_of_mcmafia_how_global_crime_networks_work', '2009'], ['/talks/martin_rees_is_this_our_final_century', '2007'], ['/talks/samantha_power_a_complicated_hero_in_the_war_on_dictatorship', '2008'], ['/talks/alex_tabarrok_how_ideas_trump_crises', '2009'], ['/talks/jill_tarter_join_the_seti_search', '2009'], ['/talks/steven_pinker_the_surprising_decline_in_violence', '2007'], ['/talks/thomas_barnett_let_s_rethink_america_s_military_strategy', '2007'], ['/talks/natasha_tsakos_a_multimedia_theatrical_adventure', '2009']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=think+african+governments+will+put+together+a+conference+like+this+you+think+the+a+u+will+put+together+a+conference+like+this
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=even+before+they+do+that+they+will+ask+for+foreign+aid
found 11 videos: [['/talks/george_ayittey_africa_s_cheetahs_versus_hippos', '2007'], ['/talks/andrew_mwenda_aid_for_africa_no_thanks', '2007'], ['/talks/james_nachtwey_my_wish_let_my_photographs_bear_witness', '2007'], ['/talks/jacqueline_novogratz_invest_in_africa_s_own_solutions', '2006'], ['/talks/bill_clinton_my_wish_rebuilding_rwanda', '2007'], ['/talks/laurie_garrett_lessons_from_the_1918_flu', '2009'], ['/talks/hans_rosling_the_best_stats_you_ve_ever_seen', '2006'], ['/talks/clay_shirky_how_social_media_can_make_history', '2009'], ['/talks/ernest_madu_world_class_health_care', '2008'], ['/talks/amory_lovins_winning_the_oil_endgame', '2007'], ['/talks/eleni_gabre_madhin_a_commodities_exchange_for_ethiopia', '2007']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+would+also+like+to+pay
found 5 videos: [['/talks/ron_eglash_the_fractals_at_the_heart_of_african_designs', '2007'], ['/talks/gregory_stock_to_upgrade_is_human', '2009'], ['/talks/ory_okolloh_how_i_became_an_activist', '2008'], ['/talks/becky_blanton_the_year_i_was_homeless', '2009'], ['/talks/ben_saunders_why_did_i_ski_to_the_north_pole', '2006']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+other+ted+fellows+i+call+them+the+cheetah+generation
found 1 videos: [['/talks/george_ayittey_africa_s_cheetahs_versus_hippos', '2007']]
selected: /talks/george_ayittey_africa_s_cheetahs_versus_hippos
sleep 2 seconds to avoid blocking
------<786>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GeorgeDyson_2002.stm
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=future+of+little+technology+i+m+going+to+show+you+some+of+the+past+of+big+technology+this+was+a+project+to+build+a
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+deeply+classified+i+m+going+to+show+you+some+stuff+that+not+only+has+not+been+declassified+but+has+now+been+reclassified
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=laughter+if+all+goes+well+next+year+i+ll+be+back+and+i+ll+have+a+lot+more+to+show+you+and+if+all+doesn+t+go+well+i+ll+be+in+jail+like+wen+ho+lee
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+ship+was+basically+the+size+of+the+marriott+hotel+a+little+taller+and+a+little+bigger
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+one+of+the+people+who+worked+on+it+at+the+beginning+was+my+father+freeman+there+in+the+middle+that+s+me+and+my+sister+esther+who+s+a+frequent+tedster
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=didn+t+like+nuclear+bomb+propelled
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+a+great+idea+but+i+started+building+kayaks+so+we+had+a+few+kayaks+just+so+you+know+that+i+am+not
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=dr+strangelove++but+all+the+time+i+was+out+there+doing+these+strange+kayak+voyages+in+odd
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=beautiful+parts+of+this+planet+i+always+thought+in+the+back+of+my+mind+about+project+orion+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+my+father+and+his+friends+were+going+to+build+these+big+ships+they+were+actually+going+to+go+ted
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+led+the+project+was+going+to+take+his+children++my+father+was+not+going+to+take+his+children+that+was+one+of+the+reasons+we
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sort+of+had+a+falling+out+for+a+few+years+the+project
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=began+in++fifty+seven+at+general+atomics+there+that+s+right+on+the+coast+at+la+jolla++look+at+that+central+building+right+in+the+middle+of+the+picture++that+s+the
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=130+foot+diameter+library+that+is+exactly+the+size+of+the+base+of+the+spaceship+so+put+that+library+at+the+bottom+of+that+ship+that+s+how+big+the+thing+was+going+to
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=be+it+would+take+two+or+three+thousand+bombs
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+people+who+worked+on+it+were+a+lot+of+the+los+alamos+people+who+had+done+the+hydrogen+bomb+work+it+was+the+first+project+funded+by+arpa+that+s+the+contract+where+arpa+gave+the+first+million+dollars+to+get+this+thing
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=started+spaceship+project+officially+begun++job+waiting+for+you++dyson+that+s+july+++fifty+eight+two+days+later
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+space+traveler+s+manifesto+explaining+why+just+like+we+heard+yesterday+why+we+need+to+go+into+space+trips+to+satellites+of+the+outer+planets+august+twenty
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+are+the+statistics+of+what+would+be+the+good+places+to+go+and+stop
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+of+the+sizes+of+the+ships++ranging+all+the+way+up+to+ship+mass+of+eight+million+tons+so+that+was+the+outer+extreme+here+was+version+two
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=yield+bombs+about+the+size+of+small+volkswagens
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+would+take+eight+hundred+to+get+into+orbit+here+we+see+a+10+000+ton+ship+will+deliver+one+thousand+three+hundred+tons+to+saturn+and+back+essentially+a+five+year+trip++possible+departure+dates+october+one+thousand+nine+hundred+and+sixty+to+february
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=trajectories+going+to+mars+all+this+was+done+by+hand+with+slide+rules
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+little+orion+ship+and+what+it+would+take+to+do+what+orion+does+with+chemicals+you+have+a+ship+the+size+of+the+empire+state+building+nasa+had+no+interest+they+tried+to+kill+the+project+the+people+who+supported+it+were+the+air+force+which+meant+that+it+was+all+secret+and+that+s+why+when+you+get+something+declassified+that+s+what+it+looks+like
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=military+weapon+versions+that+carried+hydrogen+bombs+that+could+destroy+half+the+planet+there+s+another+version+there+that+sends+retaliatory+strikes+at+the+soviet+union++this
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+really+secret+stuff+how+to+get+directed+energy+explosions+so+you+re+sending+the+energy+of+a+nuclear+explosion+not+like+just+a+stick+of+dynamite+but+you+re+directing+it+at+the+ship+and+this+is+still
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+very+active+subject++it+s+quite+dangerous+but+i+believe+it+s+better+to+have+dangerous+things+in+the+open+than+think+you+re+going+to+keep+them+secret+this+is+what+happened+at+six+hundred+microseconds+the+air+force
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=film+footage+that+was+saved+by+someone+who+was+supposed+to+destroy+it+but+didn+t+and+kept+it+in+their+basement+for+the+last+forty+years+so+these+are+three+pound+charges+of+c4+that+s+about+ten+times+what+the+guy+had+in+his+shoes
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+ed+day+putting+so+each+of+these+coffee+cans+has+three+pounds+of+c4+in+it+they
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=building+a+system+that+ejects+these
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+quarter+second+intervals+that+s+my+dad+in+the+sport+coat+there+holding+the+briefcase
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+they+had+a+lot+of+fun+doing+this++but+no+children+were+allowed+my+dad+could+tell+me+he+was+building+a+spaceship+and+going+to+go+to+saturn+but+he+could+not+say+anything+more+about+it+so+all+my+life+i+have+wanted+to+find+this+stuff+out+and+spent+the+last+four+years
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=tracking+these+old+guys+down+these+are+stills+from+the+video+jeff+bezos+kindly+yesterday+said+he+ll+put+this+video+up+on+the+amazon+site+some+little+clip+of+it
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thanks+to+him++they+got+quite+serious+about+the+engineering+of+this+the+size+of+that+mass++for+us+is+really+large
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=technology+in+a+way+we+re+never+going+to+go+back+to+if+you+saw+the+one+thousand+nine+hundred+and+fifty+nine+this+is+what+it+would+feel+like+in+the+passenger+compartment+that+s+acceleration+profile+and
error: request timeout
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=yield+for+an+effective+thrust+of+ten+million+newtons+well+here+we+have+a+little+problem+the+radiation+doses+at+the+crew+station+seven+hundred+rads+per+shot
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fission+yields+during+development++they+were+hoping+to+get+clean+bombs+they+didn+t+eyeburn+this+is+what+happens+to+the+people+in+in+miami+who+are+looking+up
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=personnel+compartment+noise+that+s+not+too+bad+it+s+very+low+frequencies
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=support+a+feasibility+study+for+a+small+version+that+could+be+launched+with+saturn+vs+in+sections+and+pieced+together+so+this+is+what+nasa+did+getting
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=version+that+would+go+to+mars++they+liked+it+because+the+guys+could+kind+of+live+there
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+what+s+upside+down+is+right+side+up+when+you+go+to+artificial+gravity+mode+the+scientists+were+still+going+to+go+along+they+would+take+seven+astronauts
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+seven+scientists+this+is+a+20+man+version+for+going+to+jupiter
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=bunks+storm+cellars+exercise+room+you+know+it+was+going+to+be+a+nice++long+trip++the+air+force+version++here+we+have+a+military+version
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+been+declassified+just+that+people+managed+to+sneak+home+and+after+you+know+on+their+deathbed+basically+gave+me+that+the
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sort+of+artist+conceptions+these+are+basically+powerpoint+presentations+given+to+the+air+force+forty+years+ago++look+at+the+the+little+guys+there
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=outside+the+vehicle++and+one+part+of+nasa+was+interested+in+it+but+the+headquarters+in+nasa+they+killed+the+project
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+the+end+we+can+see+the+thing+followed+its+sort+of+design+path+right+up+to
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+all+those+paths+came+to+a+halt++results++none++this+project+is+hereby+terminated+so+that+s+the+end
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+i+can+say+in+closing+is+we+heard+yesterday+that+one+of+the+ten+bad+things+that+could+happen+to+us
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+an+asteroid+with+our+name+on+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+one+of+the+bad+things+that+could+happen+to+nasa+is+if+that+asteroid+shows+up+with+our+name+on+it+nine+months+out+and+everybody+says+well
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+are+we+going+to+do+and+orion+is+really+one+of+the+only+if+not+the+only+off+the+shelf+technologies+that+could+do+something
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=laughter+so+i+m+going+to+tell+you+the+good+news+and+the+bad+news+the+good+news+is+that+nasa+has+a+small+secret
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=division+that+is+looking+at+this+trying+to+keep
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=knowledge+of+orion+preserved+in+the+event+of+such+a+misfortune+maybe+keep+a+few+little+bombs+of+plutonium+on+the+side++that+s+the+good+news++the+bad+news+is+when+i+got+in+contact+with+these+people+to+try+and+get+some+documents+from+them
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+went+crazy+because+i+had+all+this+stuff+that+they+don+t+have+and+nasa
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=purchased+one+thousand+seven+hundred+and+fifty+nine+pages+of+this+stuff+from+me+so+that+s+the+state+we+re+at
found 0 videos: []
error: no video is found.
sleep 1 seconds to avoid blocking
------<787>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GeorgeDyson_2003.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=last+year+i+told+you+the+story+in+seven+minutes+of+project+orion++which+was+this+very+implausible+technology+that+that
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=technically+could+have+worked+but+it+had+this+one+year+political+window
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=where+it+could+have+happened+so+it+didn+t+happen+it+was+a+dream+that+did+not+happen+this+year+i+m+going+to+tell+you+the+story+of+the+birth+of+digital+computing+this+was+a+perfect+introduction
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+s+a+story+that+did+work+it+did+happen+and+the+machines+are+all+around+us++and
error: request timeout
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+inevitable+if+the+people+i+m+going+to+tell+you+the+story+about+if+they+hadn+t+done+it+somebody+else+would+have+so+it+was+sort+of+the+right+idea+at+the+right+time
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+barricelli+s+universe+this+is+the+universe+we+live+in+now+it+s+the+universe+in+which
error: request timeout
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=doing+all+these+things+including+changing+biology+i+m
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=starting+the+story+with+the+first+atomic+bomb+at+trinity
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+was+the+manhattan+project+it+was+a+little+bit+like+ted+it+brought+a+whole+lot+of+very+smart+people+together+and+three+of+the+smartest+people+were+stan
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=richard+feynman+and+john+von+neumann+and+it+was+von+neumann+who+said+after+the+bomb+he+was+working+on+something+much+more+important+than+bombs
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+he+wasn+t+only+thinking+about+them+he+built+one+this+is+the+machine+he+built
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+built+this+machine++and+we+had+a+beautiful+demonstration+of+how+this+thing+really+works+with+these+little
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+s+an+idea+that+goes+way+back+the+first+person+to+really+explain+that+was+thomas+hobbes+who
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=explained+how+arithmetic+and+logic+are+the+same+thing+and+if+you+want+to+do+artificial+thinking+and+artificial+logic+you+can+do+it+all+with+arithmetic+he+said+you+needed+addition+and+subtraction
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=leibniz+who+came+a+little+bit+later+this
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=showed+that+you+didn+t+even+need+subtraction+you+could+do+the+whole+thing+with+addition+here+we+have+all+the
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=arithmetic+and+logic+that+drove+the+computer+revolution++and+leibniz+was+the+first+person+to+really+talk+about+building+such+a+machine+he+talked+about+doing+it+with+marbles+having+gates+and+what
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+now+call+shift+registers+where+you+shift+the+gates+drop+the+marbles+down+the+tracks+and+that+s+what+all+these+machines+are+doing+except+instead+of+doing+it+with+marbles+they+re+doing+it+with+electrons
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+he+sort+of+reinvents+the+whole+same+thing+and+one+thousand+nine+hundred+and+forty+five+after+the+war+the+electronics+existed+to+actually+try+and+build+such+a+machine+so+june
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+bomb+hasn+t+even+been+dropped+yet+and+von+neumann+is+is+putting+together+all+the+theory+to+actually+build+build+this+thing+which+also+goes+back+to+turing+who+before+that+gave+the+idea+that+you+could+do+all
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+a+very+brainless+little+finite+state+machine+just+reading+a+tape+in+and+reading+a+tape+out+the+other
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sort+of+genesis+of+what+von+neumann+did+was+the
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=difficulty+of+how+you+would+predict+the+weather
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=lewis+richardson+saw+how+you+could+do+this+with+a+cellular+array+of+people+giving+them+each+a+little+chunk++and+putting+it+together+here+we+have+an+electrical+model+illustrating+a+mind
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+s+really+the+simplest+computer+it+s+basically
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=why+you+need+the+qubit+because+it+only+has+two+ideas+and+you+put+lots+of+those+together++you+get+the
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=essentials+of+the+modern+computer+the+arithmetic+unit+the+central+control+the+memory++the+recording+medium+the+input+and+the+output
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+there+s+one+catch+this+is+the+fatal+you+know+we+saw+it+in
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=starting+these+programs+up+the+instructions+which+govern+this+operation+must+be+given+in
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=absolutely+exhaustive+detail+so+the+programming+has+to+be+perfect+or+it+won+t+work++if+you+look+at+the+origins+of+this+the+classic+history+sort+of+takes+it+all+back
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+the+eniac+here+but+actually+the+machine+i+m+going+to+tell+you+about+the+institute+for+advanced+study+machine+which+is+way+up+there+really+should+be+down+there+so+i+m+trying+to+revise+history+and+give+some+of+these+guys+more+credit+than+they+ve+had+such+a+computer+would+open+up
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=universes+which+are+at+the+present+outside
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+range+of+any+instruments+so+it+opens+up+a+whole+new+world+and+these+people+saw+it+the+guy+who+was+supposed+to+build+this+machine+was+the+guy+in+the+middle+vladimir+zworykin+from
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=probably+one+of+the+lousiest+business+decisions+of+all+time+decided+not+to+go+into+computers++but+the+first+meetings+november
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=computers+the+essentials+were+all+there+all+the+things+that+make
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=von+neumann+and+a+logician+and+a+mathematician+from+the+army+put+this+together++then+they+needed+a+place+to+build+it+when+rca+said+no++that+s+when+they+decided+to+build+it+in+princeton+where+freeman+works+at+the+institute
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+where+i+grew+up+as+a+kid
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+me+that+s+my+sister+esther+who+s+talked+to+you+before
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+we+we+both+go+back+to+the+birth+of+this+thing+that+s+freeman+a+long+time+ago
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+was+me++and+this+is+von+neumann+and+morgenstern
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+wrote+the+theory+of+games+all+these+forces+came+together+there+in+princeton
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=oppenheimer++who+had+built+the+bomb+the+machine+was+actually+used+mainly+for+doing+bomb
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+julian+bigelow+who+took+zworkykin+s+place+as+the+engineer+to+actually+figure+out+using+electronics+how+you+would+build+this+thing+the+whole+gang+of+people
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+came+to+work+on+this+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=women+in+front+who+actually+did+most+of+the+coding+were+the+first+programmers+these+were+the+prototype+geeks+the+nerds
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+didn+t+fit+in+at+the+institute+this+is+a+letter+from+the+director+concerned
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+especially+unfair+on+the+matter+of+sugar
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+hackers+getting+in+trouble+for+the+first+time+laughter
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+were+not+theoretical+physicists+they+were+real++soldering+gun+type+guys++and+they+actually+built
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+take+it+for+granted+now+that+each+of+these+machines
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=has+billions+of+transistors+doing+billions+of+cycles+per+second+without+failing+they+were+using+vacuum+tubes+very+narrow++sloppy
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=techniques+to+get+actually+binary+behavior+out+of+these
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=radio+vacuum+tubes+they+actually+used+6j6+the+common+radio+tube+because+they+found+they+were+more+reliable+than+the+more+expensive+tubes
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+what+they+did+at+the
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=every+step+of+the+way+reports+were+issued+so+that+this+machine+was+cloned+at+fifteen+other+places+around+the+world
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+really+was+it+was+the+original+microprocessor+all+the+computers+now+are+copies+of+that+machine+the+memory+was+in+cathode+ray+tubes
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+whole+bunch+of+spots+on+the+face+of+the+tube+very+very+sensitive+to+electromagnetic+disturbances+so+there+s
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+input+and+the+output+was+by+teletype+tape+at+first+this+is+a+wire+drive+using+bicycle+wheels+this+is+the+archetype+of
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+hard+disk+that+s+in+your+machine+now++then+they+switched+to+a+magnetic+drum++this+is+modifying+ibm+equipment+which+is+the+origins+of+the+whole
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=next+slide+that+s+the+as+far+as+i+know+the+first+digital+bitmap+display
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+von+neumann+was+already+off+in+a+theoretical+cloud+doing+abstract+sorts+of+studies+of+how+you+could+build+reliable+machines+out+of+unreliable+components
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=those+guys+drinking+all+the+tea+with+sugar+in+it+were+writing+in+their+logbooks+trying+to+get+this+thing+to+work+with+all+these+two+thousand+six+hundred+vacuum+tubes+that
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=failed+half+the+time++and+that+s+what+i+ve+been+doing+this+last+six+months+is+going+through+the+logs
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=running+time+two+minutes++input+output+ninety+minutes+this+includes+a+large+amount+of+human+error
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+they+are+always+trying+to+figure+out+what+s+machine+error+what+s+human+error+what+s+code+what+s+hardware++that+s+an+engineer+gazing+at+tube+number+thirty+six+trying+to+figure+out+why+the+memory+s+not+in+focus+he+had+to+focus+the+memory
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=seems+ok++so+he+had+to+focus
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=each+tube+just+to+just+to+get+the+memory+up+and+running+let+alone+having+you+know++software+problems+no+use+went+home
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=impossible+to+follow+the+damn+thing+where+s+a+directory+so+already+they+re+complaining+about+the+manuals+before+closing+down+in+disgust
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+general+arithmetic+operating+logs+burning+lots+of+midnight+oil
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=became+the+acronym+for+the+machine+mathematical+and+numerical+integrator+and+calculator+lost+its+memory+maniac+regained+its+memory+when+the+power+went+off+machine+or+human
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=aha+so+they+figured+out+it+s+a+code+problem+found+trouble+in+code+i+hope+code+error+machine+not+guilty
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=damn+it+i+can+be+just+as+stubborn+as+this+thing
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+thing+was+running+mainly+running+bomb+calculations
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=everything+up+to+this+point+is+wasted+time+what+s+the+use+good+night
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=master+control+off+the+hell+with+it+way+off
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=something+s+wrong+with+the+air+conditioner+smell+of+burning++v+belts+in+the+air+a+short+do+not+turn+the+machine
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=machine+putting+a+tar+like+substance+on+the+cards+the+tar+is+from+the+roof+so+they+really+were+working+under+tough+conditions
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+a+mouse+has+climbed+into+the+blower+behind+the+regulator+rack+set+blower+to+vibrating+result+no+more+mouse
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=marston+mouse+if+you+re+a+mathematician+you+get+that+because+marston+was+a+mathematician+who+objected+to+the+computer+being+there+picked+a+lightning+bug+off+the+drum
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=running+at+two+kilocycles+that+s+two+thousand+cycles+per+second+yes+i+m+chicken+so+two+kilocycles+was+slow+speed
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+high+speed+was+sixteen+kilocycles+i+don+t+know+if+you
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=remember+a+mac+that+was+sixteen+megahertz
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+have+now+duplicated+both+results+how+will+i+know+which+is+right+assuming+one+result+is+correct+this+now+is+the+third+different+output+i+know+when+i+m+licked
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+ve+duplicated+errors+before+machine+run+fine+code+isn+t+only+happens+when+the+machine+is+running+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=were+actually+designing+bombs+they+re+designing+hydrogen+bombs++but+someone+in+the+logbook+late+one+night+finally+drew+a+bomb+so+that+was+the+result+it+was+mike+the+first+thermonuclear
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=bomb+in+one+thousand+nine+hundred+and+fifty+two+that+was+designed+on+that+machine+in+the+woods+behind+the+institute+so+von+neumann+invited+a+whole+gang+of
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=from+all+over+the+world+to+work+on
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+these+problems++barricelli+he+came+to+do+what+we+now+call+really+artificial+life++trying+to+see+if+in+this+artificial+universe
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+was+a+viral+geneticist+way+way++way+ahead+of+his+time+he+s+still+ahead+of+some+of+the+stuff+that+s+being+done+now+trying+to
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=start+an+artificial+genetic+system+running+in+the+computer+began+his+universe+started+march
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+fifty+years+ago+next
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+he+saw+everything+in+terms+of+he+could+read+the+binary+code+straight+off+the+machine+he+had+a+wonderful+rapport+other+people+couldn+t+get+the+machine+running+it+always+worked+for+him
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=dr+barricelli+claims+machine+is+wrong+code+is+right+so
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+designed+this+universe+and+ran+it+when+the+bomb+people+went+home
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+allowed+in+there+he+would+run+that+thing+all+night+long+running+these+things+if+anybody+remembers+stephen+wolfram+who+reinvented+this+stuff
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+he+published+it+it+wasn+t+locked+up+and+disappeared++it+was+published+in+the+literature
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+it+s+that+easy+to+create+living+organisms+why+not+create+a+few+yourself+so+he+decided+to+give+it+a+try+to+start
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+artificial+biology+going+in+the+machines
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+a+naturalist+coming+in+and+looking+at+this+tiny
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=universe+and+seeing+all+these+things+happening+that+that+we+see+in+the+outside+world+in+biology
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+some+of+the+generations+of+his+universe
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+they+re+just+going+to+stay+numbers+they+re+not+going+to+become+organisms
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+have+to+have+something+you+have+a+genotype+and+you+have+to+have+a+phenotype+they+have+to+go+out+and+do+something
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+he+started+doing+that+started+giving+these+little+numerical+organisms
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=things+they+could+play+with+playing+chess+with+other+machines+and+so+on++and+they+did+start+to+evolve++and+he+went+around+the+country+after+that+every+time+there+was+a+new+fast+machine+he+started+using+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+saw+exactly+what+s+happening+now+that+the+the+programs++instead+of
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=being+turned+off+when+you+when+you+quit+the+program+you+d+keep+running
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=things+like+windows+is+doing+running+as+a+multi+cellular+organism+on+many+machines+he+envisioned+all+that+happening+and+he+saw+that+evolution+itself+was+an+intelligent+process+it+wasn+t+any+sort+of+creator+intelligence
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+the+thing+itself+was+a+giant+parallel+computation+that+would+have+some+intelligence+and+he+went+out+of+his+way+to+say+that+he+was+not+saying+this+was
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=difference+between+what+he+was+doing+in+the+computer+and+what+nature+did+billions+of+years+ago
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+could+you+do+it+again+now+so+when+i+went+into+these+archives+looking+at+this+stuff+lo+and+behold++the+archivist+came+up+one+day+saying+i+think+we+found+another+box+that+had+been+thrown+out+and+it+was+his+universe+on+punch+cards
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sitting+there+sort+of+suspended+animation
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+the+instructions+for+running+this+is+actually+the+source+code
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+one+of+those+universes+with+a+note+from+the+engineers+saying+they+re+having+some+problems+there+must+be+something+about+this+code+that+you+haven+t+explained+yet
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+think+that+s+really+the+truth+we+still+don+t+understand+how+these+very+simple+instructions+can+lead+to+increasing
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+s+the+dividing+line+between+when+that+is+lifelike+and+when+it+really+is+alive
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+cards+now+thanks+to+me+showing+up+are+being+saved++and+the+question+is+should+we+run+them+or+not+you+know+could+we+get+them+running+do+you+want+to+let+it+loose+on+the+internet+these+machines+would+think+they
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+organisms+if+they+came+back+to+life+now+whether+they+ve+died+and+gone+to+heaven+there+s+a+universe
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ten+thousand+million+times+the+size+of+the+universe+that+they+lived+in+when
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+barricelli+quit+the+project++he+was+thinking+far+ahead+to+how+this+would+really+grow+into+a+new+kind+of+life+and+that+s+what+s+happening+when
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=juan+enriquez+told+us+about+these+twelve+trillion+bits+being+transferred+back+and+forth+of+all+this+genomics+data+going+to+the+proteomics+lab
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+barricelli+imagined+that+this+digital+code
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+these+machines+is+actually+starting+to+code+it+it+already+is+coding+from+nucleic+acids+we+ve+been+doing+that+since+you+know
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=small+strings+of+dna++and+real+soon+we+re+actually+going+to+be+synthesizing+the+proteins+and+like+steve+showed+us+that+just+opens+an
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=entirely+new+world+it+s+a+world+that+von+neumann+himself+envisioned+this+was+published+after+he+died+his+sort+of+unfinished+notes+on
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=machines+what+it+takes+to+get+the+machines+sort+of+jump+started+to+where+they+begin+to+reproduce
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+took+really+three+people++barricelli+had+the+concept+of+the+code+as+a+living+thing
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=von+neumann+saw+how+you+could+build+the+machines+that+now
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=last+count+four+million+of+these+von+neumann+machines+is+built+every+twenty+four+hours+and+julian+bigelow+who+died
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+john+markoff+s+obituary+for+him
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+was+the+important+missing+link+the+engineer+who+came+in+and+knew+how+to+put+those+vacuum+tubes+together+and+make+it+work+and+all+our+computers
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+inside+them+the+copies+of+the+architecture+that+he+had+to+just+design+one+day+sort+of+on+pencil+and+paper
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+owe+a+tremendous+credit+to+that+and+he+explained
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+a+very+generous+way+the+spirit+that+brought+all+these+different+people+to+the+institute+for+advanced+study+in+the++40s+to+do+this+project++and+make+it+freely+available+with+no+patents+no+restrictions
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=no+intellectual+property+disputes+to+the+rest+of+the+world+that+s+the+last+entry+in+the+logbook+when+the+machine+was+shut+down+july+one+thousand+nine+hundred+and+fifty+eight+and+it+s+julian+bigelow+who+was+running+it+until+midnight+when+the+machine+was+officially+turned+off
found 0 videos: []
error: no video is found.
sleep 3 seconds to avoid blocking
------<788>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GeorgeMonbiot_2013G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+was+a+young+man+i+spent+six+years+of+wild+adventure+in+the+tropics+working+as+an+investigative+journalist
found 1 videos: [['/talks/george_monbiot_for_more_wonder_rewild_the_world', '2013']]
selected: /talks/george_monbiot_for_more_wonder_rewild_the_world
sleep 2 seconds to avoid blocking
------<789>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GeorgePapandreou_2013G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+will+not+be+a+speech+like+any+one+i+have+ever+given+i+will+talk+to+you+today+about
found 11 videos: [['/talks/pamela_meyer_how_to_spot_a_liar', '2011'], ['/talks/ben_ambridge_9_myths_about_psychology_debunked', '2015'], ['/talks/daniel_wolpert_the_real_reason_for_brains', '2011'], ['/talks/diana_reiss_peter_gabriel_neil_gershenfeld_and_vint_cerf_the_interspecies_internet_an_idea_in_progress', '2013'], ['/talks/george_papandreou_imagine_a_european_democracy_without_borders', '2013'], ['/talks/roger_ebert_remaking_my_voice', '2011'], ['/talks/nancy_frates_meet_the_mom_who_started_the_ice_bucket_challenge', '2014'], ['/talks/deb_roy_the_birth_of_a_word', '2011'], ['/talks/manal_al_sharif_a_saudi_woman_who_dared_to_drive', '2013'], ['/talks/nancy_duarte_the_secret_structure_of_great_talks', '2012'], ['/talks/jane_fonda_life_s_third_act', '2012']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+failure+of+leadership+in+global+politics
found 1 videos: [['/talks/george_papandreou_imagine_a_european_democracy_without_borders', '2013']]
selected: /talks/george_papandreou_imagine_a_european_democracy_without_borders
sleep 2 seconds to avoid blocking
------<790>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GeorgeSmoot_2008P.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+would+think+about+changing+your+perspective+on+the+world+a+bit+and+showing+you+some+of+the+designs+that+we+have+in+nature++and+so+i+have+my+first+slide
found 1 videos: [['/talks/george_smoot_the_design_of_the_universe', '2008']]
selected: /talks/george_smoot_the_design_of_the_universe
sleep 4 seconds to avoid blocking
------<791>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GeorgeTakei_2014X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+a+veteran+of+the+starship+enterprise++i+soared+through+the+galaxy
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+a+crew+made+up+of+people+from+all+over+this+world+many+different+races+many+different+cultures
found 3 videos: [['/talks/george_takei_why_i_love_a_country_that_once_betrayed_me', '2014'], ['/talks/beeban_kidron_the_shared_wonder_of_film', '2012'], ['/talks/atul_gawande_how_do_we_heal_medicine', '2012']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=many+different+heritages+all+working+together++and+our+mission
found 2 videos: [['/talks/george_takei_why_i_love_a_country_that_once_betrayed_me', '2014'], ['/talks/sara_seager_the_search_for_planets_beyond_our_solar_system', '2015']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+to+explore+strange+new+worlds+to+seek+out+new+life+and+new+civilizations+to+boldly+go+where+no+one+has+gone+before
error: request timeout
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+immigrants+from+japan+who+went+to+america
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=boldly+going+to+a+strange+new+world++seeking+new+opportunities
found 1 videos: [['/talks/george_takei_why_i_love_a_country_that_once_betrayed_me', '2014']]
selected: /talks/george_takei_why_i_love_a_country_that_once_betrayed_me
sleep 3 seconds to avoid blocking
------<792>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GeorgetteMulheir_2012S.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=across+europe+and+central+asia++approximately+one+million+children+live+in+large+residential+institutions+usually+known+as+orphanages
found 1 videos: [['/talks/georgette_mulheir_the_tragedy_of_orphanages', '2012']]
selected: /talks/georgette_mulheir_the_tragedy_of_orphanages
sleep 2 seconds to avoid blocking
------<793>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GeorgeTulevski_2016S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+s+imagine+a+sculptor+building+a+statue+just+chipping+away+with+his+chisel
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=michelangelo+had+this+elegant+way+of+describing+it+when+he+said+every+block+of+stone+has+a+statue+inside+of+it+and+it+s+the+task
error: request timeout
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+what+if+he+worked+in+the+opposite+direction+not+from+a+solid+block+of+stone+but+from+a+pile+of+dust
found 1 videos: [['/talks/george_tulevski_the_next_step_in_nanotechnology', '2017']]
selected: /talks/george_tulevski_the_next_step_in_nanotechnology
sleep 3 seconds to avoid blocking
------<794>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GeorgeWhitesides_2009X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+talk+with+you+about+is+really+the+problem+of+how+does+one
found 3 videos: [['/talks/nate_silver_does_racism_affect_how_you_vote', '2009'], ['/talks/bart_weetjens_how_i_taught_rats_to_sniff_out_land_mines', '2010'], ['/talks/morgan_spurlock_the_greatest_ted_talk_ever_sold', '2011']]
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+a+world+in+which+cost+is+everything++how+do+you+do+that+and+the+basic+paradigm+we+want+to+suggest+to+you+i+want+to
found 1 videos: [['/talks/george_whitesides_a_lab_the_size_of_a_postage_stamp', '2010']]
selected: /talks/george_whitesides_a_lab_the_size_of_a_postage_stamp
sleep 4 seconds to avoid blocking
------<795>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GeorgeWhitesides_2010.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=most+of+the+talks+that+you+ve+heard+in+the+last+several+fabulous+days+have+been+from+people+who+have+the+characteristic+that+they+have+thought+about+something+they+are
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+know+what+s+going+on
found 9 videos: [['/talks/noel_bairey_merz_the_single_biggest_health_threat_women_face', '2012'], ['/talks/sandra_fisher_martins_the_right_to_understand', '2011'], ['/talks/larry_smith_why_you_will_fail_to_have_a_great_career', '2012'], ['/talks/jean_baptiste_michel_erez_lieberman_aiden_what_we_learned_from_5_million_books', '2011'], ['/talks/ben_goldacre_battling_bad_science', '2011'], ['/talks/cheryl_hayashi_the_magnificence_of_spider_silk', '2011'], ['/talks/david_birch_a_new_way_to_stop_identity_theft', '2012'], ['/talks/nicholas_negroponte_one_laptop_per_child_two_years_on', '2008'], ['/talks/bruce_feiler_the_council_of_dads', '2011']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+of+you+know+about+the+topic+that+i+m+supposed+to+talk+about+that+is+you+know+what+simplicity+is+you+know+what+complexity+is
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+trouble+is+i+don+t
found 10 videos: [['/talks/peter_ward_a_theory_of_earth_s_mass_extinctions', '2009'], ['/talks/ray_anderson_the_business_logic_of_sustainability', '2009'], ['/talks/nigel_marsh_how_to_make_work_life_balance_work', '2011'], ['/talks/joseph_pine_what_consumers_want', '2009'], ['/talks/eve_ensler_what_security_means_to_me', '2008'], ['/talks/laurie_garrett_lessons_from_the_1918_flu', '2009'], ['/talks/craig_venter_on_the_verge_of_creating_synthetic_life', '2008'], ['/talks/a_j_jacobs_my_year_of_living_biblically', '2008'], ['/talks/luis_von_ahn_massive_scale_online_collaboration', '2011'], ['/talks/daniel_kraft_medicine_s_future_there_s_an_app_for_that', '2011']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+what+i+m+going+to+do+is+share+with+you+my+ignorance+on+this+subject
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+you+to+read+this+because+we+re+going+to+come+back+to+it+in+a+moment++the
found 17 videos: [['/talks/roger_ebert_remaking_my_voice', '2011'], ['/talks/stephen_ritz_a_teacher_growing_green_in_the_south_bronx', '2012'], ['/talks/bruce_feiler_the_council_of_dads', '2011'], ['/talks/alison_jackson_an_unusual_glimpse_at_celebrity', '2008'], ['/talks/tim_ferriss_smash_fear_learn_anything', '2009'], ['/talks/tim_berners_lee_the_next_web', '2009'], ['/talks/carolyn_steel_how_food_shapes_our_cities', '2009'], ['/talks/julian_assange_why_the_world_needs_wikileaks', '2010'], ['/talks/aimee_mullins_the_opportunity_of_adversity', '2010'], ['/talks/jonathan_harris_the_web_as_art', '2008'], ['/talks/franco_sacchi_a_tour_of_nollywood_nigeria_s_booming_film_industry', '2008'], ['/talks/deb_roy_the_birth_of_a_word', '2011'], ['/talks/natalie_jeremijenko_the_art_of_the_eco_mindshift', '2010'], ['/talks/barry_schwartz_our_loss_of_wisdom', '2009'], ['/talks/jamie_oliver_teach_every_child_about_food', '2010'], ['/talks/irwin_redlener_how_to_survive_a_nuclear_attack', '2008'], ['/talks/andrew_stanton_the_clues_to_a_great_story', '2012']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=quote+is+from+the+fabled+potter+stewart
found 1 videos: [['/talks/george_whitesides_toward_a_science_of_simplicity', '2010']]
selected: /talks/george_whitesides_toward_a_science_of_simplicity
sleep 5 seconds to avoid blocking
------<796>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GeraldineHamilton_2013X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+our+hands+today+and+that+is+that+the+way+we+currently+discover+and+develop+new+drugs
found 3 videos: [['/talks/geraldine_hamilton_body_parts_on_a_chip', '2013'], ['/talks/susan_solomon_the_promise_of_research_with_stem_cells', '2012'], ['/talks/rob_knight_how_our_microbes_make_us_who_we_are', '2015']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+too+costly++takes+far
found 10 videos: [['/talks/andrew_solomon_depression_the_secret_we_share', '2013'], ['/talks/geraldine_hamilton_body_parts_on_a_chip', '2013'], ['/talks/amory_lovins_a_40_year_plan_for_energy', '2012'], ['/talks/michael_porter_the_case_for_letting_business_solve_social_problems', '2013'], ['/talks/lian_pin_koh_a_drone_s_eye_view_of_conservation', '2013'], ['/talks/david_rothkopf_how_fear_drives_american_politics', '2015'], ['/talks/marlene_zuk_what_we_learn_from_insects_sex_lives', '2015'], ['/talks/francis_collins_we_need_better_drugs_now', '2013'], ['/talks/rick_falkvinge_i_am_a_pirate', '2012'], ['/talks/richard_ledgett_the_nsa_responds_to_edward_snowden_s_ted_talk', '2014']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+fails+more+often+than+it+succeeds
found 7 videos: [['/talks/geraldine_hamilton_body_parts_on_a_chip', '2013'], ['/talks/jd_schramm_break_the_silence_for_suicide_attempt_survivors', '2011'], ['/talks/laura_schulz_the_surprisingly_logical_minds_of_babies', '2015'], ['/talks/guy_winch_why_we_all_need_to_practice_emotional_first_aid', '2015'], ['/talks/tali_sharot_the_optimism_bias', '2012'], ['/talks/vincent_cochetel_i_was_held_hostage_for_317_days_here_s_what_i_thought_about', '2015'], ['/talks/kathryn_schulz_on_being_wrong', '2011']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+really+just+isn+t+working
found 12 videos: [['/talks/wayne_mcgregor_a_choreographer_s_creative_process_in_real_time', '2012'], ['/talks/matthew_carter_my_life_in_typefaces', '2014'], ['/talks/joseph_desimone_what_if_3d_printing_was_100x_faster', '2015'], ['/talks/danit_peleg_forget_shopping_soon_you_ll_download_your_new_clothes', '2015'], ['/talks/steve_howard_let_s_go_all_in_on_selling_sustainability', '2013'], ['/talks/heather_barnett_what_humans_can_learn_from_semi_intelligent_slime', '2014'], ['/talks/skylar_tibbits_the_emergence_of_4d_printing', '2013'], ['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013'], ['/talks/nigel_marsh_how_to_make_work_life_balance_work', '2011'], ['/talks/debra_jarvis_yes_i_survived_cancer_but_that_doesn_t_define_me', '2014'], ['/talks/richard_seymour_how_beauty_feels', '2011'], ['/talks/fei_fei_li_how_we_re_teaching_computers_to_understand_pictures', '2015']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+means+that+patients+that+badly+need+new+therapies+are+not+getting+them+and+diseases+are+going
found 1 videos: [['/talks/geraldine_hamilton_body_parts_on_a_chip', '2013']]
selected: /talks/geraldine_hamilton_body_parts_on_a_chip
sleep 2 seconds to avoid blocking
------<797>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GerardRyle_2016T.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+do+if+you+had+to+figure+out
found 21 videos: [['/talks/justin_baldoni_why_i_m_done_trying_to_be_man_enough', '2017'], ['/talks/julia_galef_why_you_think_you_re_right_even_if_you_re_wrong', '2016'], ['/talks/lorrie_faith_cranor_what_s_wrong_with_your_pa_w0rd', '2014'], ['/talks/johann_hari_everything_you_think_you_know_about_addiction_is_wrong', '2015'], ['/talks/emilie_wapnick_why_some_of_us_don_t_have_one_true_calling', '2015'], ['/talks/joy_sun_should_you_donate_differently', '2014'], ['/talks/lizzie_velasquez_how_do_you_define_yourself', '2018'], ['/talks/christina_wallace_how_to_stop_swiping_and_find_your_person_on_dating_apps', '2018'], ['/talks/tom_hulme_what_can_we_learn_from_shortcuts', '2016'], ['/talks/mindy_scheier_how_adaptive_clothing_empowers_people_with_disabilities', '2018'], ['/talks/jennifer_golbeck_your_social_media_likes_expose_more_than_you_think', '2014'], ['/talks/ray_dalio_how_to_build_a_company_where_the_best_ideas_win', '2017'], ['/talks/jordan_wirfs_brock_the_four_things_you_need_to_know_about_the_energy_you_use', '2018'], ['/talks/stacey_abrams_3_questions_to_ask_yourself_about_everything_you_do', '2018'], ['/talks/simon_anholt_which_country_does_the_most_good_for_the_world', '2014'], ['/talks/manoush_zomorodi_how_boredom_can_lead_to_your_most_brilliant_ideas', '2017'], ['/talks/randall_munroe_comics_that_ask_what_if', '2014'], ['/talks/richard_e_cytowic_what_percentage_of_your_brain_do_you_use', '2014'], ['/talks/scott_dinsmore_how_to_find_work_you_love', '2015'], ['/talks/katharine_hayhoe_the_most_important_thing_you_can_do_to_fight_climate_change_talk_about_it', '2018'], ['/talks/eric_berridge_why_tech_needs_the_humanities', '2018']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+information+behind+eleven+point+five+million+documents++verify+it+and+make+sense+of+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+was+a+challenge+that+a+group+of+journalists+had+to+face+late+last+year
found 8 videos: [['/talks/gerard_ryle_how_the_panama_papers_journalists_broke_the_biggest_leak_in_history', '2016'], ['/talks/david_puttnam_does_the_media_have_a_duty_of_care', '2014'], ['/talks/meera_vijayann_find_your_voice_against_gender_violence', '2014'], ['/talks/anand_giridharadas_a_tale_of_two_americas_and_the_mini_mart_where_they_collided', '2015'], ['/talks/jonathan_tepperman_the_risky_politics_of_progress', '2016'], ['/talks/miriam_zoila_perez_how_racism_harms_pregnant_women_and_what_can_help', '2017'], ['/talks/hans_and_ola_rosling_how_not_to_be_ignorant_about_the_world', '2014'], ['/talks/zeynep_tufekci_online_social_change_easy_to_organize_hard_to_win', '2015']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=an+anonymous+person+calling+himself+john+doe+had+somehow+managed+to+copy+nearly+forty
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=years+of+records+of+the+panamanian+law+firm+mossack+fonseca+this+is+one+of+many+firms+around+the+world
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+specialize+in+setting+up+accounts+in+offshore+tax+havens+like+the+british+virgin+islands+for+rich+and+powerful+people+who+like+to+keep+secrets
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=john+doe+had+managed+to+copy+every
error: request timeout
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+represented+the+biggest+cache+of+inside+information+into+the+tax+haven+system+that+anyone+had+ever+seen
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+it+also+presented+a+gigantic+challenge+to+investigative+journalism
found 1 videos: [['/talks/gerard_ryle_how_the_panama_papers_journalists_broke_the_biggest_leak_in_history', '2016']]
selected: /talks/gerard_ryle_how_the_panama_papers_journalists_broke_the_biggest_leak_in_history
sleep 1 seconds to avoid blocking
------<798>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GeroMiesenboeck_2010G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+brilliant+but+slightly+mad+scientist+in+the+dragonball+z
found 1 videos: [['/talks/gero_miesenboeck_re_engineering_the_brain', '2010']]
selected: /talks/gero_miesenboeck_re_engineering_the_brain
sleep 3 seconds to avoid blocking
------<799>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GeverTulley_2007U.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=five+dangerous+things+you+should+let+your+children+do+i+don+t+have+children+i+borrow+my+friends++children+so
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=take+all+this+advice+with+a+grain+of+salt++i+m+gever+tulley
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+a+contract+computer+scientist+by+trade+but+i+m+the+founder+of+something+called+the+tinkering+school
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+a+summer+program+which+aims+to+help+kids+learn+how+to+build+the+things+that+they+think+of+so+we+build+a+lot+of+things+and
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+do+put+power+tools+into+the+hands+of
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+re+thinking+about+sending+your+kid+to+tinkering+school+they+do+come+back+bruised+scraped+and+bloody
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know++we+live+in+a+world+that+s+subjected+to+ever+more+stringent+child+safety+regulations+there+doesn+t+seem+to+be
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+how+crazy+child+safety+regulations+can+get+we+put+suffocation
found 1 videos: [['/talks/gever_tulley_5_dangerous_things_you_should_let_your_kids_do', '2007']]
selected: /talks/gever_tulley_5_dangerous_things_you_should_let_your_kids_do
sleep 1 seconds to avoid blocking
------<800>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GeverTulley_2009.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+the+exact+moment+that+i+started+creating+something+called+tinkering+school
found 1 videos: [['/talks/gever_tulley_life_lessons_through_tinkering', '2009']]
selected: /talks/gever_tulley_life_lessons_through_tinkering
sleep 5 seconds to avoid blocking
------<801>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GeWang_2014X.stm
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=talk+to+you+about+one+thing+and+just+one+thing+only+and
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+has+to+do+with+when+people+ask+me+what+do+you+do+to+which+i+usually+respond+i+do+computer+music
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+number+of+people+just+stop+talking+to+me+right+then+and+there+and+the+rest+who+are+left+usually+have+this+blank+look+in+their+eye
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+if+to+say+what+does+that+mean+and+i+feel+like
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+actually+depriving+them+of+information+by+telling+them+this++at+which+point+i+usually+panic+and+spit+out+the+first+thing+that+comes+to+my+mind+which+is
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+have+no+idea+what+i+m+doing++which+is+true
error: request timeout
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=followed+by+a+second+thought+which+is++whatever+it+is+that+i+m+doing++i+love+it
error: request timeout
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well++share+with+you+something+i+love+and+also+why
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+think+we+ll+begin+with+just+this+question++what+is+computer+music+and+i+m+going+to
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=do+my+best+to+provide+a+definition
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=maybe+by+telling+you+a+story+that+goes+through+some+of+the+stuff+i+ve+been+working+on
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+first+thing+i+think+in+our+story+is+going+to+be+something+called+chuck+now
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=chuck+is+a+programming+language+for+music+and
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+freely+available+and+i+like+to+think+that+it+crashes+equally+well+on+all+modern+operating+systems++and+instead+of+telling+you+more+about+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+the+way+i+m+just+going+to+nerd+out+for+just+a+few+minutes+here+so
found 1 videos: [['/talks/ami_klin_a_new_way_to_diagnose_autism', '2012']]
selected: /talks/ami_klin_a_new_way_to_diagnose_autism
sleep 4 seconds to avoid blocking
------<802>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GianGiudice_2013X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+last+year+on+the+fourth+of+july+experiments+at+the+large+hadron+collider+discovered+the+higgs+boson++it+was+a+historical+day
found 1 videos: [['/talks/gian_giudice_why_our_universe_might_exist_on_a_knife_edge', '2013']]
selected: /talks/gian_giudice_why_our_universe_might_exist_on_a_knife_edge
sleep 5 seconds to avoid blocking
------<803>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GillHicks_2016X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=suicide+bomber+would+actually+teach+me+a+valuable+lesson++but+he
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+taught+me+to+never+presume+anything+about+anyone+you+don+t+know
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+a+thursday+morning+in+july+two+thousand+and+five
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+bomber+and+i+unknowingly++boarded+the+same+train+carriage+at+the+same+time+standing++apparently
found 1 videos: [['/talks/gill_hicks_i_survived_a_terrorist_attack_here_s_what_i_learned', '2016']]
selected: /talks/gill_hicks_i_survived_a_terrorist_attack_here_s_what_i_learned
sleep 1 seconds to avoid blocking
------<804>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GiorgiaLupi_2017S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+what+my+last+week+looked+like
found 17 videos: [['/talks/tasha_eurich_increase_your_self_awareness_with_one_simple_fix', '2017'], ['/talks/ricardo_semler_how_to_run_a_company_with_almost_no_rules', '2015'], ['/talks/steven_wise_chimps_have_feelings_and_thoughts_they_should_also_have_rights', '2015'], ['/talks/joseph_ravenell_how_barbershops_can_keep_men_healthy', '2016'], ['/talks/francoise_mouly_the_stories_behind_the_new_yorker_s_iconic_covers', '2017'], ['/talks/aala_el_khani_what_it_s_like_to_be_a_parent_in_a_war_zone', '2017'], ['/talks/timothy_ihrig_what_we_can_do_to_die_well', '2016'], ['/talks/tabetha_boyajian_the_most_mysterious_star_in_the_universe', '2016'], ['/talks/robin_steinberg_what_if_we_ended_the_injustice_of_bail', '2018'], ['/talks/mariana_mazzucato_what_is_economic_value_and_who_creates_it', '2019'], ['/talks/rebecca_brachman_could_a_drug_prevent_depression_and_ptsd', '2016'], ['/talks/liz_hajek_what_rivers_can_tell_us_about_the_earth_s_history', '2017'], ['/talks/david_miliband_the_refugee_crisis_is_a_test_of_our_character', '2017'], ['/talks/nora_atkinson_why_art_thrives_at_burning_man', '2018'], ['/talks/hugh_evans_what_does_it_mean_to_be_a_citizen_of_the_world', '2016'], ['/talks/kai_fu_lee_how_ai_can_save_our_humanity', '2018'], ['/talks/christopher_bell_bring_on_the_female_superheroes', '2016']]
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+main+sensations+i+had+for+every+waking+hour+if+the+feeling+came+as+i+thought+of+my+dad+who+recently+passed+away++or+if+i+could+have+just
found 1 videos: [['/talks/giorgia_lupi_how_we_can_find_ourselves_in_data', '2017']]
selected: /talks/giorgia_lupi_how_we_can_find_ourselves_in_data
sleep 4 seconds to avoid blocking
------<805>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GlennGreenwald_2014G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=an+entire+genre+of+youtube+videos+devoted+to+an+experience+which+i+am+certain+that+everyone+in+this+room+has+had+it+entails+an+individual+who+thinking+they+re+alone
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=engages+in+some+expressive+behavior+wild+singing+gyrating+dancing+some
found 1 videos: [['/talks/glenn_greenwald_why_privacy_matters', '2014']]
selected: /talks/glenn_greenwald_why_privacy_matters
sleep 5 seconds to avoid blocking
------<806>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GolanLevin_2004.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=spending+seven+years+at+mit+and+research+laboratories+only+to+find+out+that+that+you+re+a+performance+artist
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+also+a+software+engineer+and+i+make+lots+of+different+kinds
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+art+with+the+computer+and+i+think+the+main+thing+that+i+m+interested+in+is+trying+to+find+a+way+of+making+the+computer+into+a+personal+mode+of+expression++and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=many+of+you+out+there+are+the+heads+of+macromedia+and+microsoft+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+a+way+those+are+my+bane+i+think+there+s+a+great+homogenizing+force
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+software+imposes+on+people+and+limits+the+way+they+think+about+what+s
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+the+computer+of+course+it+s+also+a+great+liberating+force+that+makes+possible+you+know+publishing+and+so+forth+and+standards+and+so+on+but+in+a+way+the+computer
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=makes+possible+much+more+than+what+most+people+think+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+art+has+just+been+about+trying+to+find+a+personal+way+of+using+the+computer
found 1 videos: [['/talks/ray_kurzweil_the_accelerating_power_of_technology', '2006']]
selected: /talks/ray_kurzweil_the_accelerating_power_of_technology
sleep 1 seconds to avoid blocking
------<807>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GolanLevin_2009.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+name+is+golan+levin+i+m+an+artist+and+an+engineer+which+is+increasingly+a+more+common+kind+of+hybrid++but+i+still+fall+into+this+weird+crack+where
found 1 videos: [['/talks/golan_levin_art_that_looks_back_at_you', '2009']]
selected: /talks/golan_levin_art_that_looks_back_at_you
sleep 3 seconds to avoid blocking
------<808>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GoogleScienceFairWinners_2011X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=going+to+a+restaurant+and+wanted+a+healthier+option++which+would+you++choose+grilled+or+fried+chicken
found 1 videos: [['/talks/lauren_hodge_shree_bose_naomi_shah_award_winning_teenage_science_in_action', '2012']]
selected: /talks/lauren_hodge_shree_bose_naomi_shah_award_winning_teenage_science_in_action
sleep 4 seconds to avoid blocking
------<809>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GordonBrown_2009G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=can+i+say+how+delighted+i+am+to+be+away+from+the+the+calm+of+westminster+and+whitehall
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=napalm++and+she+awakened+the+conscience+of+the+nation+of+america
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+begin+to+end+the+vietnam+war
found 10 videos: [['/talks/aaron_huey_america_s_native_prisoners_of_war', '2010'], ['/talks/james_nachtwey_my_wish_let_my_photographs_bear_witness', '2007'], ['/talks/gordon_brown_wiring_a_web_for_global_good', '2009'], ['/talks/jonathan_klein_photos_that_changed_the_world', '2010'], ['/talks/laurie_garrett_lessons_from_the_1918_flu', '2009'], ['/talks/lauren_zalaznick_the_conscience_of_television', '2011'], ['/talks/they_might_be_giants_wake_up_it_s_they_might_be_giants', '2008'], ['/talks/doris_kearns_goodwin_lessons_from_past_presidents', '2008'], ['/talks/sarah_kaminsky_my_father_the_forger', '2011'], ['/talks/peter_hirshberg_the_web_is_more_than_better_tv', '2008']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+birhan+who+was+the+ethiopian+girl+who+launched+live+aid+in+the
found 1 videos: [['/talks/gordon_brown_wiring_a_web_for_global_good', '2009']]
selected: /talks/gordon_brown_wiring_a_web_for_global_good
sleep 2 seconds to avoid blocking
------<810>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GordonBrown_QA_2009G.stm
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=global+citizenship+is+that+an+idea+that+you+believe+in+and+how+would+you+define+that+gordon+brown
found 1 videos: [['/talks/gordon_brown_global_ethic_vs_national_interest', '2009']]
selected: /talks/gordon_brown_global_ethic_vs_national_interest
sleep 1 seconds to avoid blocking
------<811>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GradyBooch_2016S.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+sir+who+laughed+the+loudest+you+probably+still+are
found 1 videos: [['/talks/grady_booch_don_t_fear_superintelligent_ai', '2017']]
selected: /talks/grady_booch_don_t_fear_superintelligent_ai
sleep 2 seconds to avoid blocking
------<812>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GrahamHawkes_2005.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+the+future+of+this+planet+depends+on+humans+not+technology+and+we+already+have+the+knowledge+were+kind+of+at+the+endgame+with+knowledge+but+were+nowhere+near+the+endgame+when+it+comes+to+our+perception
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+dark+ages+and+when+you+listen+to
found 1 videos: [['/talks/jonathan_harris_the_web_s_secret_stories', '2007']]
selected: /talks/jonathan_harris_the_web_s_secret_stories
sleep 2 seconds to avoid blocking
------<813>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GrahamHill_2010.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+a+year+ago+i+asked+myself+a+question+knowing+what+i+know+why+am+i+not+a+vegetarian
found 1 videos: [['/talks/graham_hill_why_i_m_a_weekday_vegetarian', '2010']]
selected: /talks/graham_hill_why_i_m_a_weekday_vegetarian
sleep 2 seconds to avoid blocking
------<814>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GrahamHill_2011U.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+s+in+the+box++whatever+it+is+must+be+pretty+important+because+i+ve+traveled+with+it+moved+it+from+apartment
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know+that+we+americans+have+about+three+times+the+amount+of+space+we+did+fifty+years+ago+three+times
found 3 videos: [['/talks/peter_ward_a_theory_of_earth_s_mass_extinctions', '2009'], ['/talks/jeff_speck_the_walkable_city', '2013'], ['/talks/jeff_hancock_the_future_of_lying', '2012']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+you+d+think+with+all+this+extra+space+we+d+have+plenty+of+room+for+all+our+stuff
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=two+point+two+billion+sq+ft+industry+that+of+personal+storage++so+we+ve+got+triple+the+space+but+we+ve+become+such+good+shoppers
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+we+need+even+more+space
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+where+does+this+lead++lots+of+credit+card+debt++huge+environmental+footprints+and+perhaps
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=over+the+same+fifty+years++well+i+m+here+to+suggest+there+s+a+better+way+that+less+might+actually+equal+more
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+bet+most+of+us+have+experienced+at+some+point+the+joys+of+less
found 10 videos: [['/talks/graham_hill_less_stuff_more_happiness', '2011'], ['/talks/krista_tippett_reconnecting_with_compassion', '2011'], ['/talks/elyn_saks_a_tale_of_mental_illness_from_the_inside', '2012'], ['/talks/jonathan_haidt_religion_evolution_and_the_ecstasy_of_self_transcendence', '2012'], ['/talks/andrew_solomon_depression_the_secret_we_share', '2013'], ['/talks/hanna_rosin_new_data_on_the_rise_of_women', '2010'], ['/talks/barry_schwartz_our_loss_of_wisdom', '2009'], ['/talks/rufus_griscom_alisa_volkman_let_s_talk_parenting_taboos', '2010'], ['/talks/philip_zimbardo_the_psychology_of_time', '2009'], ['/talks/enric_sala_glimpses_of_a_pristine_ocean', '2010']]
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=traveling+in+a+hotel+room++camping+rig+up+basically+nothing+maybe+a+boat
found 1 videos: [['/talks/graham_hill_less_stuff_more_happiness', '2011']]
selected: /talks/graham_hill_less_stuff_more_happiness
sleep 1 seconds to avoid blocking
------<815>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GregAsner_2013G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=technology+can+change+our+understanding+of+nature
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=take+for+example+the+case+of+lions
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+centuries+it+s+been+said+that+female+lions+do+all+of+the+hunting+out+in+the+open+savanna+and+male+lions+do+nothing+until+it+s+time+for+dinner
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+ve+heard+this+too+i+can+tell
error: request timeout
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+recently+i+led+an+airborne+mapping+campaign+in+the+kruger+national+park+in+south+africa
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=our+colleagues+put+gps+tracking+collars+on+male+and+female+lions+and+we+mapped+their+hunting+behavior+from+the+air
found 1 videos: [['/talks/greg_asner_ecology_from_the_air', '2013']]
selected: /talks/greg_asner_ecology_from_the_air
sleep 4 seconds to avoid blocking
------<816>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GregGage_2015U.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+brain+is+an+amazing+and+complex+organ
found 4 videos: [['/talks/greg_gage_how_to_control_someone_else_s_arm_with_your_brain', '2015'], ['/talks/giulia_enders_the_surprisingly_charming_science_of_your_gut', '2017'], ['/talks/rob_knight_how_our_microbes_make_us_who_we_are', '2015'], ['/talks/david_eagleman_can_we_create_new_senses_for_humans', '2015']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+while+many+people+are+fascinated+by+the+brain+they+can+t+really+tell+you+that+much+about+the+properties+about+how+the+brain+works+because+we+don+t+teach+neuroscience+in
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+one+of+the+reasons+why+is+that+the+equipment+is+so+complex+and+so+expensive+that+it+s+really+only+done+at+major+universities+and+large+institutions
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+in+order+to+be+able+to+access+the+brain+you+really+need+to
found 10 videos: [['/talks/greg_gage_how_to_control_someone_else_s_arm_with_your_brain', '2015'], ['/talks/christiana_figueres_the_inside_story_of_the_paris_climate_agreement', '2016'], ['/talks/michael_patrick_lynch_how_to_see_past_your_own_perspective_and_find_truth', '2017'], ['/talks/andrew_solomon_depression_the_secret_we_share', '2013'], ['/talks/deborah_gordon_what_ants_teach_us_about_the_brain_cancer_and_the_internet', '2014'], ['/talks/john_koenig_beautiful_new_words_to_describe_obscure_emotions', '2017'], ['/talks/rob_knight_how_our_microbes_make_us_who_we_are', '2015'], ['/talks/neri_oxman_design_at_the_intersection_of_technology_and_biology', '2015'], ['/talks/abha_dawesar_life_in_the_digital_now', '2013'], ['/talks/jim_yong_kim_doesn_t_everyone_deserve_a_chance_at_a_good_life', '2017']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=dedicate+your+life+and+spend+six+and+a+half+years+as+a+graduate+student+just+to+become+a+neuroscientist+to+get+access+to+these+tools
found 1 videos: [['/talks/greg_gage_how_to_control_someone_else_s_arm_with_your_brain', '2015']]
selected: /talks/greg_gage_how_to_control_someone_else_s_arm_with_your_brain
sleep 2 seconds to avoid blocking
------<817>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GregLynn_2005.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+would+talk+about+today+is+the+transition+from+one+mode+of+thinking+about+nature+to+another+that+s+tracked+by+architecture+what+s+interesting+about+architects+is
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+always+have+tried+to+justify+beauty+by+looking+to+nature+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=arguably++beautiful+architecture+has+always+been+looking+at+a+model+of+nature++so++for+roughly+three+hundred+years+the+hot+debate+in+architecture
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+whether+the+number+five+or+the+number+seven+was+a+better+proportion+to+think+about+architecture+because+the+nose+was+one+fifth+of+your+head
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+reason+that+that+was+the+model+of+beauty+and+of+nature+was+because+the+decimal+point+had+not+been+invented+yet+it+wasn+t+the++16th+century
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=everybody+had+to+dimension+a+building+in+terms+of+fractions++so+a+room+would+be+dimensioned+as+one+fourth+of+a+facade+the+structural+dais+of+that+might+be+dimensioned+as+ten
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=get+down+to+the+small+elements+by+fractional+subdivision+finer+and+finer+and+finer+in+the+++15th+century+the+decimal+point+was+invented+architects
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=stopped+using+fractions+and+they+had+a+new+model+of+nature++so++what+s+going+on
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+which+is+using+digital+tools++and+that+has+a+lot+of+implications+to+the+way+we+think+about+beauty+and+form+and+it+has+a+lot+of+implications
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+way+we+think+about+nature
found 3 videos: [['/talks/janine_benyus_biomimicry_s_surprising_lessons_from_nature_s_engineers', '2007'], ['/talks/dan_dennett_let_s_teach_religion_all_religion_in_schools', '2006'], ['/talks/robert_thurman_we_can_be_buddhas', '2007']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+best+example+of+this+would+probably+be+the+gothic+and+the+gothic+was+invented+after+the+invention+of+calculus+although+the+gothic+architects+weren+t+really+using
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=calculus+to+define+their+forms++but+what+was+important+is+the+gothic+moment+in+architecture+was+the+first+time+that+force+and+motion+was+thought+of+in+terms+of+form
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=cross+you+can+see+that+the+structural+forces+of+the+vaulting+get+articulated+as+lines+so+you+re+really+actually+seeing+the+expression+of+structural+force+and+form
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=much+later+robert+maillart+s+bridges+which+optimize+structural+form+with+a+calculus+curvature+almost+like+a+parabola
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+end+of+the++19th+century+beginning+of+the+20th+century+and+how+that+hanging+chain+model+translates+into+archways
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+in+all+of+these+examples+structure+is+the+determining+force+frei+otto+was+starting+to+use+foam+bubble+diagrams
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+foam+bubble+models+to+generate+his+mannheim+concert+hall
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=interestingly+in+the+last+ten+years+norman+foster+used+a+similar+heat+thermal+transfer+model+to+generate+the+roof+of+the+national+gallery+with+the+structural+engineer+chris+williams
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+all+these+examples+there+s+one+ideal+form++because+these+are+thought+in+terms+of+structure++and+as+an+architect+i+ve+always+found+these+kinds+of+systems+very+limiting+because
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+not+interested+in+ideal+forms+and+i+m+not+interested+in+optimizing+to+some+perfect+moment+so+what+i+thought+i+would
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=bring+up+is+another+component+that+needs+to+be+thought+of+whenever+you+think+about+nature++and+that+s+basically+the+invention+of
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+hero+is+actually+not+darwin+it+s+a+guy+named+william+bateson+father+of+greg+bateson+who+was+here+for+a+long+time
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+monterey++and+he+was+what+you+d+call+a+teratologist+he+looked+at+all+of+the+monstrosities+and+mutations+to+find+rules
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+laws+rather+than+looking+at+the+norms+so+instead+of+trying+to+find+the+ideal+type
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+has+two+kinds+of+mutations+of+a+human+thumb++when+i+first+saw+this+image
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ten+years+ago+i+actually+found+it+very+strange+and+beautiful+at+the+same+time++beautiful+because+it+has+symmetry
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so++what+he+found+is+that+in+all+cases+of+thumb+mutations++instead+of
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=having+a+thumb++you+would+either+get+another+opposable+thumb++or+you+would+get+four+fingers+so+the+mutations+reverted
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+bateson+invented+the+concept+of+symmetry+breaking
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+is+that+wherever+you+lose+information+in+a+system
found 4 videos: [['/talks/peter_donnelly_how_juries_are_fooled_by_statistics', '2006'], ['/talks/peter_gabriel_fight_injustice_with_raw_video', '2006'], ['/talks/jane_goodall_what_separates_us_from_chimpanzees', '2007'], ['/talks/michael_shermer_why_people_believe_weird_things', '2006']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+revert+back+to+symmetry+so+symmetry+wasn+t+the+sign+of+order+and+organization+which+is+what+i+was+always+understanding+and+as+is+an+architect
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=symmetry+was+the+absence+of+information++so+whenever+you+lost+information+you+d+move+to+symmetry
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+added+information+to+a+system+you+would+break+symmetry+so+this+whole+idea+of+natural+form
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=shifted+at+that+moment+from+looking+for+ideal+shapes+to+looking+for+a+combination+of+information+and
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know++literally+after+seeing+that+image+and+finding+out+what+bateson+was+working+with+we+started+to+use+these+rules+for+symmetry+breaking+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=branching+to+start+to+think+about+architectural+form
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+just+talk+for+a+minute+about+the+digital+mediums+that+we+re+using+now+and+how+they+integrate+calculus++the+fact+that
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=means+that+we+don+t+have+to+think+about+dimension+in+terms+of+ideal+units+or
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+architecture+we+deal+with+big+assemblies+of+components+so+there+might+be
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=up+to+say+fifty+thousand+pieces+of+material+in+this+room+you+re+sitting+in+right+now
found 1 videos: [['/talks/edward_burtynsky_my_wish_manufactured_landscapes_and_green_education', '2006']]
selected: /talks/edward_burtynsky_my_wish_manufactured_landscapes_and_green_education
sleep 5 seconds to avoid blocking
------<818>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GregoireCourtine_2013G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+am+a+neuroscientist+with+a+mixed+background+in+physics+and+medicine
found 1 videos: [['/talks/gregoire_courtine_the_paralyzed_rat_that_walked', '2013']]
selected: /talks/gregoire_courtine_the_paralyzed_rat_that_walked
sleep 3 seconds to avoid blocking
------<819>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GregoryHeyworth_2015X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=two+thousand+and+thirteen++a+band+of+al+qaeda+militants+entered+the+ancient+city+of+timbuktu+on+the+southern+edge+of+the+sahara+desert
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+they+set+fire+to+a+medieval+library+of+thirty+thousand+manuscripts+written+in+arabic+and+several+african+languages
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=astronomy+to+geography+history+to+medicine++including+one+book+which+records+perhaps+the+first+treatment+for+male+erectile+dysfunction
found 1 videos: [['/talks/gregory_heyworth_how_i_m_discovering_the_secrets_of_ancient_texts', '2016']]
selected: /talks/gregory_heyworth_how_i_m_discovering_the_secrets_of_ancient_texts
sleep 3 seconds to avoid blocking
------<820>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GregoryPetsko_2008.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+cheery+thought+on+this+map+every+country+that+s+colored+blue+has+more+than+twenty+percent+of+its+population+over+the+age
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+sixty+five+this+is+the+world+we+live+in+and+this+is+the+world+your+children+will+live+in
found 4 videos: [['/talks/yann_arthus_bertrand_a_wide_angle_view_of_fragile_earth', '2009'], ['/talks/shukla_bose_teaching_one_child_at_a_time', '2010'], ['/talks/robert_thurman_expanding_your_circle_of_compassion', '2008'], ['/talks/edward_burtynsky_my_wish_manufactured_landscapes_and_green_education', '2006']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+twelve+thousand+years+the+distribution+of+ages+in+the+human+population+has+looked+like+a+pyramid+with+the+oldest+on+top+it+s+already+flattening+out
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+two+thousand+and+fifty+it+s+going+to+be+a+column+and+will+start+to+invert
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+why+it+s+happening
found 17 videos: [['/talks/elaine_morgan_i_believe_we_evolved_from_aquatic_apes', '2009'], ['/talks/euvin_naidoo_why_invest_in_africa', '2007'], ['/talks/reed_kroloff_a_tour_of_modern_architecture', '2008'], ['/talks/ben_saunders_why_did_i_ski_to_the_north_pole', '2006'], ['/talks/juan_enriquez_the_life_code_that_will_reshape_the_future', '2007'], ['/talks/harsha_bhogle_the_rise_of_cricket_the_rise_of_india', '2010'], ['/talks/nicholas_christakis_how_social_networks_predict_epidemics', '2010'], ['/talks/michael_moschen_juggling_as_art_and_science', '2008'], ['/talks/fields_wicker_miurin_learning_from_leadership_s_missing_manual', '2009'], ['/talks/alan_russell_the_potential_of_regenerative_medicine', '2007'], ['/talks/ellen_dunham_jones_retrofitting_suburbia', '2010'], ['/talks/jamil_abu_wardeh_the_axis_of_evil_middle_east_comedy_tour', '2010'], ['/talks/margaret_wertheim_the_beautiful_math_of_coral', '2009'], ['/talks/emily_levine_a_theory_of_everything', '2009'], ['/talks/david_agus_a_new_strategy_in_the_war_on_cancer', '2010'], ['/talks/bjorn_lomborg_global_priorities_bigger_than_climate_change', '2007'], ['/talks/tom_shannon_john_hockenberry_the_painter_and_the_pendulum', '2010']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+average+lifespan+s+more+than+doubled
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=since+eighteen+forty+and+it+s+increasing+currently+at+the+rate+of+about+five+hours+every+day
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+is+why+that+s+not+entirely+a+good+thing
found 3 videos: [['/talks/dan_gilbert_why_we_make_bad_decisions', '2008'], ['/talks/steven_pinker_human_nature_and_the_blank_slate', '2008'], ['/talks/nicholas_christakis_how_social_networks_predict_epidemics', '2010']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+over+the+age+of+sixty+five+your+risk+of+getting+alzheimer+s+or+parkinson+s+disease+will+increase+exponentially
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+two+thousand+and+fifty+they+ll+be+about+thirty+two+million
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+in+the+united+states+over+the+age+of+eighty+and+unless+we+do+something+about+it+half+of+them+will+have+alzheimer+s+disease+and+three+million+more+will+have+parkinson+s+disease
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=right+now+those+and+other+neurologic+diseases+for+which+we+have+no+cure+or+prevention+cost+about+a+third+of+a+trillion+dollars+a+year+it+will+be+well+over+a+trillion+dollars+by+two+thousand+and+fifty
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=alzheimer+s+disease+starts+when+a+protein+that+should+be+folded+up+properly+misfolds+into+a+kind+of+demented+origami
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=approach+we+re+taking+is+to+try+to+design+drugs+that+function+like+molecular+scotch+tape+to+hold+the+protein+into+its+proper+shape
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+would+keep+it+from+forming+the+tangles+that+seem+to+kill+large+sections+of+the+brain+when+they+do
found 1 videos: [['/talks/gregory_petsko_the_coming_neurological_epidemic', '2008']]
selected: /talks/gregory_petsko_the_coming_neurological_epidemic
sleep 1 seconds to avoid blocking
------<821>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GregoryStock_2003.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+future+of+life+where+the+unraveling+of+our+biology+and+bring+up+the+lights+a+little+bit+i+don+t+have+any+slides+i+m+just+going+to+talk
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+where+that+s+likely+to+carry+us++and+you+know++i
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+the+visions+of+the+first+couple+of+sessions+it+almost+made+me+feel+a+little+bit+guilty+about+having+an+uplifting+talk+about+the+future+it
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=felt+wrong+to+do+that+in+some+way++and+yet+i+don+t+really+think+it+is+because+when+it+comes+down+to+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+this+larger+trajectory+that+is+really+what+is+going+to+remain+what
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+in+the+future+are+going+to+remember+about+this+period+i+want+to+talk+to+you+a+little+bit
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+why+the+visions+of+jeremy+rivkins
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+would+like+to+ban+these+sorts+of+technologies+or+of+the+bill+joys+who+would+like+to+relinquish+them+are+actually
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+follow+those+paths+would+be+such+a+tragedy+for+us
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+focusing+on+biology++the+biological+sciences+the+reason+i+m+doing+that+is+because+those+are+going+to+be+the+areas+that+are+the+most+significant+to+us
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=really+very+simple++it+s+because+we+re+flesh+and+blood+we+re+biological+creatures++and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+we+can+do+with+our+biology+is+going+to+shape+our+future
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+of+their+children+whether+we+gain+control+over+aging+whether+we+learn+to+protect+ourselves+from+alzheimer+s+and+heart+disease+and+cancer
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+that+shakespeare+really+put
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+very+nicely++and+i+m+actually+going+to+use+his+words+in+the+same+order+that+he+did
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+said+and+so+from+hour+to+hour+we+ripe+and+ripe
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+from+hour+to+hour+we+rot+and+rot+and+thereby+hangs+a+tale
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=life+is+short+you+know++and+we+need+to+think+about+planning+a+little
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+going+to+eventually+even+in+the+developed+world+going+to+have+to+lose+everything+that+we+love++when+you+re+beginning+to+rot+a+little+bit
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+of+the+videos+crammed+into+your+head+all+of+the+extensions+that+extend+your+various+powers+are+going+to+being+to+seem+a+little+secondary
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+know+i+m+getting+a+little+bit+gray+so+is+ray+kurzweil
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+where+it+s+really+central+to+our+lives
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+i+know+there+s+been+a+whole+lot+of+hype+about+our+power+to+control+biology+you+just+have+to+look+at+the+human+genome+project++it+wasn+t+two+years+ago+that+everybody+was+talking+about
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+ve+found+the+holy+grail+of+biology++we+re+deciphering+the+code+of+codes+we+re+reading+the+book+of+life
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+a+little+bit+reminiscent+of+one
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+neil+armstrong+walked+on+the+moon+and+everybody+was+about+to+race+out+toward+the+stars
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+ve+all+seen+two+thousand+and+one+a+space+odyssey+you+know+it+s+two+thousand+and+three+and+there+is+no+hal
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+there+is+no+odyssey+to+our+own+moon+much+less+the+moons+of+jupiter++and+we+re+still+picking+up+pieces+of+the+challenger
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+it+s+not+surprising+that+some+people+would+wonder+whether+maybe
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thirty+or+forty+years+from+now+we+ll+look+back+at+this+instant+in+time+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+of+the+sort+of+talk+about+the+human+genome+project+and+what+all+this+is+going+to+mean+to+us+well+it+will
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=really+mean+precious+little++and+i+just+want+to+say+that+that+is+absolutely+not+going+to+be+the+case+because+when+we+talk+about
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=our+genetics+and+our+biology+and+modifying+and
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=altering+and+adjusting+these+things+we+re+talking+about+changing+ourselves
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+is+very+critical+stuff
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+have+any+doubts+about+how+technology+affects+our+lives+you+just+have+to+go+to+any+major+city+this+is+not+the+stomping+ground+of+our+pleistocene+ancestors++what+s+happening+is+we+re+taking+this+technology+it+s+becoming+more+precise+more+potent
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+re+turning+it+back+upon+ourselves+before+it+s+all+done+we+are+going+to+alter+ourselves+every+bit+as+much+as+we+have+changed
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+world+around+us++it+s+going+to+happen+a+lot+sooner+than+people+imagine+on+the+way+there+it+s+going+to
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=completely+revolutionize+medicine+and+health+care+that+s+obvious+it+s+going+to+change+the+way+we+have+children++it+s+going+to+change+the+way+we+manage+and+alter+our+emotions+it+s+going+to+probably+change+the+human+lifespan+it+will+really+make+us+question
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+it+is+to+be+a+human+being
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+larger+context+of+this+is+that+are+two+unprecedented
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=revolutions+that+are+going+on+today++the+first+of+them+is+the+obvious+one+the+silicon+revolution
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+you+all+are+very+very+familiar+with+it+s+changing+our+lives+in+so+many+ways+and+it+will+continue+to+do+that+what+the+essence+of
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+that+we+re+taking+the+sand+at+our+feet+the+inert+silicon+at+our+feet++and+we+re+breathing+a+level+of+complexity+into+it+that+rivals+that+of+life+itself+and+may+even+surpass+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+an+outgrowth+of+that+as+a+child+of+that+revolution+is+the+revolution+in+biology
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+genomics+revolution+proteomics+metabolomics+all+of+these+omics+that+sound+so+terrific+on+grants+and+on+business
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+we+re+doing+is+we+are+seizing+control+of+our+evolutionary+future+i+mean+we+re+essentially+using+technology+to+just+jam+evolution+into++fast+forward+it+s+not+at+all+clear+where+it+s+going+to+take+us
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+in+five+to+ten+years+we+re+going+to+start+see+some+very+profound+changes++the+most+immediate+changes+that+we+ll+see+are+things+like+in+medicine
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+is+going+to+be+a+big+shift+towards+preventative+medicine+as+we+start+to+be+able+to+identify
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+of+the+risk+factors+that+we+have+as+individuals
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+who+is+going+to+pay+for+all+this+and+how+are+we+going+to+understand+all+this+complex+information+that+is+going+to+be+the+it+challenge+of+the+next+generation
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+communicating+all+this+information+there+s+pharmacogenomics+the+combination+of+pharmacology+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=tailoring+drugs+to+our+individual+constitutions+that
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=juan+talked+about+a+little+bit+earlier+that+s+going+to+have+amazing+impacts+and+it+s+going+to+be+used+for+diet+as+well++and+nutritional+supplements+and+such
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+it+s+going+to+have+a+big+impact+because+we+re+going+to+have+niche+drugs+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+aren+t+going+to+be+able+to+support+the+kinds+of+expenses+that+we+have+to+create+blockbuster+drugs+today
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+approval+process+is+going+to+fall+apart+actually++it+s+too+slow++it+s+too+risk+averse+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+is+really+not+suited+for+the+future+that+we+re+moving+into+another+thing+is+that+we+re+just+going+to+have+to+deal+with+this+knowledge+it+s+really+wonderful+when+we+hear
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=oh++ninety+nine+point+nine+percent+of+the+letters+in+the+code+are+the+same+we+re+all+identical+to+each+other+isn+t+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+look+around+you+and+know+that+what+we+really+care+about
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+that+little+bit+of+difference+we+look+the+same+to+a+visitor+from+another+planet+maybe++but+not+to+each+other
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+we+compete+with+each+other+all+time+and+we+re+going+to+have+to+come+to+grips+with+the+fact+that+there+are+differences+between+us+as+individuals+that+we+will+know+about+and+between+subpopulations+of+humans+as+well
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+deny+that+that+s+the+case+is+not+a+very+good+start+on+that
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+are+going+to+be+even+more+profound+things+that+are+going+to+happen
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+when+we+re+going+to+begin+to+use+this+knowledge+to+modify+ourselves+now+i+don+t+mean+extra+gills+or+something+something+we+care+about+like+aging+what+if+we+could
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=unravel+aging+and+understand+it+begin+to+retard+the+process+or+even+reverse+it+it+would+change+absolutely+everything++and+it+s+obvious+to+anyone+that+if+we+can
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=do+this+we+absolutely+will+do+this+whatever+the+consequences+are+the+second+is
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=things+of+that+sort+prozac+you+know+this+is+just+clumsy+little+baby+steps+what+if+you+could+take+a+little
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=concoction+of+pharmaceuticals+that+would+make+you+feel+really+contented
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+you+going+to+be+able+to+resist+that+if+it+doesn+t+have+any+overt+side+effects
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=probably+not+and+if+you+don+t+who+are+you+going+to+be+why+do+you+do+what+you+do
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+re+sort+of+circumventing+evolutionary+programs+that+guide+our+behavior+it+s+going+to+be+very+challenging+to+deal+with
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+idea+that+we+re+going+to+chose+our+children+s+genes+as+we+begin+to+understand+what+genes
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=say+about+who+we+are+that+s+the+focus+of+my+book+redesigning+humans+where+i+talk+about+the+kinds+of+choices+we+ll+make+and+the+challenges+it+s+going+to+present+to+society
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+are+three+obvious+ways+of+doing+this+the+first+is+cloning++it+didn+t+happen
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+a+total+media+circus++it+will+happen+in+five+to+ten+years+and+when+it+does+it+s+not+going+to+be+that+big+a+deal++the+birth+of+a+delayed+identical+twin+is+not
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+there+are+more+important+things+that+are+already+occurring++embryo+screening
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+take+a+six+to+eight+cell+embryo+you+tease+out+one+of+the+cells+you+run+a+genetic+test+on+that+cell+and+depending+on+the+results+of+that+test+you+either+implant+that+embryo+or+you+discard
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+already+done+to+avoid+rare+diseases+today++and+pretty+soon+it+s+going+to+be+possible+to+avoid
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=virtually+all+genetic+diseases+in+that+way
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+that+becomes+possible+this+is+going+to+move+from+something+that+is+used+by+those+who+have+infertility+problems+and+are+already+doing+in+vitro+fertilization
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+the+wealthy+who+want+to+protect+their+children+to+just+about+everybody+else+and+in+that+process+that+s+going+to+morph+from+being+just+for+diseases+to+being+for+lesser+vulnerabilities
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+risk+of+manic+depression+or+something+to+picking
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=personalities++temperaments+traits+these+sorts+of+things
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+course+there+is+going+to+be+genetic+engineering+directly+going+in+it+s+a+little+bit+further+away+but+not+that+far+away+going+in+and+altering+the+genes+in+the+first+cell+in+an+embryo
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+way+i+suspect+it+will+happen+is+using+artificial+chromosomes+and+extra+chromosomes+so+we+go+from+forty+six+to+forty+seven+or+forty+eight+and+one+that+is+not+heritable
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+who+would+want+to+pass+on+to+their+children+the+archaic
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=enhancement+modules+that+they+got+twenty+five+years+earlier+from+their+parents++it+s+a+joke+of+course+they+wouldn+t+want+to+do+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+ll+want+the+new+release+those+kinds+of+loose+analogies+with
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=computers++and+with+programming+are+actually+much+deeper+than+that
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+are+really+going+to+come+to+operate+in+this+realm+now+not+everything+that+can+be+done+should+be+done
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+won+t+be+done
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+when+something+is+feasible+in+thousands+of+laboratories+all+over+the+world+which+is+going+to+be+the+case+with+these+technologies+when+there+are+large+numbers+of+people+who+see+them+as+beneficial+which+is+already+the+case++and+when+they+re+almost+impossible
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+police+it+s+not+a+question+of+if+this+is+going+to+happen++it+s+when+and+where+and+how+it+s+going+to+happen
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=humanity+is+going+to+go+down+this+path++and+it+s+going+to+do+so+for+two+reasons
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+first+is+that+all+these+technologies+are+just+a+spin+off+of+mainstream+medical+research+that+everybody+wants+to+see+happen++it+is+being+funded+very+very
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+a+big+way++the+second+is
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+what+we+do++we+try+and+use+our+technology+to+improve+our+lives+in+one+way+or+another+to+imagine+that+we+re+not+going+to+use+these+technologies+when+they+become+available
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+as+much+a+denial+of+who+we+are+as+to+imagine+that+we+ll+use+these+technologies+and+not+fret+and+worry+about+it+a+great+deal
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+lines+are+going+to+blur++and+they+already+are+between+therapy+and+enhancement
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=between+treatment+and+prevention+between+need+and+desire
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+really+the+the+central+one+i+believe+people+can+try+and+ban+these+things+they+undoubtedly+will+they+have+but+ultimately+all+this+is+going+to+do+is+just+shift+development
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=elsewhere++it+s+going+to+drive+these+things+from+view++it+s+going+to+reserve+the+technology+for+the+wealthy+because+they+are+in+the+best+position+to+circumvent+any+of+these
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sorts+of+laws++and+it+s+going+to+deny+us+the+information+that+we+need+to+make+wise+decisions+about+how+to+use+these+technologies
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+sure+we+need+to+debate+these+things++and+i+think+it+s+wonderful+that+we+do++but+we+shouldn+t+kid+ourselves
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+think+that+we+re+going+to+reach+a+consensus+about+these+things+that+is+simply+not+going+to+happen
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+touch+us+too+deeply++and+they+depend+too+much+upon+history+upon+philosophy+upon+religion+upon+culture+upon+politics
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+people+are+going+to+see+this+as+an+abomination+as+the+worst+thing+as+just+awful
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=other+people+are+going+to+say+this+is+great+this+is+the+flowering+of+human+endeavor
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+one+thing+though+that+is+really+dangerous+about+these+sorts+of+technologies+is+that+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+easy+to+become+seduced+by+them++and+to+focus+too+much+on+all+the+high+technology+possibilities+that+exist
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+the+basic+rhythms+of+our+biology+and+our+health
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+are+too+many+people+that+think+that+high+technology+medicine+is+going+to+keep+them++save+them+from+overeating
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=from+eating+a+lot+of+fast+foods+from+not+getting+any+exercise+it+s+not+going+to+happen
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+midst+of+all+this+amazing+technology+and+all+these+things+that+are+occurring++it+s+really+interesting+because+there+is+sort+of+a+counter+revolution+that+is+going+on+a+resurgence+of+interest+in
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=remedies+from+the+past+in+nutraceuticals+in+all+of+these+sorts+of+things+that+some+people+in+the+pharmaceutical+industry+particularly+like+to+brand+as
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+driven+by+it+as+well
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+that+is+how+we+re+gathering+all+this+information+and+linking+it+and+integrating+it+together
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+is+a+lot+in+this+rich+biota+that+is+going+to+serve+us+well+and+that+s+where+about+half+of+our+drugs+come+so+we+shouldn+t+dismiss+this+because+it+s+an+enormous+opportunity+to+use
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+sorts+of+results+or+these+random+loose+trials+from+the+last+thousand+years+about
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+has+impacts+on+our+health++and+to+use+our+advanced+technologies+to+pull+out+what+is+beneficial+from+this+sea+of+noise+basically
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+fact+this+isn+t+just+abstract+i+just+formed+a+biotechnology+company+that+is+using+this+sort+of+an+approach+to+develop+therapeutics+for+alzheimer+s+and+other
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=diseases+of+aging+and+we+re+making+some+real+progress+so
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+it+s+the+beginning+of+a+new+millennium
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+mean+future+humans+far+before+the+end+of+this+millennium+in+a+few+hundred+years+they+are+going+to+look+back+at+this+moment
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+from+the+beginning+of+today+s+sessions+you+d+think+that+they+re+going+to+see+this+as+this+horrible+difficult+painful+period+that+we+struggled+through
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+don+t+think+that+s+what+s+going+to+happen
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+re+going+to+do+like+everybody+does+they+are+going+to+forget+about+all+that+stuff
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+are+actually+going+to+romanticize+this+moment+in+time+they+are+going+to+think+about+it+as+this+glorious+instant
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+we+laid+down+the+very+foundations+of+their+lives+of+their+society+of+their+future
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know+it+s+a+little+bit+like+a+birth+where+there+is+this+bloody
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=then+what+comes+out+of+it+new+life+actually+as+was+pointed+out+earlier++we+forget+about+all+the+struggle+there+was+in
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+to+me+it+s+clear+that+one+of+the+foundations+of+that+future+is+going+to+be+the+reworking+of+our+biology
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=going+to+come+gradually+at+first+it+s+going+to+pick+up+speed+we+re+going+to+make+lots+of+errors+that+s+the+way+these+things+work
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+me+it+s+an+incredible+privilege+to+be+alive+now+and+to+be+to+be+able+to+witness+this+thing+it+is+something+that+is+a+unique+instant+in+the+history+of+all+of+life+it
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+what+s+extraordinary+is+that+we+re+not+just+observing+this+we+are+the+architects+of+this++i+think+that+we+should+be+proud+of+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+difficult+and+challenging+is+that+we+are+also+the+objects+of+these+changes+it+s+our+health++it+s+our+lives++it+s+our+future+it+s+our+children
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+is+why+they+are+so+very+troubling+to+so+many+people+who+would+pull+back+in+fear++i+think+that+our+choice
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+choice+of+life+is+not+whether+we+re+going+to+go+down+this+path+we+are+definitely
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+how+we+hold+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+our+hearts++it+s+how+we+look+at+it++i+think+thucydides+really+spoke+to+us+very+clearly+in+four+hundred+and+thirty+b+c
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+put+it+nicely+again+i+ll+use+the+words+in+the+same+order+he+did
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+bravest+are+surely+those+who+have+the+clearest+vision
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+what+is+before+them++both+glory+and+danger+alike++and+yet+notwithstanding++they+go+out+and+they+meet+it
found 0 videos: []
error: no video is found.
sleep 2 seconds to avoid blocking
------<822>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GregStone_2010Z.stm
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=actually+has+to+start+maybe+back+in+the+the+1960s+when+i+was
found 17 videos: [['/talks/loretta_napoleoni_the_intricate_economics_of_terrorism', '2009'], ['/talks/dee_boersma_pay_attention_to_penguins', '2010'], ['/talks/tim_brown_tales_of_creativity_and_play', '2008'], ['/talks/greg_stone_saving_the_ocean_one_island_at_a_time', '2010'], ['/talks/jonathan_zittrain_the_web_as_random_acts_of_kindness', '2009'], ['/talks/juan_enriquez_will_our_kids_be_a_different_species', '2012'], ['/talks/scott_rickard_the_beautiful_math_behind_the_world_s_ugliest_music', '2012'], ['/talks/nate_silver_does_racism_affect_how_you_vote', '2009'], ['/talks/christopher_mcdougall_are_we_born_to_run', '2011'], ['/talks/noah_wilson_rich_every_city_needs_healthy_honey_bees', '2012'], ['/talks/dennis_wildfogel_how_big_is_infinity', '2012'], ['/talks/paul_snelgrove_a_census_of_the_ocean', '2012'], ['/talks/roger_ebert_remaking_my_voice', '2011'], ['/talks/sean_carroll_distant_time_and_the_hint_of_a_multiverse', '2011'], ['/talks/laurie_garrett_lessons_from_the_1918_flu', '2009'], ['/talks/sendhil_mullainathan_solving_social_problems_with_a_nudge', '2010'], ['/talks/neil_turok_my_wish_find_the_next_einstein_in_africa', '2008']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=seven+or+eight+years+old++watching+jacques+cousteau+documentaries+on+the+living+room+floor+with+my+mask+and+flippers+on
found 1 videos: [['/talks/greg_stone_saving_the_ocean_one_island_at_a_time', '2010']]
selected: /talks/greg_stone_saving_the_ocean_one_island_at_a_time
sleep 2 seconds to avoid blocking
------<823>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GretchenCarlsonandDavidBrooks_2017S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+this+next+edition+of+ted+dialogues
found 3 videos: [['/talks/gretchen_carlson_david_brooks_political_common_ground_in_a_polarized_united_states', '2017'], ['/talks/patrick_chappatte_a_free_world_needs_satire', '2019'], ['/talks/rahul_mehrotra_the_architectural_wonder_of_impermanent_cities', '2019']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+re+trying+to+do+some+bridging+here+today+you+know+the+american+dream+has+inspired+millions+of+people+around+the+world+for
found 1 videos: [['/talks/christiana_figueres_and_chris_anderson_how_we_can_turn_the_tide_on_climate', '2019']]
selected: /talks/christiana_figueres_and_chris_anderson_how_we_can_turn_the_tide_on_climate
sleep 3 seconds to avoid blocking
------<824>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GuyHoffman_2013X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+job+is+to+design+build+and+study+robots+that+communicate+with+people+but+this+story+doesn+t+start+with+robotics+at+all+it+starts+with+animation
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+first+saw+pixar+s+luxo+jr+i+was+amazed+by+how+much+emotion+they+could+put+into+something+as+trivial+as+a+desk+lamp
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=them+at+the+end+of+this+movie+you+actually+feel+something+for+two+pieces+of+furniture
found 4 videos: [['/talks/guy_hoffman_robots_with_soul', '2014'], ['/talks/dan_ariely_what_makes_us_feel_good_about_our_work', '2013'], ['/talks/kevin_slavin_how_algorithms_shape_our_world', '2011'], ['/talks/janine_shepherd_a_broken_body_isn_t_a_broken_person', '2012']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+said+i+have+to+learn+how+to+do+this+so+i+made+a+really+bad+career+decision
found 10 videos: [['/talks/kathryn_schulz_don_t_regret_regret', '2011'], ['/talks/tali_sharot_the_optimism_bias', '2012'], ['/talks/damon_horowitz_we_need_a_moral_operating_system', '2011'], ['/talks/guy_hoffman_robots_with_soul', '2014'], ['/talks/anne_marie_slaughter_can_we_all_have_it_all', '2014'], ['/talks/steve_keil_a_manifesto_for_play_for_bulgaria_and_beyond', '2011'], ['/talks/scott_dinsmore_how_to_find_work_you_love', '2015'], ['/talks/kwame_anthony_appiah_is_religion_good_or_bad_this_is_a_trick_question', '2014'], ['/talks/david_kelley_how_to_build_your_creative_confidence', '2012'], ['/talks/paul_bloom_can_prejudice_ever_be_a_good_thing', '2014']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+s+what+my+mom+was+like+when+i+did++it+i+left+a+very+cozy+tech+job+in+israel+at+a+nice+software+company+and+i+moved+to+new
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+study+animation+and+there+i+lived
found 5 videos: [['/talks/guy_hoffman_robots_with_soul', '2014'], ['/talks/janette_sadik_khan_new_york_s_streets_not_so_mean_any_more', '2013'], ['/talks/frans_de_waal_moral_behavior_in_animals', '2012'], ['/talks/heather_barnett_what_humans_can_learn_from_semi_intelligent_slime', '2014'], ['/talks/ed_boyden_a_light_switch_for_neurons', '2011']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+a+collapsing+apartment+building+in+harlem+with+roommates+i+m+not+using+this+phrase+metaphorically+the+ceiling+actually+collapsed+one+day+in+our+living+room
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=whenever+they+did+news+stories+about+building+violations+in+new+york+they+would+put+the+report+in+front+of+our+building
found 1 videos: [['/talks/guy_hoffman_robots_with_soul', '2014']]
selected: /talks/guy_hoffman_robots_with_soul
sleep 5 seconds to avoid blocking
------<825>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/GuyWinch_2014X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+grew+up+with+my+identical+twin+who
found 3 videos: [['/talks/guy_winch_why_we_all_need_to_practice_emotional_first_aid', '2015'], ['/talks/ben_ambridge_9_myths_about_psychology_debunked', '2015'], ['/talks/jane_mcgonigal_the_game_that_can_give_you_10_extra_years_of_life', '2012']]
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+one+thing+about+being+a+twin+is+it+makes+you+an+expert+at+spotting+favoritism+if+his+cookie
found 1 videos: [['/talks/guy_winch_why_we_all_need_to_practice_emotional_first_aid', '2015']]
selected: /talks/guy_winch_why_we_all_need_to_practice_emotional_first_aid
sleep 1 seconds to avoid blocking
------<826>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HaasandHahn_2014G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+theater+is+built+on+copacabana
found 2 videos: [['/talks/eduardo_paes_the_4_commandments_of_cities', '2012'], ['/talks/haas_hahn_how_painting_can_transform_communities', '2014']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+is+the+most+famous+beach+in+the+world+but+twenty+five+kilometers+away+from+here+in+the+north+zone+of+rio+lies+a+community+called+vila+cruzeiro
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+roughly+sixty+thousand+people+live+there+now+the+people+here+in+rio+mostly+know+vila+cruzeiro+from+the+news+and+unfortunately+news+from+vila+cruzeiro+often
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+vila+cruzeiro+is+also+the+place+where+our+story+begins+jeroen+koolhaas
found 1 videos: [['/talks/haas_hahn_how_painting_can_transform_communities', '2014']]
selected: /talks/haas_hahn_how_painting_can_transform_communities
sleep 3 seconds to avoid blocking
------<827>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HadynParry_2012S.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+focusing+on+the+world+s+most+dangerous+animal
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+when+you+talk+about+dangerous+animals+most+people+might+think+of+lions+or+tigers+or+sharks++but+of+course+the+most+dangerous+animal+is+the+mosquito
found 1 videos: [['/talks/hadyn_parry_re_engineering_mosquitos_to_fight_disease', '2013']]
selected: /talks/hadyn_parry_re_engineering_mosquitos_to_fight_disease
sleep 1 seconds to avoid blocking
------<828>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HaleyvanDyck_2016.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+here+to+talk+to+you+today+about+a+story+that+we+have+all+been+conditioned+to+believe+is+not+possible
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+a+story+about+a+living+breathing+start+up+flourishing+in+an+unlikely+environment+the+united+states
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+fundamentally+beginning+to+disrupt+the+way+government+does+business+from+the+inside+out+but+before+i+get+there+let+s+start+with+the+problem
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+me++the+problem+begins+with+a+number+one+hundred+and+thirty+seven
found 2 videos: [['/talks/franklin_leonard_how_i_accidentally_changed_the_way_movies_get_made_apr_2018', '2018'], ['/talks/gary_haugen_the_hidden_reason_for_poverty_the_world_needs_to_address_now', '2015']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+hundred+and+thirty+seven+is+the+average+number+of+days+a+veteran+has+to+wait+to+have+benefits+processed+by+the+va+one+hundred+and+thirty+seven+days
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+in+order+to+file+that+application+in+the+first+place+she+has+to+navigate+over+one+thousand+different+websites+and+over+nine+hundred
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=different+call+in+numbers+all+owned+and+operated+by+the+united+states+government
found 3 videos: [['/talks/haley_van_dyck_how_a_start_up_in_the_white_house_is_changing_business_as_usual', '2016'], ['/talks/eric_liu_why_ordinary_people_need_to_understand_power', '2014'], ['/talks/neha_narula_the_future_of_money', '2016']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+we+live+in+times+of+incredible+change+the+private+sector+is+constantly+changing+and+improving+itself+all+the+time
found 1 videos: [['/talks/haley_van_dyck_how_a_start_up_in_the_white_house_is_changing_business_as_usual', '2016']]
selected: /talks/haley_van_dyck_how_a_start_up_in_the_white_house_is_changing_business_as_usual
sleep 2 seconds to avoid blocking
------<829>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HallaTomasdottir_2010W.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+sure+used+to+be+a+lot+easier+to+be+from+iceland+because+until+a+couple+of+years+ago+people+knew+hardly+anything+about+us++and+i+could+basically+come+out+here+and+say+only+good+things+about+us
found 1 videos: [['/talks/halla_tomasdottir_a_feminine_response_to_iceland_s_financial_crash', '2010']]
selected: /talks/halla_tomasdottir_a_feminine_response_to_iceland_s_financial_crash
sleep 2 seconds to avoid blocking
------<830>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HallaTomasdottir_2016W.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+feel+incredibly+lucky+to+be+from+a+country+that+s+generally+considered+to+be+the+best+place+in+the+world+to+be+a+woman
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+a+strike++they+did+no+work+that+day++whether+they+held+professional+jobs
found 4 videos: [['/talks/halla_tomasdottir_it_s_time_for_women_to_run_for_office', '2016'], ['/talks/billie_jean_king_this_tennis_icon_paved_the_way_for_women_in_sports', '2015'], ['/talks/the_ted_interview_sir_ken_robinson_still_wants_an_education_revolution', '2018'], ['/talks/tania_simoncelli_should_you_be_able_to_patent_a_human_gene', '2016']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+had+the+work+of+the+home+they+marched+into+the+center+of+reykjavk+ninety+percent+of+women+participated
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=asked+for+equality+nothing+worked+in+iceland+that+day
found 1 videos: [['/talks/halla_tomasdottir_it_s_time_for_women_to_run_for_office', '2016']]
selected: /talks/halla_tomasdottir_it_s_time_for_women_to_run_for_office
sleep 3 seconds to avoid blocking
------<831>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/Halla_Tomasdottir_2010W.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sure+used+to+be+a+lot+easier+to+be+from+iceland+because+until+a+couple+of+years+ago+people+knew+hardly+anything+about+us+and+i+could+basically+come+out+here+and+say+only+good+things
found 1 videos: [['/talks/halla_tomasdottir_a_feminine_response_to_iceland_s_financial_crash', '2010']]
selected: /talks/halla_tomasdottir_a_feminine_response_to_iceland_s_financial_crash
sleep 3 seconds to avoid blocking
------<832>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HamishJolly_2013X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+kind+that+can+potentially+save+lives+can+sometimes+be+lying+right+out+in+the+open+for+us+to+discover
found 1 videos: [['/talks/hamish_jolly_a_shark_deterrent_wetsuit_and_it_s_not_what_you_think', '2014']]
selected: /talks/hamish_jolly_a_shark_deterrent_wetsuit_and_it_s_not_what_you_think
sleep 3 seconds to avoid blocking
------<833>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HandspringPuppetCompany_2011.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+today+to+talk+about+the+evolution+of+a+puppet+horse+basil+jones+but+actually+we+re+going+to+start+this+evolution
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+a+hyena+ak+the+ancestor+of+the
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+hyena+is+the+ancestor+of+the+horse+because+it+was+part+of+a+production+called+faustus+in+africa+a+handspring+production+from+one+thousand+nine
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=where+it+had+to+play+draughts+with+helen+of+troy+this+production+was+directed+by+south+african+artist+and+theater+director+william+kentridge
found 1 videos: [['/talks/handspring_puppet_co_the_genius_puppetry_behind_war_horse', '2011']]
selected: /talks/handspring_puppet_co_the_genius_puppetry_behind_war_horse
sleep 2 seconds to avoid blocking
------<834>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HannahBrencher_2012S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+one+of+the+only+kids+in+college+who+had+a+reason+to+go+to+the+p+o+box+at+the+end+of+the+day
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+was+mainly+because+my+mother+has+never+believed+in+email+in+facebook+in+texting+or+cell+phones+in+general
found 1 videos: [['/talks/hannah_brencher_love_letters_to_strangers', '2012']]
selected: /talks/hannah_brencher_love_letters_to_strangers
sleep 4 seconds to avoid blocking
------<835>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HannahFry_2014X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+mathematics+of+love++now+i+think+that+we+can+all+agree+that+mathematicians+are+famously+excellent+at+finding+love
found 1 videos: [['/talks/hannah_fry_the_mathematics_of_love', '2015']]
selected: /talks/hannah_fry_the_mathematics_of_love
sleep 4 seconds to avoid blocking
------<836>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HannaRosin_2010W.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+are+now+going+through+an+amazing+and+unprecedented+moment+where+the+power+dynamics+between+men+and+women+are+shifting+very+rapidly
found 1 videos: [['/talks/hanna_rosin_new_data_on_the_rise_of_women', '2010']]
selected: /talks/hanna_rosin_new_data_on_the_rise_of_women
sleep 3 seconds to avoid blocking
------<837>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HansRosling_2006.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+ten+years+ago++i+took+on+the+task+to+teach+global+development+to+swedish+undergraduate+students
found 1 videos: [['/talks/hans_rosling_the_best_stats_you_ve_ever_seen', '2006']]
selected: /talks/hans_rosling_the_best_stats_you_ve_ever_seen
sleep 1 seconds to avoid blocking
------<838>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HansRosling_2007.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+told+you+that+the+statistics+of+the+world+have+not+been+made+properly+available
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+of+that+we+still+have+the+old+mindset+of+developing+in+industrialized+countries+which+is+wrong
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+animated+graphics+can+make+a+difference
error: request timeout
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+the+united+nations+statistic+division+home+page+it+says++by+first+of+may+full+access+to+the+databases+and
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+i+could+share+the+image+with+you+on+the+screen
found 8 videos: [['/talks/nicholas_negroponte_5_predictions_from_1984', '2008'], ['/talks/yochai_benkler_the_new_open_source_economics', '2008'], ['/talks/hans_rosling_new_insights_on_poverty', '2007'], ['/talks/jehane_noujaim_my_wish_a_global_day_of_film', '2006'], ['/talks/norman_foster_my_green_agenda_for_architecture', '2008'], ['/talks/franco_sacchi_a_tour_of_nollywood_nigeria_s_booming_film_industry', '2008'], ['/talks/al_seckel_visual_illusions_that_show_how_we_mis_think', '2007'], ['/talks/eames_demetrios_the_design_genius_of_charles_ray_eames', '2009']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+have+a+new+version+of+the+software+up+working+as+a+beta+on+the+net++so+you+don+t+have+to+download+it+any+longer++and+let+me+repeat+what+you+saw+last+year+the+bubbles+are+the+countries
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+you+have+the+fertility+rate+the+number+of+children+per+woman+and+there+you+have+the+length+of+life+in+years+this+is+one+thousand+nine+hundred+and+fifty+those+were+the+industrialized+countries+those+were+developing+countries+at+that+time+there+was+a
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+was+a+huge+difference+in+the+world++but+then+it+changed++and+it+it+went+on+quite+well+and+this+is+what+happens
found 13 videos: [['/talks/jeff_hawkins_how_brain_science_will_change_computing', '2007'], ['/talks/sherwin_nuland_how_electroshock_therapy_changed_me', '2007'], ['/talks/hans_rosling_let_my_dataset_change_your_mindset', '2009'], ['/talks/dan_gilbert_why_we_make_bad_decisions', '2008'], ['/talks/hans_rosling_new_insights_on_poverty', '2007'], ['/talks/hans_rosling_the_best_stats_you_ve_ever_seen', '2006'], ['/talks/bono_my_wish_three_actions_for_africa', '2006'], ['/talks/philip_rosedale_life_in_second_life', '2008'], ['/talks/gordon_brown_global_ethic_vs_national_interest', '2009'], ['/talks/rebecca_saxe_how_we_read_each_other_s_minds', '2009'], ['/talks/tim_brown_designers_think_big', '2009'], ['/talks/murray_gell_mann_beauty_truth_and_physics', '2007'], ['/talks/evelyn_glennie_how_to_truly_listen', '2007']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+see+how+china+is+the+red+big+bubble+the+blue+there+is+india++and+they+go+over+all+this+i+m+going+to+try+to+be+a+little+more+serious+this+year+in+showing+you+how
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+things+really+changed+and+it+s+africa+that+stands+out+as+the+problem+down+here+doesn+t+it+large+families+still
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+hiv+epidemic+brought+down+the+countries+like+this+this+is+more+or+less+what+we+saw+last+year+and+this+is+how+it+will+go+on+into+the+future
found 2 videos: [['/talks/hans_rosling_new_insights_on_poverty', '2007'], ['/talks/larry_brilliant_the_case_for_optimism', '2007']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+will+talk+on+is+this+possible++because+you+see+now+i+presented+statistics+that+don+t+exist++because+this+is+where+we+are
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=will+it+be+possible+that+this+will+happen
found 4 videos: [['/talks/nicholas_negroponte_5_predictions_from_1984', '2008'], ['/talks/rodney_brooks_robots_will_invade_our_lives', '2008'], ['/talks/lee_smolin_science_and_democracy', '2008'], ['/talks/robin_chase_the_idea_behind_zipcar_and_what_comes_next', '2008']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+cover+my+lifetime+here++you+know+i+expect+to+live+one+hundred+years++and+this+is+where+we+are+today+now+could+we
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=look+here+instead+at+the+economic+situation+in+the+world++and+i+would+like+to+show+that+against+child
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=survival+we+ll+swap+the+axis+here+you+have+child+mortality
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=survival+four+kids+dying+there+two+hundred+dying+there++and+this+is+gdp+per+capita+on+this+axis
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+was+two+thousand+and+seven++and+if+i+go+back+in+time++i+ve+added+some+historical+statistics+here+we+go+here+we+go+here+we+go
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+so+much+statistics+one+hundred+years+ago++some+countries+still+had+statistics+we+are+looking+down+in+the+archive+and+when+we+are+down
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+is+only+austria+and+sweden+that+can+produce+numbers
found 1 videos: [['/talks/hans_rosling_new_insights_on_poverty', '2007']]
selected: /talks/hans_rosling_new_insights_on_poverty
sleep 5 seconds to avoid blocking
------<839>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HansRosling_2009.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+gapminder+bubbles+show+you+how+the+spread+of+the+virus+was
found 1 videos: [['/talks/hans_rosling_insights_on_hiv_in_stunning_data_visuals', '2009']]
selected: /talks/hans_rosling_insights_on_hiv_in_stunning_data_visuals
sleep 2 seconds to avoid blocking
------<840>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HansRosling_2009I.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=once+upon+a+time+at+the+age+of
found 11 videos: [['/talks/c_k_williams_poetry_of_youth_and_age', '2009'], ['/talks/irwin_redlener_how_to_survive_a_nuclear_attack', '2008'], ['/talks/rick_smolan_the_story_of_a_girl', '2008'], ['/talks/scott_mccloud_the_visual_magic_of_comics', '2009'], ['/talks/ron_eglash_the_fractals_at_the_heart_of_african_designs', '2007'], ['/talks/stewart_brand_the_long_now', '2008'], ['/talks/bill_ford_a_future_beyond_traffic_gridlock', '2011'], ['/talks/billy_graham_on_technology_and_faith', '2008'], ['/talks/matthieu_ricard_the_habits_of_happiness', '2007'], ['/talks/eric_dishman_take_health_care_off_the_mainframe', '2010'], ['/talks/peter_ward_a_theory_of_earth_s_mass_extinctions', '2009']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+a+student+at++st+john+s+medical+college+in+bangalore
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+a+guest+student+during+one+month+of+a+public+health+course++and+that+changed+my+mindset+forever
found 1 videos: [['/talks/hans_rosling_asia_s_rise_how_and_when', '2009']]
selected: /talks/hans_rosling_asia_s_rise_how_and_when
sleep 2 seconds to avoid blocking
------<841>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HansRosling_2009S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+your+mindset+does+your+mindset+correspond+to+my+dataset
found 1 videos: [['/talks/hans_rosling_let_my_dataset_change_your_mindset', '2009']]
selected: /talks/hans_rosling_let_my_dataset_change_your_mindset
sleep 5 seconds to avoid blocking
------<842>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HansRosling_2010S.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+still+remember+the+day+in+school+when+our+teacher+told+us+that+the+world+population+had+become+three+billion+people
found 1 videos: [['/talks/hans_rosling_global_population_growth_box_by_box', '2010']]
selected: /talks/hans_rosling_global_population_growth_box_by_box
sleep 2 seconds to avoid blocking
------<843>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HansRosling_2010W.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=years+old+when+i+saw+my+mother+load+a+washing+machine+for+the+very+first+time+in+her+life+that+was+a+great+day+for+my+mother
found 2 videos: [['/talks/hans_rosling_the_magic_washing_machine', '2011'], ['/talks/john_maeda_my_journey_in_design', '2009']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+mother+and+father+had+been+saving+money+for+years+to+be+able+to+buy+that+machine++and+the+first+day+it+was+going+to+be+used+even+grandma
found 1 videos: [['/talks/hans_rosling_the_magic_washing_machine', '2011']]
selected: /talks/hans_rosling_the_magic_washing_machine
sleep 5 seconds to avoid blocking
------<844>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HansRosling_2010X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+are+here+today+because+[+the+]+united+nations+have+defined+goals+for+the+progress+of+countries++they+re+called+millennium+development+goals
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+reason+i+really+like+these+goals+is+that+there+are+eight+of+them
found 16 videos: [['/talks/drew_curtis_how_i_beat_a_patent_troll', '2012'], ['/talks/brenda_laurel_why_not_make_video_games_for_girls', '2009'], ['/talks/daniel_kahneman_the_riddle_of_experience_vs_memory', '2010'], ['/talks/todd_kuiken_a_prosthetic_arm_that_feels', '2011'], ['/talks/hans_rosling_the_good_news_of_the_decade_we_re_winning_the_war_against_child_mortality', '2010'], ['/talks/peter_saul_let_s_talk_about_dying', '2012'], ['/talks/philip_k_howard_four_ways_to_fix_a_broken_legal_system', '2010'], ['/talks/greg_stone_saving_the_ocean_one_island_at_a_time', '2010'], ['/talks/esther_duflo_social_experiments_to_fight_poverty', '2010'], ['/talks/bill_strickland_rebuilding_a_neighborhood_with_beauty_dignity_hope', '2008'], ['/talks/sugata_mitra_kids_can_teach_themselves', '2008'], ['/talks/simon_sinek_how_great_leaders_inspire_action', '2010'], ['/talks/pavan_sukhdev_put_a_value_on_nature', '2011'], ['/talks/nate_silver_does_racism_affect_how_you_vote', '2009'], ['/talks/diana_nyad_extreme_swimming_with_the_world_s_most_dangerous_jellyfish', '2012'], ['/talks/emily_pilloton_teaching_design_for_change', '2010']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=specifying+eight+different+goals+the+united+nations+has+said+that+there+are+so+many+things+needed
found 1 videos: [['/talks/hans_rosling_the_good_news_of_the_decade_we_re_winning_the_war_against_child_mortality', '2010']]
selected: /talks/hans_rosling_the_good_news_of_the_decade_we_re_winning_the_war_against_child_mortality
sleep 4 seconds to avoid blocking
------<845>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HansRosling_2012S.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+talk+about+religion++but+it+s+a+broad+and+very+delicate
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=subject++so+i+have+to+limit+myself++and+therefore+i+will+limit+myself+to+only+talk+about+the+links+between+religion+and+sexuality
found 1 videos: [['/talks/hans_rosling_religions_and_babies', '2012']]
selected: /talks/hans_rosling_religions_and_babies
sleep 1 seconds to avoid blocking
------<846>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HansRosling_2014S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=going+to+ask+you+three+multiple+choice+questions+use+this+device
found 4 videos: [['/talks/hans_and_ola_rosling_how_not_to_be_ignorant_about_the_world', '2014'], ['/talks/jer_thorp_make_data_more_human', '2012'], ['/talks/larry_page_where_s_google_going_next', '2014'], ['/talks/sam_harris_can_we_build_ai_without_losing_control_over_it', '2016']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=use+this+device+to+answer+the+first+question+is+how+did+the+number+of+deaths+per+year+from+natural
found 1 videos: [['/talks/hans_and_ola_rosling_how_not_to_be_ignorant_about_the_world', '2014']]
selected: /talks/hans_and_ola_rosling_how_not_to_be_ignorant_about_the_world
sleep 3 seconds to avoid blocking
------<847>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HaraldHaas_2011G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=do+you+know+that+we+have+one+point+four+million+cellular+radio+masts+deployed+worldwide
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+these+are+base+stations+and+we+also+have
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=more+than+five+billion+of+these+devices+here+these+are+cellular+mobile+phones
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+with+these+mobile+phones+we+transmit+more+than+six+hundred+terabytes+of+data+every+month+this+is+a+six+with+fourteen+zeroes+a+very+large+number
error: request timeout
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+utility+like+electricity+and+water++we+use+it+everyday+we+use+it+in+our+everyday+lives+now+in+our+private+lives+in+our+business+lives
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+be+asked+sometimes+very+kindly+to+switch+off+the+mobile+phone+at+events+like+this+for+good+reasons+and
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+this+importance+why+i+decided
found 3 videos: [['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013'], ['/talks/margaret_wertheim_the_beautiful_math_of_coral', '2009'], ['/talks/majora_carter_3_stories_of_local_eco_entrepreneurship', '2010']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+look+into+the+issues+that+this+technology+has+because+it+s+so+fundamental+to+our+lives++and+one+of+the+issues+is+capacity
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+way+we+transmit+wireless+data+is+by+using+electromagnetic+waves+in+particular+radio+waves
found 1 videos: [['/talks/harald_haas_wireless_data_from_every_light_bulb', '2011']]
selected: /talks/harald_haas_wireless_data_from_every_light_bulb
sleep 3 seconds to avoid blocking
------<848>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HaraldHaas_2015G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+would+like+to+demonstrate+for+the+first+time+in+public+that+it+is+possible+to+transmit+a+video+from+a+standard
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+is+no+wi+fi+involved+it+s+just+light+and+you+may+wonder+what+s+the+point++and+the+point+is+this
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+will+be+a+massive+extension+of+the+internet+to+close+the+digital+divide
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+also+to+allow+for+what+we+call+the+internet+of+things+tens+of+billions+of+devices+connected+to+the+internet
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+my+view++such+an+extension+of+the+internet
error: request timeout
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+means+we+need+to+use+existing+infrastructure+as+much+as+possible++and+this+is+where+the+solar+cell
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+led+come+in+i+demonstrated+for+the+first+time+at+ted+in+two+thousand+and+eleven
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=data+incredibly+fast+and+also+in+a+safe+and+secure+manner
found 2 videos: [['/talks/harald_haas_forget_wi_fi_meet_the_new_li_fi_internet', '2015'], ['/talks/jamie_bartlett_how_the_mysterious_dark_net_is_going_mainstream', '2015']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=data+is+transported+by+the+light+encoded+in+subtle+changes+of+the+brightness
found 1 videos: [['/talks/harald_haas_forget_wi_fi_meet_the_new_li_fi_internet', '2015']]
selected: /talks/harald_haas_forget_wi_fi_meet_the_new_li_fi_internet
sleep 5 seconds to avoid blocking
------<849>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HarishManwani_2013S.stm
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+economic+model+that+you+and+i+did+business+in+and+in+fact+continue+to+do+business+in+was+built+around+what+probably+milton+friedman
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+adam+smith+of+course+the+father+of+modern+economics+actually+said
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=many+many+years+ago+the+invisible+hand+which+is+if+you+continue+to+operate+in+your+own++self+interest+you+will+do+the+best+good+for+society
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+capitalism+has+done+a+lot+of+good+things
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+ve+talked+about+a+lot+of+good+things+that+have+happened++but+equally+it+has+not+been+able+to+meet+up+with+some+of+the+challenges+that+we+ve+seen+in+society
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+at+least+i+was+brought+up+in+and+a+lot+of+us+doing+business+were+brought+up+in
found 6 videos: [['/talks/harish_manwani_profit_s_not_always_the_point', '2014'], ['/talks/cesar_harada_a_novel_idea_for_cleaning_up_oil_spills', '2012'], ['/talks/theaster_gates_how_to_revive_a_neighborhood_with_imagination_beauty_and_art', '2015'], ['/talks/jim_simons_the_mathematician_who_cracked_wall_street', '2015'], ['/talks/andrew_solomon_depression_the_secret_we_share', '2013'], ['/talks/bruce_feiler_agile_programming_for_your_family', '2013']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+one+which+talked+about+what+i+call+the+three+g+s+of+growth
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=growth+that+is+consistent++quarter+on+quarter+growth+that+is+competitive++better+than+the+other+person++and+growth+that+is+profitable+so+you+continue+to+make+more+and+more+shareholder+value
found 1 videos: [['/talks/harish_manwani_profit_s_not_always_the_point', '2014']]
selected: /talks/harish_manwani_profit_s_not_always_the_point
sleep 5 seconds to avoid blocking
------<850>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HarryBaker_2014X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+name+is+harry+baker+harry+baker+is+my+name+if+your+name+was+harry+baker+then+our+names+would+be+the+same
found 2 videos: [['/talks/harry_baker_a_love_poem_for_lonely_prime_numbers', '2015'], ['/talks/aris_venetikidis_making_sense_of_maps', '2012']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+the+wrong+side+of+the+bed
found 12 videos: [['/talks/scott_fraser_why_eyewitnesses_get_it_wrong', '2012'], ['/talks/roberto_d_angelo_francesca_fedeli_in_our_baby_s_illness_a_life_lesson', '2013'], ['/talks/david_pizarro_the_strange_politics_of_disgust', '2012'], ['/talks/harry_baker_a_love_poem_for_lonely_prime_numbers', '2015'], ['/talks/elyn_saks_a_tale_of_mental_illness_from_the_inside', '2012'], ['/talks/jon_mooallem_how_the_teddy_bear_taught_us_compassion', '2014'], ['/talks/uri_alon_why_science_demands_a_leap_into_the_unknown', '2014'], ['/talks/shane_koyczan_to_this_day_for_the_bullied_and_beautiful', '2013'], ['/talks/tania_simoncelli_should_you_be_able_to_patent_a_human_gene', '2016'], ['/talks/anant_agarwal_why_massive_open_online_courses_still_matter', '2014'], ['/talks/esther_perel_rethinking_infidelity_a_talk_for_anyone_who_has_ever_loved', '2015'], ['/talks/bruce_feiler_agile_programming_for_your_family', '2013']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=realizes+all+his+hair+is+on+one+side+of+his+head+takes+just+under+a+minute+to+work+out+that+its+because+of+the+way+that+he+slept+he+finds+some+clothes+and+gets+dressed
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+cant+help+but+look+in+the+mirror+and+be+subtly+impressed+how+he+looks+rough+around+the+edges+and+yet+casually+messed+and+as+he+glances+out+the+window+he+sees+the+sight+that+he+gets+blessed+with+of+sixty+from+across+the+street
error: request timeout
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=perfectly+trimmed+cuticles+dressed+in+something+suitable+never+rude+or+crude+at+all+unimprovable+right+on+time+as+usual+more+on+cue+than+a+snooker+ball+but
error: request timeout
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fifty+nine+wanted+to+tell+her+that+he+knew+her+favorite+flower
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+thought+of+her+every+second+every+minute+every+hour+but+he+knew+it+wouldnt+work+hed+never+get+the+girl+because+although+she+lived+across+the+street+they+came+from+different
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+one+hundred+and+one+dalmatians+she+preferred+the+sequel
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+romanticized+the+idea+they+were+star+crossed+lovers+they+could+overcome+the+odds+and+evens+because+they+had+each+other+while+she+maintained+the+strict+views+imposed+on+her+by+her+mother+that+separate+could+not+be+equal
found 1 videos: [['/talks/harry_baker_a_love_poem_for_lonely_prime_numbers', '2015']]
selected: /talks/harry_baker_a_love_poem_for_lonely_prime_numbers
sleep 2 seconds to avoid blocking
------<851>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HarryCliff_2015G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+hundred+years+ago+this+month
found 16 videos: [['/talks/eric_dishman_health_care_should_be_a_team_sport', '2013'], ['/talks/jack_conte_how_artists_can_finally_get_paid_in_the_digital_age', '2017'], ['/talks/eric_x_li_a_tale_of_two_political_systems', '2013'], ['/talks/al_gore_the_case_for_optimism_on_climate_change', '2016'], ['/talks/andres_lozano_parkinson_s_depression_and_the_switch_that_might_turn_them_off', '2013'], ['/talks/gautam_bhan_a_bold_plan_to_house_100_million_people', '2017'], ['/talks/luma_mufleh_don_t_feel_sorry_for_refugees_believe_in_them', '2017'], ['/talks/neha_narula_the_future_of_money', '2016'], ['/talks/mandy_len_catron_falling_in_love_is_the_easy_part', '2015'], ['/talks/haas_hahn_how_painting_can_transform_communities', '2014'], ['/talks/steve_howard_let_s_go_all_in_on_selling_sustainability', '2013'], ['/talks/janette_sadik_khan_new_york_s_streets_not_so_mean_any_more', '2013'], ['/talks/harry_cliff_have_we_reached_the_end_of_physics', '2016'], ['/talks/sarah_parcak_help_discover_ancient_ruins_before_it_s_too_late', '2017'], ['/talks/jim_yong_kim_doesn_t_everyone_deserve_a_chance_at_a_good_life', '2017'], ['/talks/myriam_sidibe_the_simple_power_of_hand_washing', '2014']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=albert+einstein+stood+up+in+front+of+the+prussian+academy+of+sciences+in+berlin+to+present+a+radical+new+theory+of+space+time+and+gravity+the+general+theory+of+relativity
found 1 videos: [['/talks/harry_cliff_have_we_reached_the_end_of_physics', '2016']]
selected: /talks/harry_cliff_have_we_reached_the_end_of_physics
sleep 3 seconds to avoid blocking
------<852>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HarshaBhogle_2009I.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+i+m+going+to+do+is+just+give+you+the+latest+episode+of+india+s+maybe+the+world+s+longest+running+soap+opera
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+is+cricket+and+may+it+run+forever+because+it+gives+people+like+me+a+living
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+got+everything+that+you+d+want+a+normal+soap+opera+to+want+it+s+got+love
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=joy+happiness+sadness+tears+laughter++lots+of+deceit+intrigue+and+like+all+good+soaps+it+jumps+twenty+years+when+the+audience+interest+changes
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+s+exactly+what+cricket+has+done++it+s+jumped+twenty+years+into+20+over+game
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+s+what+i+m+going+to+talk+about+how+a+small+change+leads+to+a
found 1 videos: [['/talks/harsha_bhogle_the_rise_of_cricket_the_rise_of_india', '2010']]
selected: /talks/harsha_bhogle_the_rise_of_cricket_the_rise_of_india
sleep 3 seconds to avoid blocking
------<853>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HarveyFineberg_2011.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+would+you+like+to+be+better+than+you+are+suppose+i+said+that+with+just+a+few+changes+in+your+genes+you+could+get+a+better+memory
found 1 videos: [['/talks/harvey_fineberg_are_we_ready_for_neo_evolution', '2011']]
selected: /talks/harvey_fineberg_are_we_ready_for_neo_evolution
sleep 1 seconds to avoid blocking
------<854>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HasanElahi_2011G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+usually+when+i+tell+people+i+m+an+artist+they
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=just+look+at+me+and+say+do+you+paint+or+what+kind+of+medium+do+you+work+in+well+most+of+my+work+that+i+work+with+is+really+a
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=little+bit+about+methodologies+of+working+rather+than+actually
error: request timeout
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+what+i+m+really+interested+in+is+creative+problem+solving++and+i+had+a+little+bit+of+a+problem+a+few+years+ago+so+let+me+show+you+a+little+of+that
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+it+started+over+here+and+this+is+the+detroit+airport+in+june+19th+of+two+thousand+and+two
found 1 videos: [['/talks/hasan_elahi_fbi_here_i_am', '2011']]
selected: /talks/hasan_elahi_fbi_here_i_am
sleep 2 seconds to avoid blocking
------<855>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HeatherBarnett_2014S.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+a+mold+with+an+identity+crisis+because+it+s+not+a+mold+so+let+s+get+that+straight+to+start+with+it+is+one+of+seven+hundred+known+slime+molds+belonging+to+the+kingdom+of+the+amoeba
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=organism++a+cell+that+joins+together+with+other+cells+to+form+a+mass+super+cell+to+maximize+its+resources
found 1 videos: [['/talks/heather_barnett_what_humans_can_learn_from_semi_intelligent_slime', '2014']]
selected: /talks/heather_barnett_what_humans_can_learn_from_semi_intelligent_slime
sleep 1 seconds to avoid blocking
------<856>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HeatherBrooke_2012G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+run+by+the+great+and+powerful+parents++and+the+people+were+helpless+and+hopeless+naughty+children
found 1 videos: [['/talks/heather_brooke_my_battle_to_expose_government_corruption', '2012']]
selected: /talks/heather_brooke_my_battle_to_expose_government_corruption
sleep 5 seconds to avoid blocking
------<857>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HeatherKnight_2010W.stm
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+world+often+happen+at+the+intersection+of+two+fields++so+tonight+i+d+like+to+tell+you+about+the+intersection+that+i+m+most+excited+about+at+this+very+moment+which+is+entertainment
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+we+re+trying+to+make+robots+that+can+be+more+expressive+and+that+can+connect+better+with+us+in+society++maybe+we+should+look+to+some+of+the+human+professionals+of+artificial+emotion+and+personality
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+occur+in+the+dramatic+arts+i+m+also+interested+in+creating+new+technologies+for+the+arts
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=marilyn+monrobot++i+would+like+to+use+art+to+create+tech
found 1 videos: [['/talks/heather_knight_silicon_based_comedy', '2011']]
selected: /talks/heather_knight_silicon_based_comedy
sleep 3 seconds to avoid blocking
------<858>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HectorGarcia_2015P.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+vietnam+vet+marine+who+volunteered+for+three+tours+and+got+shot+up+in+every+one+in+one+thousand
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=nine+hundred+and+seventy+one+he+was+medically+retired+because+he+had+so+much+shrapnel+in+his+body+that+he+was+setting+off+metal+detectors+for+the+next
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=from+nightmares++extreme+anxiety+in+public++isolation+depression
found 1 videos: [['/talks/hector_garcia_we_train_soldiers_for_war_let_s_train_them_to_come_home_too', '2016']]
selected: /talks/hector_garcia_we_train_soldiers_for_war_let_s_train_them_to_come_home_too
sleep 4 seconds to avoid blocking
------<859>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HectorRuiz_2007G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+to+say+upfront+is+that+i+m+really+here+by+accident++and+what+i+mean+not+at+ted+that
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+at+this+point+in+my+life+truly+my+set+of+circumstances+i+would+truly+consider+an+accident++but+what+i+d+like+to+talk+to+you
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+today+is+perhaps+a+way+in+which+we+could+use+technology
found 6 videos: [['/talks/geoff_mulgan_post_crash_investing_in_a_better_world', '2009'], ['/talks/rebecca_saxe_how_we_read_each_other_s_minds', '2009'], ['/talks/aubrey_de_grey_a_roadmap_to_end_aging', '2006'], ['/talks/alan_russell_the_potential_of_regenerative_medicine', '2007'], ['/talks/paul_maccready_nature_vs_humans', '2008'], ['/talks/p_w_singer_military_robots_and_the_future_of_war', '2009']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+make+those+accidents+happen+often
found 9 videos: [['/talks/hector_ruiz_the_thinking_behind_50x15', '2008'], ['/talks/murray_gell_mann_beauty_truth_and_physics', '2007'], ['/talks/alain_de_botton_a_kinder_gentler_philosophy_of_success', '2009'], ['/talks/amy_tan_where_does_creativity_hide', '2008'], ['/talks/stephen_petranek_10_ways_the_world_could_end', '2007'], ['/talks/marc_pachter_the_art_of_the_interview', '2009'], ['/talks/rebecca_saxe_how_we_read_each_other_s_minds', '2009'], ['/talks/bjarke_ingels_3_warp_speed_architecture_tales', '2009'], ['/talks/gever_tulley_5_dangerous_things_you_should_let_your_kids_do', '2007']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+i+really+think+when+i+look+back+at+how+i+actually+ended+up
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+this+accident+technology+played+a+big+role+in+that+so+what+i+d+like
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=today+is+tell+you+a+little+bit+about+myself+because+i+d+like+to+put+in+context+what+i+m+going+to+tell+you++and+i+think+you+will+see+why
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+two+greatest+passions+in+my+life+today+are+children+and+education++and
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=once+i+put+that+in+context+i+d+like+to+tell+you+a+little+bit+about+technology+why+i+believe+technology+is+a+tremendous+enabler+a+very+powerful+tool+to+help
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=address+some+of+these+challenges+then+about+the+initiative+that+chris+mentioned+that+we+decided+to+launch+at+amd+that+we+call
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+i+ll+come+back+to+the+beginning+and+tell+you+a+little+bit+more+hopefully
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=convince+you+that+i+believe+that+in+today+s+world++it+is+really+important+for+business+leaders
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+only+to+have+an+idea+of+what+their+business+is+all+about+but+to+have+a+passion
found 8 videos: [['/talks/mihaly_csikszentmihalyi_flow_the_secret_to_happiness', '2008'], ['/talks/david_s_rose_how_to_pitch_to_a_vc', '2008'], ['/talks/liz_coleman_a_call_to_reinvent_liberal_arts_education', '2009'], ['/talks/jonathan_drori_what_we_think_we_know', '2008'], ['/talks/yves_behar_designing_objects_that_tell_stories', '2008'], ['/talks/neil_gershenfeld_unleash_your_creativity_in_a_fab_lab', '2007'], ['/talks/paula_scher_great_design_is_serious_not_solemn', '2009'], ['/talks/hector_ruiz_the_thinking_behind_50x15', '2008']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+something+that+is+meaningful+so+with+that+in+mind+first+of+all+let+me+tell+you
found 4 videos: [['/talks/dan_pink_the_puzzle_of_motivation', '2009'], ['/talks/hector_ruiz_the_thinking_behind_50x15', '2008'], ['/talks/dan_gilbert_the_surprising_science_of_happiness', '2006'], ['/talks/nicholas_negroponte_5_predictions_from_1984', '2008']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=m+one+of+five+children+i+m+the+oldest+the+other+four+are+women++so+i+grew+up+in+a+family+of+women++i+learned+a+lot+about+how+to+deal+with
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=laughter+and+as+you+can+imagine+if+you+can+picture+this+i+was+born+in+a+very+small+village+in+mexico
found 1 videos: [['/talks/hector_ruiz_the_thinking_behind_50x15', '2008']]
selected: /talks/hector_ruiz_the_thinking_behind_50x15
sleep 3 seconds to avoid blocking
------<860>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HelderGuimaraes_2014.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+to+start+my+performance+by+saying+ninety+percent+of+everything+is+crap
found 1 videos: [['/talks/helder_guimaraes_a_magical_search_for_a_coincidence', '2015']]
selected: /talks/helder_guimaraes_a_magical_search_for_a_coincidence
sleep 3 seconds to avoid blocking
------<861>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HelenFisher_2006.stm
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=biggest+social+trends+in+the+coming+century+and+perhaps+in+the+next+ten+thousand+years
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+want+to+start+with+my+work+on+romantic+love+because+that+s+my+most+recent+work+what+i+and+my+colleagues+did+was
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=put+thirty+two+people+who+were+madly+in+love++into+a+functional+mri+brain+scanner
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=seventeen+who+were+madly+in+love+and+their+love+was+accepted+and+fifteen+who+were+madly+in+love+and+they+had+just+been+dumped
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+i+want+to+tell+you+about+that+first++and+then+go+on+into+where+i+think+love+is+going
found 2 videos: [['/talks/helen_fisher_the_brain_in_love', '2008'], ['/talks/clifford_stoll_the_call_to_learn', '2008']]
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+human+beings+have+been+wondering+about+this+question+since+they+sat+around+their+campfires+or+lay+and+watched+the+stars+a+million+years+ago
found 1 videos: [['/talks/helen_fisher_why_we_love_why_we_cheat', '2006']]
selected: /talks/helen_fisher_why_we_love_why_we_cheat
sleep 3 seconds to avoid blocking
------<862>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HelenFisher_2008.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+and+my+colleagues+art+aron+and+lucy+brown+and+others+have+put+thirty+seven+people+who+are+madly+in+love+into+a+functional+mri+brain+scanner
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=seventeen+who+were+happily+in+love++fifteen+who+had+just+been+dumped++and+we+re+just+starting+our+third+experiment++studying+people+who+report+that+they+re+still+in+love
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=after+ten+to+twenty+five+years+of+marriage+so+this+is+the+short+story+of+that+research
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+jungles+of+guatemala+in+tikal+stands+a+temple
found 1 videos: [['/talks/helen_fisher_the_brain_in_love', '2008']]
selected: /talks/helen_fisher_the_brain_in_love
sleep 1 seconds to avoid blocking
------<863>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HelenFisher_2016T.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+recently+traveling+in+the+highlands+of+new+guinea
found 1 videos: [['/talks/helen_fisher_technology_hasn_t_changed_love_here_s_why', '2016']]
selected: /talks/helen_fisher_technology_hasn_t_changed_love_here_s_why
sleep 2 seconds to avoid blocking
------<864>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HendrikPoinar_2013X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+was+a+young+boy++i+used+to+gaze+through+the+microscope+of+my+father
found 3 videos: [['/talks/hendrik_poinar_bring_back_the_woolly_mammoth', '2013'], ['/talks/jonathan_eisen_meet_your_microbes', '2012'], ['/talks/michael_archer_how_we_ll_resurrect_the_gastric_brooding_frog_the_tasmanian_tiger', '2013']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+the+insects+in+amber+that+he+kept+in+the+house+and+they+were+remarkably+well+preserved+morphologically+just+phenomenal
found 1 videos: [['/talks/hendrik_poinar_bring_back_the_woolly_mammoth', '2013']]
selected: /talks/hendrik_poinar_bring_back_the_woolly_mammoth
sleep 4 seconds to avoid blocking
------<865>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HenryEvans_2013X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+the+way+from+los+altos+hills+california+mr+henry+evans
found 1 videos: [['/talks/henry_evans_and_chad_jenkins_meet_the_robots_for_humanity', '2013']]
selected: /talks/henry_evans_and_chad_jenkins_meet_the_robots_for_humanity
sleep 5 seconds to avoid blocking
------<866>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HenryLin_2013Y.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+some+images+of+clusters+of+galaxies++they+re+exactly+what+they+sound+like++they+are+these+huge+collections+of+galaxies++bound+together+by+their+mutual+gravity++so+most+of+the+points+that+you+see+on+the
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+collections+of+stars+or+galaxies
found 3 videos: [['/talks/henry_lin_what_we_can_learn_from_galaxies_far_far_away', '2014'], ['/talks/brian_greene_is_our_universe_the_only_universe', '2012'], ['/talks/sara_seager_the_search_for_planets_beyond_our_solar_system', '2015']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+by+showing+you+some+of+these+images+i+hope+that+you+will+quickly+see+that+galaxy+clusters+are+these+beautiful+objects++but+more+than+that+i+think+galaxy+clusters+are+mysterious++they+are+surprising
found 1 videos: [['/talks/henry_lin_what_we_can_learn_from_galaxies_far_far_away', '2014']]
selected: /talks/henry_lin_what_we_can_learn_from_galaxies_far_far_away
sleep 5 seconds to avoid blocking
------<867>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HenryMarkram_2009G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=our+mission+is+to+build+a+detailed++realistic+computer+model+of+the+human+brain++and
found 1 videos: [['/talks/henry_markram_a_brain_in_a_supercomputer', '2009']]
selected: /talks/henry_markram_a_brain_in_a_supercomputer
sleep 5 seconds to avoid blocking
------<868>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HeribertWatzke_2010G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+very+important+impact+on+us+it+changed+the+way+our+history+developed++but+it+s+a+technology+so+pervasive+so
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+take+it+into+account+when+we+talked+about+human
found 10 videos: [['/talks/jody_williams_a_realistic_vision_for_world_peace', '2011'], ['/talks/michael_pollan_a_plant_s_eye_view', '2008'], ['/talks/heribert_watzke_the_brain_in_your_gut', '2010'], ['/talks/markham_nolan_how_to_separate_fact_and_fiction_online', '2012'], ['/talks/seth_berkley_hiv_and_flu_the_vaccine_strategy', '2010'], ['/talks/pamela_meyer_how_to_spot_a_liar', '2011'], ['/talks/paul_romer_why_the_world_needs_charter_cities', '2009'], ['/talks/gordon_brown_global_ethic_vs_national_interest', '2009'], ['/talks/mike_rowe_learning_from_dirty_jobs', '2009'], ['/talks/william_li_can_we_eat_to_starve_cancer', '2010']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=evolution++but+we+see+the+results+of+this+technology+still+so+let+s+make+a+little+test
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+everyone+of+you+turns+to+their+neighbor
found 8 videos: [['/talks/heribert_watzke_the_brain_in_your_gut', '2010'], ['/talks/paul_romer_why_the_world_needs_charter_cities', '2009'], ['/talks/john_hunter_teaching_with_the_world_peace_game', '2011'], ['/talks/david_pogue_cool_tricks_your_phone_can_do', '2009'], ['/talks/nicholas_christakis_how_social_networks_predict_epidemics', '2010'], ['/talks/jane_mcgonigal_the_game_that_can_give_you_10_extra_years_of_life', '2012'], ['/talks/sam_richards_a_radical_experiment_in_empathy', '2011'], ['/talks/read_montague_what_we_re_learning_from_5_000_brains', '2012']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=please++turn+and+face+your+neighbors++please+also+on+the+balcony
found 1 videos: [['/talks/heribert_watzke_the_brain_in_your_gut', '2010']]
selected: /talks/heribert_watzke_the_brain_in_your_gut
sleep 3 seconds to avoid blocking
------<869>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HetainPatel_2013G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=working+with+i+have+asked+her+to+translate+for+me
found 11 videos: [['/talks/hetain_patel_who_am_i_think_again', '2013'], ['/talks/wayne_mcgregor_a_choreographer_s_creative_process_in_real_time', '2012'], ['/talks/ann_morgan_my_year_reading_a_book_from_every_country_in_the_world', '2015'], ['/talks/cynthia_breazeal_the_rise_of_personal_robots', '2011'], ['/talks/anders_ynnerman_visualizing_the_medical_data_explosion', '2011'], ['/talks/luis_von_ahn_massive_scale_online_collaboration', '2011'], ['/talks/chris_domas_the_1s_and_0s_behind_cyber_warfare', '2014'], ['/talks/paul_pholeros_how_to_reduce_poverty_fix_homes', '2013'], ['/talks/alejandro_aravena_my_architectural_philosophy_bring_the_community_into_the_process', '2014'], ['/talks/mark_ronson_how_sampling_transformed_music', '2014'], ['/talks/scilla_elworthy_fighting_with_nonviolence', '2012']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=england+but+i+m+not+going+to+say+it+in+english+to+you
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+i+m+trying+to+avoid+any+assumptions+that+might+be+made+from+my+northern+accent
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=mandarin+is+i+can+only+speak+this+paragraph+which+i+have+learned+by+heart+when+i+was+visiting+in+china
found 1 videos: [['/talks/hetain_patel_who_am_i_think_again', '2013']]
selected: /talks/hetain_patel_who_am_i_think_again
sleep 1 seconds to avoid blocking
------<870>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HilaryCottam_2015G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+tell+you+three+stories
found 17 videos: [['/talks/stephen_cave_the_4_stories_we_tell_ourselves_about_death', '2013'], ['/talks/janine_di_giovanni_what_i_saw_in_the_war', '2013'], ['/talks/jonathan_tepperman_the_risky_politics_of_progress', '2016'], ['/talks/shonda_rhimes_and_cyndi_stivers_the_future_of_storytelling', '2017'], ['/talks/jude_kelly_why_women_should_tell_the_stories_of_humanity', '2017'], ['/talks/mia_birdsong_the_story_we_tell_about_poverty_isn_t_true', '2015'], ['/talks/reshma_saujani_teach_girls_bravery_not_perfection', '2016'], ['/talks/giorgia_lupi_how_we_can_find_ourselves_in_data', '2017'], ['/talks/casey_brown_know_your_worth_and_then_ask_for_it', '2017'], ['/talks/lara_setrakian_3_ways_to_fix_a_broken_news_industry', '2017'], ['/talks/lidia_yuknavitch_the_beauty_of_being_a_misfit', '2016'], ['/talks/martin_pistorius_how_my_mind_came_back_to_life_and_no_one_knew', '2015'], ['/talks/elizabeth_lev_the_unheard_story_of_the_sistine_chapel', '2016'], ['/talks/sisonke_msimang_if_a_story_moves_you_act_on_it', '2017'], ['/talks/anas_aremeyaw_anas_how_i_named_shamed_and_jailed', '2013'], ['/talks/wes_moore_how_to_talk_to_veterans_about_war', '2014'], ['/talks/gretchen_carlson_how_we_can_end_sexual_harassment_at_work', '2017']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+the+power+of+relationships+to+solve+the+deep+and+complex+social+problems+of+this+century+you+know++sometimes+it+seems+like+all+these+problems+of
found 1 videos: [['/talks/hilary_cottam_social_services_are_broken_how_we_can_fix_them', '2015']]
selected: /talks/hilary_cottam_social_services_are_broken_how_we_can_fix_them
sleep 4 seconds to avoid blocking
------<871>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HillelCooperman_2010U.stm
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+dark+ages+are+the+time+between+when+you+put+away+the+lego+for+the+last+time+as+a+kid++and+you+decide+as+an+adult+that+it+is+okay+to+play+with+a+kid+s+toy
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=should+buy+the+kid+some+lego+that+stuff+s+cool+walked+into+the+lego+store++bought+him
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+it+s+totally+appropriate+for+a+four+year+old+i
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=think+the+box+says+let+s+see+here+eight
found 5 videos: [['/talks/regina_dugan_from_mach_20_glider_to_hummingbird_drone', '2012'], ['/talks/bill_strickland_rebuilding_a_neighborhood_with_beauty_dignity_hope', '2008'], ['/talks/ellen_dunham_jones_retrofitting_suburbia', '2010'], ['/talks/bruce_feiler_the_council_of_dads', '2011'], ['/talks/dan_gilbert_why_we_make_bad_decisions', '2008']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=turn+to+my+wife+and+said+who+are+we+buying+this+for+she+s+like+oh+us+i+m+like+okay+all+right+that+s+cool+pretty+soon+it+got+a+little+bit+out+of+control
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+dining+room+looked+like+this+you+walk+there+and+it+hurts
found 2 videos: [['/talks/hillel_cooperman_lego_for_grownups', '2010'], ['/talks/sarah_kay_if_i_should_have_a_daughter', '2011']]
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+took+a+room+downstairs+in+the+basement+that+had+been+used+as+sort+of+an+abu+ghraib+annex
found 1 videos: [['/talks/hillel_cooperman_lego_for_grownups', '2010']]
selected: /talks/hillel_cooperman_lego_for_grownups
sleep 1 seconds to avoid blocking
------<872>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HisHolinessTheKarmapa_2009I.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+way+i+feel+right+now+is+that+all+of+the+other
found 5 videos: [['/talks/stewart_brand_the_long_now', '2008'], ['/talks/eve_ensler_embrace_your_inner_girl', '2010'], ['/talks/clifford_stoll_the_call_to_learn', '2008'], ['/talks/frank_gehry_a_master_architect_asks_now_what', '2008'], ['/talks/david_mccandless_the_beauty_of_data_visualization', '2010']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=speakers+have+said+exactly+what+i+wanted+to+say
found 13 videos: [['/talks/woody_norris_hypersonic_sound_and_other_inventions', '2009'], ['/talks/his_holiness_the_karmapa_the_technology_of_the_heart', '2010'], ['/talks/mathieu_lehanneur_science_inspired_design', '2009'], ['/talks/dave_debronkart_meet_e_patient_dave', '2011'], ['/talks/margaret_wertheim_the_beautiful_math_of_coral', '2009'], ['/talks/dan_gilbert_why_we_make_bad_decisions', '2008'], ['/talks/jeff_bezos_the_electricity_metaphor_for_the_web_s_future', '2007'], ['/talks/philip_rosedale_life_in_second_life', '2008'], ['/talks/wadah_khanfar_a_historic_moment_in_the_arab_world', '2011'], ['/talks/patricia_ryan_don_t_insist_on_english', '2011'], ['/talks/tim_ferriss_smash_fear_learn_anything', '2009'], ['/talks/gordon_brown_global_ethic_vs_national_interest', '2009'], ['/talks/lawrence_lessig_re_examining_the_remix', '2010']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+seems+that+the+only+thing+left+for+me+to+say+is+to+thank+you+all+for+your+kindness
found 9 videos: [['/talks/chris_abani_on_humanity', '2008'], ['/talks/robert_thurman_expanding_your_circle_of_compassion', '2008'], ['/talks/matthieu_ricard_the_habits_of_happiness', '2007'], ['/talks/his_holiness_the_karmapa_the_technology_of_the_heart', '2010'], ['/talks/barry_schwartz_our_loss_of_wisdom', '2009'], ['/talks/jonathan_zittrain_the_web_as_random_acts_of_kindness', '2009'], ['/talks/krista_tippett_reconnecting_with_compassion', '2011'], ['/talks/nicholas_christakis_the_hidden_influence_of_social_networks', '2010'], ['/talks/mark_bittman_what_s_wrong_with_what_we_eat', '2008']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+maybe+in+the+spirit+of+appreciating+the+kindness+of+you+all+i+could+share+with+you+a+little+story+about+myself
found 1 videos: [['/talks/his_holiness_the_karmapa_the_technology_of_the_heart', '2010']]
selected: /talks/his_holiness_the_karmapa_the_technology_of_the_heart
sleep 1 seconds to avoid blocking
------<873>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HodLipson_2007.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=where+are+the+robots+we+ve+been+told+for+forty+years+already+that+they+re+coming+soon+very+soon+they+ll
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=be+doing+everything+for+us+they+ll+be+cooking+cleaning++buying+things+shopping+building+but+they+aren
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=illegal+immigrants+doing+all+the+work+but+we+don+t+have+any+robots++so+what+can+we
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=can+we+do+about+that+what+can+we+say++so+i+want+to+give+a+a+little+bit+of+a+different+perspective+of
found 3 videos: [['/talks/alan_kay_a_powerful_idea_about_ideas', '2008'], ['/talks/sasa_vucinic_why_we_should_invest_in_a_free_press', '2006'], ['/talks/paul_ewald_can_we_domesticate_germs', '2008']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+we+can+perhaps+look+at+these+things+in+a+little+bit+of+a+different+way++and+this+is+an+x+ray+picture+of+a+real+beetle+and+a+swiss+watch+back+from++eighty+eight
found 1 videos: [['/talks/hod_lipson_building_self_aware_robots', '2007']]
selected: /talks/hod_lipson_building_self_aware_robots
sleep 1 seconds to avoid blocking
------<874>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HollyMorris_2013G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=three+years+ago++i+was+standing+about+a+hundred+yards+from+chernobyl+nuclear+reactor+number+four
found 1 videos: [['/talks/holly_morris_why_stay_in_chernobyl_because_it_s_home', '2013']]
selected: /talks/holly_morris_why_stay_in_chernobyl_because_it_s_home
sleep 1 seconds to avoid blocking
------<875>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HomaroCantu_2011.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+re+chefs++so+when+moto+opened+in+two+thousand+and+four+people+didn+t+really+know+what+to+expect+a+lot+of+people+thought+that+it+was+a+japanese+restaurant+and+maybe+it+was+the+name
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=requests+for+japanese+food+which+is+really+not+what+we+did++and+after+about+the+ten+thousandth+request+for+a+maki+roll++we+decided+to+give+the+people+what+they+wanted++so+this+picture+is+an+example+of+printed+food+and+this+was+the+first+foray+into+what+we+like+to+call+flavor+transformation
found 1 videos: [['/talks/homaro_cantu_ben_roche_cooking_as_alchemy', '2011']]
selected: /talks/homaro_cantu_ben_roche_cooking_as_alchemy
sleep 3 seconds to avoid blocking
------<876>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HonorHarger_2011S.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+all+know+what+it+looks+like++we+ve+been+surrounded+by+images+of+space+our+whole+lives+from+the+speculative+images+of+science+fiction
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+the+inspirational+visions+of+artists
found 1 videos: [['/talks/honor_harger_a_history_of_the_universe_in_sound', '2011']]
selected: /talks/honor_harger_a_history_of_the_universe_in_sound
sleep 3 seconds to avoid blocking
------<877>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HowardRheingold_2005.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+here+to+enlist+you
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+helping+reshape+the+story+about+how+humans+and+other+critters+get+things
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+is+the+old+story+we+ve+already+heard+a+little+bit+about+it++biology
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+which+only+the+fiercest+survive+businesses
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+defeating++destroying+and+dominating
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+think+we+can+see+the+very+beginnings+of+a+new+story+beginning+to+emerge
found 3 videos: [['/talks/zeresenay_alemseged_the_search_for_humanity_s_roots', '2007'], ['/talks/tom_honey_why_would_god_create_a_tsunami', '2007'], ['/talks/thomas_barnett_let_s_rethink_america_s_military_strategy', '2007']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+a+narrative+spread+across
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=survival+of+the+fittest+shrinks+just+a+little+bit+to+make+room
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+started+thinking+about+the+relationship+between
found 3 videos: [['/talks/emily_oster_flip_your_thinking_on_aids_in_africa', '2007'], ['/talks/eve_ensler_happiness_in_body_and_soul', '2006'], ['/talks/malcolm_gladwell_choice_happiness_and_spaghetti_sauce', '2006']]
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=collective+action+when+i+wrote+smart+mobs+and+i+found+that+when+i+finished+the+book+i+kept+thinking+about+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+fact++if+you+look+back
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+ways+in+which+we+organize
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+quite+a+long+time+humans+have+lived+for+much+much+longer+than+the+approximately+ten+thousand+years+of
error: request timeout
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+small+family+groups++nomadic+hunters+bring+down+rabbits+gathering+food
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+form+of+wealth+in+those+days+was+enough+food+to+stay+alive
found 2 videos: [['/talks/bill_clinton_my_wish_rebuilding_rwanda', '2007'], ['/talks/majora_carter_greening_the_ghetto', '2006']]
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+banded+together+to+hunt+bigger+game+and+we+don+t+know+exactly+how+they+did+this+although
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+must+have+solved+some+collective+action+problems
found 1 videos: [['/talks/james_nachtwey_my_wish_let_my_photographs_bear_witness', '2007']]
selected: /talks/james_nachtwey_my_wish_let_my_photographs_bear_witness
sleep 5 seconds to avoid blocking
------<878>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HubertusKnabe_2014S.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=communist+regime+was+moved+away+the+berlin+wall+came+down+and+one+year+later+the+german+democratic+republic
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+gdr+in+the+east+was+unified+with+the+federal+republic+of+germany+in+the+west
error: request timeout
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=among+many+other+things+germany+inherited+the+archives+of+the+east+german+secret+police
found 1 videos: [['/talks/hubertus_knabe_the_dark_secrets_of_a_surveillance_state', '2014']]
selected: /talks/hubertus_knabe_the_dark_secrets_of_a_surveillance_state
sleep 2 seconds to avoid blocking
------<879>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HughEvans_2016.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+introduce+you+to+an+amazing+woman+her+name+is
found 11 videos: [['/talks/hugh_evans_what_does_it_mean_to_be_a_citizen_of_the_world', '2016'], ['/talks/karima_bennoune_when_people_of_muslim_heritage_challenge_fundamentalism', '2014'], ['/talks/sarah_jones_one_woman_five_characters_and_a_sex_lesson_from_the_future', '2015'], ['/talks/sheryl_sandberg_so_we_leaned_in_now_what', '2014'], ['/talks/alaa_murabit_what_my_religion_really_says_about_women', '2015'], ['/talks/stacy_smith_the_data_behind_hollywood_s_sexism', '2017'], ['/talks/worklife_with_adam_grant_the_daily_show_s_secret_to_creativity', '2018'], ['/talks/laurel_braitman_depressed_dogs_cats_with_ocd_what_animal_madness_means_for_us_humans', '2014'], ['/talks/siyanda_mohutsiwa_how_young_africans_found_a_voice_on_twitter', '2016'], ['/talks/ameenah_gurib_fakim_humble_plants_that_hide_surprising_secrets', '2014'], ['/talks/the_ted_interview_sir_ken_robinson_still_wants_an_education_revolution', '2018']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+born+in+jamaica++emigrated+to+the+us+at+the+age+of+eighteen+and+now+lives+just+outside+of+washington
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=nor+a+lobbyist+she+d+probably+tell+you+she+s+quite+unremarkable+but+she+s+having+the+most+remarkable+impact
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+s+incredible+about+davinia+is+that+she+s+willing+to+spend+time+every+single+week+focused+on+people+who+are+not+her
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+not+her+in+her+neighborhood+her+state++nor+even+in+her+country
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+she+d+likely+never+meet
found 1 videos: [['/talks/tasha_eurich_increase_your_self_awareness_with_one_simple_fix', '2017']]
selected: /talks/tasha_eurich_increase_your_self_awareness_with_one_simple_fix
sleep 3 seconds to avoid blocking
------<880>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HughHerr_2014.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=looking+deeply+inside+nature++through+the+magnifying+glass+of+science++designers+extract+principles+processes+and+materials
found 1 videos: [['/talks/hugh_herr_the_new_bionics_that_let_us_run_climb_and_dance', '2014']]
selected: /talks/hugh_herr_the_new_bionics_that_let_us_run_climb_and_dance
sleep 4 seconds to avoid blocking
------<881>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/HyeonseoLee_2013.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=grew+up+singing+a+song+called+nothing+to+envy+and+i+was+very+proud+in+school+we+spent+a+lot+of+time
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=although+i+often+wondered+about+the+outside+world
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+thought+i+would+spend+my+entire+life+in+north+korea++until+everything+suddenly+changed
found 1 videos: [['/talks/hyeonseo_lee_my_escape_from_north_korea', '2013']]
selected: /talks/hyeonseo_lee_my_escape_from_north_korea
sleep 1 seconds to avoid blocking
------<882>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/IainHutchison_2010G.stm
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+hugely+important+because+it+s+the+external+visual+part+that+everybody+else+sees
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+s+not+forget+it+s+a+functional+entity+we+have+strong+skull+bones+that+protect+the+most+important+organ+in+our
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+where+our+senses+are+located+our+special+senses+our+vision+our+speech+our+hearing+our+smell+our+taste+and
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=bone+is+peppered+as+you+can+see+with+the+light+shining+through+the+skull+with+cavities+the+sinuses++which+warm+and+moisten+the+air+we+breathe+but+also+imagine
found 1 videos: [['/talks/iain_hutchison_saving_faces_a_facial_surgeon_s_craft', '2011']]
selected: /talks/iain_hutchison_saving_faces_a_facial_surgeon_s_craft
sleep 2 seconds to avoid blocking
------<883>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/IanBremmer_2016X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+always+think+about+technology+the+world+changing+becoming+more+innovative+you+think+about+the+driverless
found 1 videos: [['/talks/ian_bremmer_how_the_us_should_use_its_superpower_status', '2016']]
selected: /talks/ian_bremmer_how_the_us_should_use_its_superpower_status
sleep 1 seconds to avoid blocking
------<884>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/IanDunbar_2007P.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+have+interest+sniffing+each+other
found 1 videos: [['/talks/ian_dunbar_dog_friendly_dog_training', '2008']]
selected: /talks/ian_dunbar_dog_friendly_dog_training
sleep 5 seconds to avoid blocking
------<885>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/IanGoldin_2009G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+future+as+we+know+it+is+very+unpredictable++the+best+minds+in+the+best+institutions+generally+get+it+wrong
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+in+technology++this+is+in+the+area+of+politics+where+pundits++the
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=always+get+it+wrong++and+it+s+clearly+in+the+area+of+finance+with+institutions+established+to+think+about+the+future+the+imf+the+bis+the+financial+stability+forum++couldn+t+see+what+was+coming
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=over+twenty+thousand+economists+whose+job+it+is+competitive+entry+to+get+there++couldn+t+see+what+was+happening+globalization+is+getting+more+complex++and+this+change+is+getting+more+rapid+the+future+will+be+more+unpredictable
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=coming+together+leads+to+a+new+renaissance+it+did+this+a+thousand+years+ago++the+last+forty+years+have+been+extraordinary+times+life+expectancy+has+gone+up+by+about+twenty+five+years+it+took+from+the+stone+age+to+achieve+that
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=income+has+gone+up+for+a+majority+of+the+world+s+population+despite+the+population+going+up+by+about+two+billion+people+over+this+period
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+illiteracy+has+gone+down+from+a+half+to+about+a+quarter+of+the+people+on+earth+a+huge
found 1 videos: [['/talks/ian_goldin_navigating_our_global_future', '2009']]
selected: /talks/ian_goldin_navigating_our_global_future
sleep 1 seconds to avoid blocking
------<886>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/IanRitchie_2011G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+we+all+know+the+world+wide+web+has
found 15 videos: [['/talks/tim_berners_lee_the_next_web', '2009'], ['/talks/ethan_zuckerman_listening_to_global_voices', '2010'], ['/talks/ian_ritchie_the_day_i_turned_down_tim_berners_lee', '2011'], ['/talks/yann_arthus_bertrand_a_wide_angle_view_of_fragile_earth', '2009'], ['/talks/chris_anderson_how_web_video_powers_global_innovation', '2010'], ['/talks/anil_ananthaswamy_what_it_takes_to_do_extreme_astrophysics', '2011'], ['/talks/steven_johnson_where_good_ideas_come_from', '2010'], ['/talks/clay_shirky_how_social_media_can_make_history', '2009'], ['/talks/ron_mccallum_how_technology_allowed_me_to_read', '2013'], ['/talks/roger_mcnamee_6_ways_to_save_the_internet', '2011'], ['/talks/susan_shaw_the_oil_spill_s_toxic_trade_off', '2010'], ['/talks/todd_humphreys_how_to_fool_a_gps', '2012'], ['/talks/ken_goldberg_4_lessons_from_robots_about_being_human', '2012'], ['/talks/eric_sanderson_new_york_before_the_city', '2009'], ['/talks/jennifer_pahlka_coding_a_better_government', '2012']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=absolutely+transformed+publishing+broadcasting+commerce+and+social+connectivity++but+where+did+it+all+come+from
found 1 videos: [['/talks/ian_ritchie_the_day_i_turned_down_tim_berners_lee', '2011']]
selected: /talks/ian_ritchie_the_day_i_turned_down_tim_berners_lee
sleep 3 seconds to avoid blocking
------<887>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/IdeasWorthDating_2016V.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+takes+its+toll+being+alone++i+m+a+little+bit+lost+and+it+s+finally+time+to+make+a
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+a+single+white+male+forty+five+years+of+age++i+love+animals
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=gainfully+employed++i+m+a+people+person
error: request timeout
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+am+i+looking+for++i+m+looking+for+my+idea+mate+are+you+that
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sure+are+getting+our+fingers+dirty+for+a+first+date+huh+rf+gardening+is+the+most+therapeutic+and+defiant
found 1 videos: [['/talks/rainn_wilson_ideas_worth_dating', '2016']]
selected: /talks/rainn_wilson_ideas_worth_dating
sleep 4 seconds to avoid blocking
------<888>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/IlonaSzabodeCarvalho_2014G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+twelve+years+ago++i+gave+up+my+career+in+banking
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+try+to+make+the+world+a+safer+place+this+involved+a+journey+into+national+and+global+advocacy
found 1 videos: [['/talks/ilona_szabo_de_carvalho_4_lessons_i_learned_from_taking_a_stand_against_drugs_and_gun_violence', '2015']]
selected: /talks/ilona_szabo_de_carvalho_4_lessons_i_learned_from_taking_a_stand_against_drugs_and_gun_violence
sleep 5 seconds to avoid blocking
------<889>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ImamFeisalAbdulRauf_2009P.stm
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=speaking+about+compassion+from+an+islamic+point+of+view+and+perhaps+my+faith+is+not
found 1 videos: [['/talks/feisal_abdul_rauf_lose_your_ego_find_your_compassion', '2008']]
selected: /talks/feisal_abdul_rauf_lose_your_ego_find_your_compassion
sleep 5 seconds to avoid blocking
------<890>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/IngeMissmahl_2010G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+how+to+help+people+to+overcome+traumatic+experiences+and+how+to+help
found 1 videos: [['/talks/inge_missmahl_bringing_peace_to_the_minds_of_afghanistan', '2010']]
selected: /talks/inge_missmahl_bringing_peace_to_the_minds_of_afghanistan
sleep 5 seconds to avoid blocking
------<891>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/IoneWells_2016T.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+on+an+evening+out+with+friends+to+celebrate+one+of+their+birthdays+we+hadn+t+been+all+together+for+a+couple+of+weeks+it+was+a+perfect+evening+as+we+were+all+reunited
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+the+end+of+the+evening++i+caught+the+last+underground+train+back+to+the+other+side+of+london
found 1 videos: [['/talks/ione_wells_how_we_talk_about_sexual_assault_online', '2016']]
selected: /talks/ione_wells_how_we_talk_about_sexual_assault_online
sleep 3 seconds to avoid blocking
------<892>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/iOTillettWright_2012X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=human+beings+start+putting+each+other+into+boxes+the+second+that+they+see+each+other
found 4 videos: [['/talks/io_tillett_wright_fifty_shades_of_gay', '2013'], ['/talks/ben_saunders_to_the_south_pole_and_back_the_hardest_105_days_of_my_life', '2014'], ['/talks/jer_thorp_make_data_more_human', '2012'], ['/talks/ed_boyden_a_light_switch_for_neurons', '2011']]
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+they+attractive+are+they+a+potential+mate+are+they+a+potential+networking+opportunity++we+do+this+little+interrogation+when+we+meet+people+to+make+a+mental+resume+for+them
found 1 videos: [['/talks/io_tillett_wright_fifty_shades_of_gay', '2013']]
selected: /talks/io_tillett_wright_fifty_shades_of_gay
sleep 4 seconds to avoid blocking
------<893>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/IqbalQuadir_2005G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+should+ask+ourselves+the+question+why+does+poverty+exist++i+mean+there+is+plenty+of+knowledge+and
found 1 videos: [['/talks/iqbal_quadir_how_mobile_phones_can_fight_poverty', '2006']]
selected: /talks/iqbal_quadir_how_mobile_phones_can_fight_poverty
sleep 2 seconds to avoid blocking
------<894>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/IrwinRedlener_2008.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+big+question+that+we+re+facing+now+and+have+been+for+quite+a+number+of+years+now+are+we+at+risk+of+a+nuclear+attack
found 1 videos: [['/talks/irwin_redlener_how_to_survive_a_nuclear_attack', '2008']]
selected: /talks/irwin_redlener_how_to_survive_a_nuclear_attack
sleep 2 seconds to avoid blocking
------<895>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/IsaacLidsky_2016T.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+dorothy+was+a+little+girl++she+was+fascinated+by+her+goldfish+her+father+explained+to+her+that+fish+swim+by+quickly+wagging+their+tails+to+propel+themselves+through+the+water
found 1 videos: [['/talks/isaac_lidsky_what_reality_are_you_creating_for_yourself', '2016']]
selected: /talks/isaac_lidsky_what_reality_are_you_creating_for_yourself
sleep 2 seconds to avoid blocking
------<896>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/IsaacMizrahi_2008.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+thing+about+sleeping+i+don+t+sleep+that+much+and+i+ve+come+to+this+thing+about+like+not+sleeping+much+as+being+a+great+virtue+after+years+of+kind+of+battling+it+as+being+a+terrible+detriment+or+something+and+now+i+really+like+sort+of+sitting+up
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know+but+for+years+i+ve+been+sitting+up
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+think+that++like++my+creativity+is+greatly+motivated+by+this+this+kind+of+insomnia+i+lie+awake+i+think+thoughts++i+walk+aimlessly+sometimes+i+used+to+walk+more+at+night
found 1 videos: [['/talks/isaac_mizrahi_fashion_and_creativity', '2008']]
selected: /talks/isaac_mizrahi_fashion_and_creativity
sleep 1 seconds to avoid blocking
------<897>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/IsabelAllende_2007.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thank+you+so+much+it+s+really+scary+to+be+here+among+the+smartest+of+the+smart
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+here+to+tell+you+a+few+tales+of+passion++there+s+a+jewish+saying+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+convey+something+that+is+truer+than+truth+about+our+common+humanity
found 1 videos: [['/talks/isabel_allende_tales_of_passion', '2008']]
selected: /talks/isabel_allende_tales_of_passion
sleep 4 seconds to avoid blocking
------<898>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/IsabelAllende_2014.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+olivia+the+dog+is+sixteen
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+let+s+talk+about+aging+let+me+tell+you+how+i+feel+when+i+see+my+wrinkles+in+the+mirror
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+realize+that+some+parts+of+me+have+dropped+and+i+can+t+find+them
error: request timeout
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=mary+oliver+says+in+one+of+her+poems
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=tell+me+what+is+it+that+you+plan+to+do+with+your+one+wild+and+precious+life+me+i+intend+to+live
error: request timeout
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+do+we+start+aging+society+decides+when+we+are+old+usually+around
error: request timeout
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+we+really+start+aging+at+birth+we+are+aging+right+now++and+we+all+experience+it+differently
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+all+feel+younger+than+our+real+age+because+the+spirit+never+ages
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+am+still+seventeen++sophia+loren++look+at+her++she+says+that+everything+you+see
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=she+owes+to+spaghetti++i+tried+it+and+gained+ten+pounds+in+the+wrong+places++but+attitude
error: request timeout
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+my+real+mentor+in+this+journey+of+aging+is+olga+murray
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+california+girl+at+sixty+started+working+in+nepal+to+save+young+girls+from+domestic+bondage+at+eighty+eight+she
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=has+saved+twelve+thousand+girls+and+she+has+changed+the+culture+in+the+country
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=she+has+also+founded+orphanages+and+nutritional+clinics+she+is+always+happy+and+eternally+young
found 1 videos: [['/talks/isabel_allende_how_to_live_passionately_no_matter_your_age', '2014']]
selected: /talks/isabel_allende_how_to_live_passionately_no_matter_your_age
sleep 1 seconds to avoid blocking
------<899>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/IsabelBehnckeIzquierdo_2011U.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+just+came+back+from+a+community+that+holds+the+secret+to+human+survival++it+s+a+place
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=where+women+run+the+show+have+sex+to+say+hello+and+play+rules+the+day
found 1 videos: [['/talks/isabel_behncke_evolution_s_gift_of_play_from_bonobo_apes_to_humans', '2011']]
selected: /talks/isabel_behncke_evolution_s_gift_of_play_from_bonobo_apes_to_humans
sleep 3 seconds to avoid blocking
------<900>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/IsmaelNazario_2014X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+need+to+change+the+culture+in+our+jails
found 10 videos: [['/talks/ismael_nazario_what_i_learned_as_a_kid_in_jail', '2015'], ['/talks/jeffrey_brown_how_we_cut_youth_violence_in_boston_by_79_percent', '2015'], ['/talks/anne_milgram_why_smart_statistics_are_the_key_to_fighting_crime', '2014'], ['/talks/alex_gendler_history_vs_christopher_columbus', '2014'], ['/talks/esta_soler_how_we_turned_the_tide_on_domestic_violence_hint_the_polaroid_helped', '2014'], ['/talks/freeman_hrabowski_4_pillars_of_college_success_in_science', '2013'], ['/talks/melati_and_isabel_wijsen_our_campaign_to_ban_plastic_bags_in_bali', '2016'], ['/talks/beth_noveck_demand_a_more_open_source_government', '2012'], ['/talks/will_potter_the_secret_us_prisons_you_ve_never_heard_of_before', '2015'], ['/talks/heather_brooke_my_battle_to_expose_government_corruption', '2012']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+prisons+especially+for+young+inmates+new+york+state+is+one+of+only+two+in+the+u+s+that+automatically+arrests+and+tries
error: request timeout
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+culture+of+violence+takes+these+young+people+and+puts+them+in+a+hostile+environment+and+the+correctional+officers+pretty+much+allow+any+and+everything+to+go+on+there
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+not+really+much+for+these+young+people+to+do+to+actually+enhance+their+talent+and+actually+rehabilitate+them
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=until+we+can+raise+the+age+of+criminal+responsibility+to+eighteen++we+need+to+focus+on+changing+the+daily+lives+of+these+young+people
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+know+firsthand++before+i+ever+turned+eighteen+i+spent+approximately
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=four+hundred+days+on+rikers+island+and+to+add+to+that+i+spent+almost+three+hundred+days+in+solitary+confinement++and+let+me+tell+you+this
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=screaming+at+the+top+of+your+lungs+all+day+on+your+cell+door+or+screaming+at+the+top+of+your+lungs+out+the+window+it+gets+tiring
found 1 videos: [['/talks/ismael_nazario_what_i_learned_as_a_kid_in_jail', '2015']]
selected: /talks/ismael_nazario_what_i_learned_as_a_kid_in_jail
sleep 2 seconds to avoid blocking
------<901>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ItayTalgam_2009G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+magical+moment+of+conducting+which+is+you+go+onto+a+stage+there+is+an+orchestra+sitting+they+are+all+you+know+warming+up+and+doing+stuff++and
found 1 videos: [['/talks/itay_talgam_lead_like_the_great_conductors', '2009']]
selected: /talks/itay_talgam_lead_like_the_great_conductors
sleep 3 seconds to avoid blocking
------<902>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/IvanCoyote_2015X.stm
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+of+us+need+we+all+need
found 16 videos: [['/talks/wendy_hawkins_let_them_be_scientists', '2013'], ['/talks/daniel_suarez_the_kill_decision_shouldn_t_belong_to_a_robot', '2013'], ['/talks/shonda_rhimes_and_cyndi_stivers_the_future_of_storytelling', '2017'], ['/talks/jessica_shortall_the_us_needs_paid_family_leave_for_the_sake_of_its_future', '2015'], ['/talks/his_holiness_pope_francis_why_the_only_future_worth_building_includes_everyone', '2017'], ['/talks/paula_hammond_a_new_superweapon_in_the_fight_against_cancer', '2016'], ['/talks/stephen_burt_why_people_need_poetry', '2014'], ['/talks/guy_winch_why_we_all_need_to_practice_emotional_first_aid', '2015'], ['/talks/melvin_russell_i_love_being_a_police_officer_but_we_need_reform', '2016'], ['/talks/ivan_coyote_why_we_need_gender_neutral_bathrooms', '2016'], ['/talks/susan_etlinger_what_do_we_do_with_all_this_big_data', '2014'], ['/talks/anne_marie_slaughter_can_we_all_have_it_all', '2014'], ['/talks/anna_heringer_the_warmth_and_wisdom_of_mud_buildings', '2017'], ['/talks/bill_gates_the_next_outbreak_we_re_not_ready', '2015'], ['/talks/maria_bezaitis_why_we_need_strangeness', '2013'], ['/talks/amanda_bennett_we_need_a_heroic_narrative_for_death', '2013']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=air+to+breathe++we+need+clean+water+to+drink++we+need+food+to+eat+we+need+shelter+and+love+you+know+love+is+great
found 1 videos: [['/talks/ivan_coyote_why_we_need_gender_neutral_bathrooms', '2016']]
selected: /talks/ivan_coyote_why_we_need_gender_neutral_bathrooms
sleep 1 seconds to avoid blocking
------<903>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/IvanKrastev_2012G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+afraid+i+m+one+of+those+speakers
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+hope+you+re+not+going+to+meet+at+ted+first+i+don+t+have+a+mobile+so
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+on+the+safe+side+secondly+a+political+theorist+who+s+going+to+talk+about+the+crisis+of+democracy
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+probably+not+the+most+exciting+topic+you+can+think+about
found 9 videos: [['/talks/ivan_krastev_can_democracy_exist_without_trust', '2012'], ['/talks/michael_archer_how_we_ll_resurrect_the_gastric_brooding_frog_the_tasmanian_tiger', '2013'], ['/talks/jane_mcgonigal_gaming_can_make_a_better_world', '2010'], ['/talks/dennis_hong_my_seven_species_of_robot_and_how_we_created_them', '2010'], ['/talks/francis_collins_we_need_better_drugs_now', '2013'], ['/talks/bruno_torturra_got_a_smartphone_start_broadcasting', '2014'], ['/talks/tyrone_hayes_penelope_jagessar_chaffer_the_toxic_baby', '2012'], ['/talks/sara_lewis_the_loves_and_lies_of_fireflies', '2014'], ['/talks/annie_murphy_paul_what_we_learn_before_we_re_born', '2011']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+plus+i+m+not+going+to+give+you+any+answers++i+m+much+more+trying+to+add+to+some+of+the+questions+we+re+talking+about+and+one+of+the+things+that+i+want+to+question+is
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+very+popular+hope+these+days+that+transparency+and+openness
found 1 videos: [['/talks/ivan_krastev_can_democracy_exist_without_trust', '2012']]
selected: /talks/ivan_krastev_can_democracy_exist_without_trust
sleep 4 seconds to avoid blocking
------<904>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/IvanOransky_2012P.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=those+of+you+who+have+seen+the+film+moneyball+or+have+read+the+book+by+michael+lewis+will+be+familiar+with+the+story+of+billy+beane
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=billy+was+supposed+to+be+a+tremendous+ballplayer+all+the+scouts+told+him+so+they+told+his+parents+that+they+predicted+that+he+was+going+to+be+a+star
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+what+actually+happened+when+he+signed+the+contract+and+by+the+way++he+didn+t+want+to+sign+that+contract+he+wanted+to+go+to+college+which+is+what+my+mother+who+actually+does+love+me
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=said+that+i+should+do+too+and+i+did
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+he+didn+t+do+very+well++he+struggled+mightily
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+got+traded+a+couple+of+times+he+ended+up+in+the+minors+for+most+of+his+career++and+he+actually+ended+up+in+management+he+ended+up+as+a+general+manager+of+the+oakland+a+s
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+many+of+you+in+this+room++ending+up+in+management+which+is+also+what+i+ve+done+is+seen+as+a+success++i+can+assure+you+that+for+a+kid+trying+to+make+it+in+the+bigs
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=going+into+management+ain+t+no+success+story++it+s+a+failure
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+what+i+want+to+talk+to+you+about+today+and+share+with+you+is+that+our+healthcare+system+our+medical+system+is+just+as+bad+at+predicting
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+happens+to+people+in+it
error: request timeout
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+those+scouts+were+at+predicting+what+would+happen+to+billy+beane++and+yet+every+day+thousands+of+people+in+this+country
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+diagnosed+with+preconditions++we+hear+about+pre+hypertension+we+hear+about
found 1 videos: [['/talks/ivan_oransky_are_we_over_medicalized', '2012']]
selected: /talks/ivan_oransky_are_we_over_medicalized
sleep 5 seconds to avoid blocking
------<905>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/IwanBaan_2013Z.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fortunate+enough+to+work+with+many+of+the+great+international+architects+documenting+their+work
found 1 videos: [['/talks/iwan_baan_ingenious_homes_in_unexpected_places', '2013']]
selected: /talks/iwan_baan_ingenious_homes_in_unexpected_places
sleep 3 seconds to avoid blocking
------<906>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JaapDeRoode_2014Y.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+infectious+diseases+right+infectious+diseases+are+still+the+main+cause+of+human+suffering+and+death+around+the+world+every+year+millions+of+people+die+of+diseases+such+as+t+b+malaria++hiv
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=around+the+world+and+even+in+the+united+states+every+year++thousands+of+americans+die+of+seasonal+flu
found 1 videos: [['/talks/jaap_de_roode_how_butterflies_self_medicate', '2015']]
selected: /talks/jaap_de_roode_how_butterflies_self_medicate
sleep 5 seconds to avoid blocking
------<907>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JacekUtko_2009.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=newspapers+are+dying+for+a+few+reasons
found 6 videos: [['/talks/jacek_utko_can_design_save_newspapers', '2009'], ['/talks/dan_gilbert_why_we_make_bad_decisions', '2008'], ['/talks/sam_richards_a_radical_experiment_in_empathy', '2011'], ['/talks/billy_graham_on_technology_and_faith', '2008'], ['/talks/patrick_chappatte_the_power_of_cartoons', '2010'], ['/talks/bonnie_bassler_how_bacteria_talk', '2009']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=readers+don+t+want+to+pay+for+yesterday+s+news++and+advertisers+follow+them+your+iphone+your+laptop+is+much+more+handy+than+new+york+times+on+sunday
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+should+save+trees+in+the+end++so+it+s+enough+to+bury+any+industry
found 1 videos: [['/talks/nicholas_negroponte_one_laptop_per_child_two_years_on', '2008']]
selected: /talks/nicholas_negroponte_one_laptop_per_child_two_years_on
sleep 1 seconds to avoid blocking
------<908>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JackAndraka_2013.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ever+experienced+a+moment+in+your+life
found 8 videos: [['/talks/ash_beckham_we_re_all_hiding_something_let_s_find_the_courage_to_open_up', '2014'], ['/talks/dave_isay_everyone_around_you_has_a_story_the_world_needs_to_hear', '2015'], ['/talks/andrew_solomon_depression_the_secret_we_share', '2013'], ['/talks/janine_shepherd_a_broken_body_isn_t_a_broken_person', '2012'], ['/talks/steve_ramirez_and_xu_liu_a_mouse_a_laser_beam_a_manipulated_memory', '2013'], ['/talks/helder_guimaraes_a_magical_search_for_a_coincidence', '2015'], ['/talks/billie_jean_king_this_tennis_icon_paved_the_way_for_women_in_sports', '2015'], ['/talks/elizabeth_loftus_how_reliable_is_your_memory', '2013']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+was+so+painful+and+confusing
found 5 videos: [['/talks/cosmin_mihaiu_physical_therapy_is_boring_play_a_game_instead', '2015'], ['/talks/khadija_gbla_my_mother_s_strange_definition_of_empowerment', '2015'], ['/talks/leslie_morgan_steiner_why_domestic_violence_victims_don_t_leave', '2013'], ['/talks/jack_andraka_a_promising_test_for_pancreatic_cancer_from_a_teenager', '2013'], ['/talks/norman_spack_how_i_help_transgender_teens_become_who_they_want_to_be', '2014']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+all+you+wanted+to+do+was+learn+as+much+as+you+could+to+make+sense+of+it+all
found 8 videos: [['/talks/johann_hari_everything_you_think_you_know_about_addiction_is_wrong', '2015'], ['/talks/joshua_foer_feats_of_memory_anyone_can_do', '2012'], ['/talks/regina_dugan_from_mach_20_glider_to_hummingbird_drone', '2012'], ['/talks/andrew_solomon_depression_the_secret_we_share', '2013'], ['/talks/eric_liu_why_ordinary_people_need_to_understand_power', '2014'], ['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013'], ['/talks/dave_isay_everyone_around_you_has_a_story_the_world_needs_to_hear', '2015'], ['/talks/david_epstein_are_athletes_really_getting_faster_better_stronger', '2014']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+was+thirteen+a+close+family+friend+who+was+like+an+uncle+to+me
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+the+disease+hit+so+close+to+home+i+knew+i+needed+to+learn+more+so+i+went+online+to+find+answers
found 1 videos: [['/talks/jack_andraka_a_promising_test_for_pancreatic_cancer_from_a_teenager', '2013']]
selected: /talks/jack_andraka_a_promising_test_for_pancreatic_cancer_from_a_teenager
sleep 2 seconds to avoid blocking
------<909>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JackChoi_2012.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know+cadaver+dissection+is+the+traditional+way+of+learning+human+anatomy+for+students+it+s+quite+an+experience
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+for+a+school++it+could+be+very+difficult
found 9 videos: [['/talks/shawn_achor_the_happy_secret_to_better_work', '2012'], ['/talks/meera_vijayann_find_your_voice_against_gender_violence', '2014'], ['/talks/hendrik_poinar_bring_back_the_woolly_mammoth', '2013'], ['/talks/siddharthan_chandran_can_the_damaged_brain_repair_itself', '2014'], ['/talks/kakenya_ntaiya_a_girl_who_demanded_school', '2013'], ['/talks/david_puttnam_does_the_media_have_a_duty_of_care', '2014'], ['/talks/brenda_romero_gaming_for_understanding', '2012'], ['/talks/bunker_roy_learning_from_a_barefoot_movement', '2011'], ['/talks/ananda_shankar_jayant_fighting_cancer_with_dance', '2010']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+expensive+to+maintain++so+we+learned+the
found 2 videos: [['/talks/jack_choi_on_the_virtual_dissection_table', '2012'], ['/talks/majora_carter_3_stories_of_local_eco_entrepreneurship', '2010']]
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+do+not+have+a+cadaver+dissection+lab
found 1 videos: [['/talks/jack_choi_on_the_virtual_dissection_table', '2012']]
selected: /talks/jack_choi_on_the_virtual_dissection_table
sleep 3 seconds to avoid blocking
------<910>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JackHorner_2010X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+show+of+hands+or+a+clapping+of+people+in+different+generations++i+m+interested+in+how+many+are+three+to+twelve+years+old
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+kind+of+go+in+a+different+direction+right+now+i+hope+you+all+realize+that+so+i+ll+just+give+you+my+message+up+front++try+not+to+go+extinct+that+s+it
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+ask+me+a+lot+in
found 4 videos: [['/talks/wadah_khanfar_a_historic_moment_in_the_arab_world', '2011'], ['/talks/chris_abani_on_humanity', '2008'], ['/talks/steven_johnson_the_web_as_a_city', '2008'], ['/talks/mechai_viravaidya_how_mr_condom_made_thailand_a_better_place_for_life_and_love', '2010']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fact+one+of+the+most+asked+questions+i+get+is+why+do+children+like
found 10 videos: [['/talks/heather_brooke_my_battle_to_expose_government_corruption', '2012'], ['/talks/sugata_mitra_the_child_driven_education', '2010'], ['/talks/jonathan_drori_what_we_think_we_know', '2008'], ['/talks/jack_horner_where_are_the_baby_dinosaurs', '2012'], ['/talks/bruce_feiler_the_council_of_dads', '2011'], ['/talks/nic_marks_the_happy_planet_index', '2010'], ['/talks/sugata_mitra_kids_can_teach_themselves', '2008'], ['/talks/brenda_laurel_why_not_make_video_games_for_girls', '2009'], ['/talks/aimee_mullins_the_opportunity_of_adversity', '2010'], ['/talks/isabel_allende_tales_of_passion', '2008']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=get+to+the+goose+in+a+minute++so+that+s+sort+of+the+theme+big+different+and+gone+the+title+of+my
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+cause+of+a+premature+extinction
found 2 videos: [['/talks/jack_horner_where_are_the_baby_dinosaurs', '2012'], ['/talks/tyrone_hayes_penelope_jagessar_chaffer_the_toxic_baby', '2012']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+i+assume+that+we+remember+dinosaurs+and+there+s+lots+of+different+shapes+lots+of+different+kinds
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=museums+were+out+looking+for+dinosaurs++they+went+out+and+gathered+them+up+and+this+is+an
found 1 videos: [['/talks/jack_horner_where_are_the_baby_dinosaurs', '2012']]
selected: /talks/jack_horner_where_are_the_baby_dinosaurs
sleep 3 seconds to avoid blocking
------<911>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JackHorner_2011.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+was+growing+up+in+montana
found 1 videos: [['/talks/jack_horner_building_a_dinosaur_from_a_chicken', '2011']]
selected: /talks/jack_horner_building_a_dinosaur_from_a_chicken
sleep 5 seconds to avoid blocking
------<912>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JackieSavitz_2013X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+may+be+wondering+why+a+marine+biologist+from+oceana+would+come+here+today+to+talk+to+you+about+world+hunger+i+m+here+today+because
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=saving+the+oceans+is+more+than+an+ecological+desire+it+s+more+than+a+thing+we+re+doing+because+we+want+to+create+jobs+for+fishermen+or+preserve+fishermen+s
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=jobs+it+s+more+than+an+economic+pursuit
found 1 videos: [['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013']]
selected: /talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all
sleep 5 seconds to avoid blocking
------<913>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JackieTabick_2009P.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+my+favorite+cartoon+characters+is+snoopy
found 1 videos: [['/talks/jackie_tabick_the_balancing_act_of_compassion', '2008']]
selected: /talks/jackie_tabick_the_balancing_act_of_compassion
sleep 2 seconds to avoid blocking
------<914>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JacksonKatz_2012X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+share+with+you+a+paradigm+shifting+perspective
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+the+issues+of+gender+violence+sexual+assault+domestic+violence+relationship+abuse+sexual+harassment+sexual+abuse+of+children++that+whole+range+of+issues+that+i+ll+refer+to+in+shorthand+as
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+ve+been+seen+as+women+s+issues+that+some+good+men+help+out+with+but+i+have+a+problem+with+that+frame+and+i+don+t+accept+it++i+don+t+see+these+as+women+s+issues+that+some+good+men+help+out+with+in
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fact+i+m+going+to+argue+that+these+are+men+s+issues++first+and+foremost+now+obviously
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=obviously+they+re+also+women+s+issues+so+i+appreciate+that+but+calling
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=gender+violence+a+women+s+issue+is+part+of+the+problem+for+a+number+of+reasons+the+first+is+that+it+gives+men+an+excuse+not+to+pay
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=attention++right+a+lot+of+men+hear+the+term+women+s+issues+and+we+tend+to+tune+it+out+and+we+think+i+m+a+guy+that+s+for+the+girls+or+that+s+for+the+women+and+a+lot+of+men+literally+don+t+get+beyond+the+first+sentence
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+a+result+it+s+almost+like+a+chip+in+our+brain+is+activated+and+the+neural+pathways+take+our+attention+in+a+different+direction+when+we+hear+the+term+women+s+issues+this+is+also+true+by+the+way+of+the+word+gender+because+a+lot+of+people+hear+the+word+gender
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+they+think+that+gender+issues+is+synonymous+with+women+s+issues+there+s+some+confusion+about+the+term+gender+and+let+me+illustrate+that+confusion+by+way+of+analogy+so+let
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+talk+for+a+moment+about+race+in+the+us+when+we+hear+the+word+race+a+lot+of+people+think+that+means+african+american+latino+asian+american+native+american
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=south+asian+pacific+islander+on+and+on
found 1 videos: [['/talks/jackson_katz_violence_against_women_it_s_a_men_s_issue', '2013']]
selected: /talks/jackson_katz_violence_against_women_it_s_a_men_s_issue
sleep 4 seconds to avoid blocking
------<915>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JacquelineNovogratz_2005G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+start+with+a+story+a+la+seth+godin+from+when+i+was+twelve+years+old
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+uncle+ed+gave+me+a+beautiful+blue+sweater+at+least+i+thought+it+was+beautiful++and+it+had+fuzzy+zebras+walking+across+the+stomach++and
found 1 videos: [['/talks/jacqueline_novogratz_invest_in_africa_s_own_solutions', '2006']]
selected: /talks/jacqueline_novogratz_invest_in_africa_s_own_solutions
sleep 5 seconds to avoid blocking
------<916>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JacquelineNovogratz_2007G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+really+am+honored+to+be+here+and+as+chris+said+it+s+been+over+twenty+years+since+i+started+working+in+africa++my+first+introduction
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+at+the+abidjan+airport+on+a+sweaty++ivory+coast+coast+morning+i+had+just
found 1 videos: [['/talks/jacqueline_novogratz_patient_capitalism', '2007']]
selected: /talks/jacqueline_novogratz_patient_capitalism
sleep 4 seconds to avoid blocking
------<917>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JacquelineNovogratz_2009S.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=arguably+the+financial+markets+have+failed+us+and+the+aid+system+is+failing+us+and+yet+i+stand+firmly+with+the+optimists+who+believe+that+there+has+probably
found 1 videos: [['/talks/jacqueline_novogratz_a_third_way_to_think_about_aid', '2009']]
selected: /talks/jacqueline_novogratz_a_third_way_to_think_about_aid
sleep 5 seconds to avoid blocking
------<918>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JacquelineNovogratz_2009U.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+been+working+on+issues+of+poverty+for+more+than+twenty+years+and+so+it+s+ironic+that
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+problem+that+and+question+that+i+most+grapple+with+is+how+you+actually+define+poverty+what+does+it+mean
found 1 videos: [['/talks/jacqueline_novogratz_an_escape_from_poverty', '2009']]
selected: /talks/jacqueline_novogratz_an_escape_from_poverty
sleep 3 seconds to avoid blocking
------<919>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JacquelineNovogratz_2010W.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+been+spending+a+lot+of+time+traveling+around+the+world+these+days+talking+to+groups+of+students+and+professionals
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+everywhere+i+m+finding+that+i+hear+similar+themes+on+the+one+hand+people+say+the+time+for+change
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+want+to+be+part+of+it+they+talk+about+wanting+lives+of+purpose+and+greater+meaning
found 3 videos: [['/talks/jacqueline_novogratz_inspiring_a_life_of_immersion', '2011'], ['/talks/david_perry_are_games_better_than_life', '2008'], ['/talks/liz_diller_the_blur_building_and_other_tech_empowered_architecture', '2008']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+on+the+other+hand+i+hear+people+talking+about+fear
found 9 videos: [['/talks/elyn_saks_a_tale_of_mental_illness_from_the_inside', '2012'], ['/talks/billy_graham_on_technology_and_faith', '2008'], ['/talks/guy_philippe_goldstein_how_cyberattacks_threaten_real_world_peace', '2011'], ['/talks/brene_brown_listening_to_shame', '2012'], ['/talks/jacqueline_novogratz_inspiring_a_life_of_immersion', '2011'], ['/talks/elizabeth_gilbert_your_elusive_creative_genius', '2009'], ['/talks/milton_glaser_using_design_to_make_ideas_new', '2009'], ['/talks/bryan_stevenson_we_need_to_talk_about_an_injustice', '2012'], ['/talks/naomi_klein_addicted_to_risk', '2011']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+sense+of+risk+aversion+they+say+i+really+want+to+follow+a+life+of+purpose+but+i+don+t+know+where+to+start
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+don+t+want+to+disappoint+my+family+or+friends
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+work+in+global+poverty++and+they+say+i+want+to+work+in+global+poverty+but+what+will+it+mean+about+my
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=will+i+be+marginalized+will+i+not+make+enough+money+will+i+never+get+married+or+have+children
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+as+a+woman+who+didn+t+get+married+until+i+was+a+lot+older+and+i+m+glad+i+waited
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+look+at+these+young+people+and+i+say+your+job+is+not+to+be+perfect+your+job+is+only+to+be+human+and+nothing+important+happens+in+life
found 2 videos: [['/talks/jacqueline_novogratz_inspiring_a_life_of_immersion', '2011'], ['/talks/barry_schwartz_our_loss_of_wisdom', '2009']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+conversations+really+reflect+what+s+happening+at+the+national+and+international+level+our+leaders
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+ourselves+want+everything+but+we+don+t+talk+about+the+costs+we+don+t+talk+about+the+sacrifice+one+of+my+favorite+quotes+from+literature
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+written+by+tillie+olsen+the+great+american+writer+from+the+south+in+a+short+story+called+oh+yes+she+talks+about+a
found 1 videos: [['/talks/jacqueline_novogratz_inspiring_a_life_of_immersion', '2011']]
selected: /talks/jacqueline_novogratz_inspiring_a_life_of_immersion
sleep 4 seconds to avoid blocking
------<920>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JaeRhimLee_2011G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+m+here+to+explain+why+i+m+wearing+these+ninja+pajamas
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+to+do+that+i+d+like+to+talk+first+about+environmental+toxins+in+our+bodies++so+some+of+you+may+know+about+the+chemical+bisphenol+a
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+a+material+hardener+and+synthetic+estrogen+that+s+found+in+the+lining+of+canned+foods+and+some+plastics
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+bpa+mimics+the+body+s+own+hormones+and+causes+neurological+and+reproductive+problems+and+it+s+everywhere+a+recent+study+found
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=percent+of+people+six+and+older++but+it+s+just+one+chemical+the+center+for+disease
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=says+we+have+two+hundred+and+nineteen+toxic+pollutants+in+our+bodies++and+this+includes+preservatives++pesticides+and+heavy+metals+like+lead+and+mercury
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+me+this+says+three+things++first+don+t+become+a+cannibal
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=second+we+are+both+responsible+for+and+the+victims+of+our+own+pollution
found 1 videos: [['/talks/jae_rhim_lee_my_mushroom_burial_suit', '2011']]
selected: /talks/jae_rhim_lee_my_mushroom_burial_suit
sleep 2 seconds to avoid blocking
------<921>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JaimeLerner_2007.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=understand+my+english+in+the+mornings+it+is+terrible+and+the+afternoon+is+worst
error: request timeout
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+made+some+speeches+starting+with+this
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=saying+city+is+not+a+problem+it+s+a+solution+and
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=more+and+more+i+m+convinced
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+it+s+not+only+a+solution+for+a+country++but+it+s+a+solution
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+the+problem+of+climate+change++but
found 2 videos: [['/talks/david_keith_a_critical_look_at_geoengineering_against_climate_change', '2007'], ['/talks/al_gore_averting_the_climate_crisis', '2006']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+have+a+very+pessimistic+approach+about
found 1 videos: [['/talks/jaime_lerner_a_song_of_the_city', '2008']]
selected: /talks/jaime_lerner_a_song_of_the_city
sleep 2 seconds to avoid blocking
------<922>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JakeBarton_2013S.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thousands+and+thousands+of+americans+back+to+work+by+building+bridges+and+infrastructure+and+tunnels
found 1 videos: [['/talks/jake_barton_the_museum_of_you', '2013']]
selected: /talks/jake_barton_the_museum_of_you
sleep 5 seconds to avoid blocking
------<923>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JakeWood_2011X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=after+having+served+four+years+in+the+united+states+marine+corps+and+deployments+to+both+iraq+and+afghanistan+i
found 1 videos: [['/talks/jake_wood_a_new_mission_for_veterans_disaster_relief', '2012']]
selected: /talks/jake_wood_a_new_mission_for_veterans_disaster_relief
sleep 5 seconds to avoid blocking
------<924>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JakobTrollback_2007.stm
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+motion+and+animation++and+also+i+m+an+old+dj+and+a+musician
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+music+videos+are+something+that+i+always+found+interesting
found 10 videos: [['/talks/jakob_trollback_a_new_kind_of_music_video', '2008'], ['/talks/torsten_reil_animate_characters_by_evolving_them', '2008'], ['/talks/zach_kaplan_keith_schacht_toys_and_materials_from_the_future', '2008'], ['/talks/david_perry_are_games_better_than_life', '2008'], ['/talks/david_pogue_cool_tricks_your_phone_can_do', '2009'], ['/talks/brewster_kahle_a_free_digital_library', '2008'], ['/talks/sugata_mitra_kids_can_teach_themselves', '2008'], ['/talks/sir_ken_robinson_do_schools_kill_creativity', '2006'], ['/talks/alan_kay_a_powerful_idea_about_ideas', '2008'], ['/talks/brenda_laurel_why_not_make_video_games_for_girls', '2009']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+they+always+seem+to+be+so+reactive++so+i+was+thinking++can+you+remove
found 1 videos: [['/talks/jakob_trollback_a_new_kind_of_music_video', '2008']]
selected: /talks/jakob_trollback_a_new_kind_of_music_video
sleep 4 seconds to avoid blocking
------<925>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JamaisCascio_2006.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+future+that+we+will+create
found 2 videos: [['/talks/neil_turok_my_wish_find_the_next_einstein_in_africa', '2008'], ['/talks/ray_kurzweil_the_accelerating_power_of_technology', '2006']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=can+be+a+future+that+we+ll+be+proud+of+i+think+about+this+every+day++it+s+quite+literally+my+job+i+m+co+founder+and+senior+columnist+at
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=alex+steffen+and+i+founded+worldchanging+in+late+two+thousand+and+three
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+since+then+we+and+our+growing+global+team+of+contributors
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+documented+the++ever+expanding+variety+of+solutions+that+are+out+there+right+now+and+on+the+near+horizon
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+a+little+over+two+years+we+ve+written+up+about+four+thousand+items
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=emerging+ideas+all+providing+a+path+to+a+future+that+s+more+sustainable+more+equitable
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=our+emphasis+on+solutions+is+quite+intentional
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+are+tons+of+places+to+go++online+and+off+if+what+you+want+to+find+is+the+latest+bit+of+news+about+just+how+quickly+our
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+want+to+offer+people+an+idea+of+what+they+can+do+about+it+we+focus+primarily+on+the+planet+s+environment
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+we+also+address+issues+of+global+development++international+conflict
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=responsible+use+of+emerging+technologies+even+the+rise+of+the+so+called+second+superpower
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+much+much+more+the+scope+of+solutions+that+we+discuss+is+actually+pretty+broad+but+that+reflects+both+the
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=range+of+challenges+that+need+to+be+met+and+the+kinds+of+innovations+that+will+allow+us+to+do+so
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+quick+sampling+really+can+barely+scratch+the+surface+but+to+give+you+a+sense+of+what+we+cover
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=tools+for+rapid+disaster+relief+such+as+this+inflatable+concrete+shelter
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=innovative+uses+of+bioscience+such+as+a+flower+that+changes+color+in+the+presence+of+landmines
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ultra+high+efficiency+designs+for+homes+and+offices++distributed+power+generation+using+solar+power++wind
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=vehicles+you+can+get+right+now+and+better+urban+design+so+you+don+t+need+to+drive+as+much+in+the+first+place
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=bio+mimetic+approaches+to+design+that+take+advantage+of+the+efficiencies+of+natural+models+in+both+vehicles+and+buildings++distributed+computing+projects+that+will+help+us+model+the+future+of+the+climate
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=also+a+number+of+the+topics+that+we+ve+been+talking+about+this+week+at+ted+are+things+that+we+ve+addressed+in+the+past+on+worldchanging
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=cradle+to+cradle+design+mit+s+fab+labs+the+consequences+of+extreme+longevity
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+one+laptop+per+child+project++even+gapminder++as+a
found 1 videos: [['/talks/alan_kay_a_powerful_idea_about_ideas', '2008']]
selected: /talks/alan_kay_a_powerful_idea_about_ideas
sleep 3 seconds to avoid blocking
------<926>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JamesBalog_2009G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=most+of+the+time+art+and+science+stare+at+each+other+across+a+gulf+of+mutual+incomprehension++there+is+great+confusion
found 1 videos: [['/talks/james_balog_time_lapse_proof_of_extreme_ice_loss', '2009']]
selected: /talks/james_balog_time_lapse_proof_of_extreme_ice_loss
sleep 4 seconds to avoid blocking
------<927>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JamesBeacham_2016X.stm
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=really+bothering+me+since+i+was+a+little+kid
found 4 videos: [['/talks/scott_galloway_how_amazon_apple_facebook_and_google_manipulate_our_emotions', '2017'], ['/talks/james_beacham_how_we_explore_unanswered_questions_in_physics', '2016'], ['/talks/ben_cort_what_commercialization_is_doing_to_cannabis', '2018'], ['/talks/sara_seager_the_search_for_planets_beyond_our_solar_system', '2015']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+s+related+to+a+question+that+scientists+have+been+asking+for+almost+one+hundred+years+with+no+answer
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+do+the+smallest+things+in+nature+the+particles+of+the+quantum+world+match+up+with+the+largest+things+in+nature+planets+and+stars+and+galaxies+held+together+by+gravity
found 1 videos: [['/talks/james_beacham_how_we_explore_unanswered_questions_in_physics', '2016']]
selected: /talks/james_beacham_how_we_explore_unanswered_questions_in_physics
sleep 5 seconds to avoid blocking
------<928>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JamesBGlattfelder_2012X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+the+crisis+came++the+serious+limitations+of+existing+economic+and+financial+models+immediately+became+apparent
found 1 videos: [['/talks/james_b_glattfelder_who_controls_the_world', '2013']]
selected: /talks/james_b_glattfelder_who_controls_the_world
sleep 1 seconds to avoid blocking
------<929>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JamesFlynn_2013.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+take+a+quick+voyage+over+the+cognitive+history+of+the+20th+century
found 1 videos: [['/talks/james_flynn_why_our_iq_levels_are_higher_than_our_grandparents', '2013']]
selected: /talks/james_flynn_why_our_iq_levels_are_higher_than_our_grandparents
sleep 2 seconds to avoid blocking
------<930>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JamesForbes_2009P.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+does+it+look+like+come+with+me+to+nine+hundred+and+fifteen+south+bloodworth+street+in+raleigh+north
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=where+i+grew+up+if+you+come+in+you+will+see+us+evening+time+at+table
found 6 videos: [['/talks/james_forbes_compassion_at_the_dinner_table', '2008'], ['/talks/john_doerr_salvation_and_profit_in_greentech', '2007'], ['/talks/frank_gehry_a_master_architect_asks_now_what', '2008'], ['/talks/tim_ferriss_smash_fear_learn_anything', '2009'], ['/talks/shashi_tharoor_why_nations_should_pursue_soft_power', '2009'], ['/talks/bunker_roy_learning_from_a_barefoot_movement', '2011']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=set+for+ten+but+not+always+all+seats+filled
found 7 videos: [['/talks/james_forbes_compassion_at_the_dinner_table', '2008'], ['/talks/philip_k_howard_four_ways_to_fix_a_broken_legal_system', '2010'], ['/talks/garrett_lisi_an_8_dimensional_model_of_the_universe', '2008'], ['/talks/ken_kamler_medical_miracle_on_everest', '2010'], ['/talks/bill_strickland_rebuilding_a_neighborhood_with_beauty_dignity_hope', '2008'], ['/talks/doris_kearns_goodwin_lessons_from_past_presidents', '2008'], ['/talks/norman_foster_my_green_agenda_for_architecture', '2008']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+the+point+when+dinner+is+ready+to+be+served
found 8 videos: [['/talks/james_forbes_compassion_at_the_dinner_table', '2008'], ['/talks/kate_orff_reviving_new_york_s_rivers_with_oysters', '2011'], ['/talks/george_whitesides_toward_a_science_of_simplicity', '2010'], ['/talks/christopher_moot_poole_the_case_for_anonymity_online', '2010'], ['/talks/nigel_marsh_how_to_make_work_life_balance_work', '2011'], ['/talks/lawrence_lessig_re_examining_the_remix', '2010'], ['/talks/ian_dunbar_dog_friendly_dog_training', '2008'], ['/talks/dan_gilbert_why_we_make_bad_decisions', '2008']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=since+mom+had+eight+kids++sometimes+she+said+she+couldn+t+tell+who+was+who+and+where+they+were+before+we+could
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+if+someone+happened+to+be+missing
found 4 videos: [['/talks/elizabeth_lesser_take_the_other_to_lunch', '2011'], ['/talks/samantha_power_a_complicated_hero_in_the_war_on_dictatorship', '2008'], ['/talks/sheryl_wudunn_our_century_s_greatest_injustice', '2010'], ['/talks/james_forbes_compassion_at_the_dinner_table', '2008']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+would+have+to+we+say+fix+a+plate+for+that+person++put+it+in+the+oven
found 14 videos: [['/talks/james_forbes_compassion_at_the_dinner_table', '2008'], ['/talks/cameron_herold_let_s_raise_kids_to_be_entrepreneurs', '2010'], ['/talks/eric_dishman_take_health_care_off_the_mainframe', '2010'], ['/talks/josette_sheeran_ending_hunger_now', '2011'], ['/talks/catherine_mohr_surgery_s_past_present_and_robotic_future', '2009'], ['/talks/jonathan_zittrain_the_web_as_random_acts_of_kindness', '2009'], ['/talks/helen_fisher_the_brain_in_love', '2008'], ['/talks/david_pogue_cool_tricks_your_phone_can_do', '2009'], ['/talks/stephen_palumbi_hidden_toxins_in_the_fish_we_eat', '2010'], ['/talks/jamais_cascio_tools_for_a_better_world', '2009'], ['/talks/clifford_stoll_the_call_to_learn', '2008'], ['/talks/barry_schwartz_our_loss_of_wisdom', '2009'], ['/talks/tim_harford_trial_error_and_the_god_complex', '2011'], ['/talks/carl_honore_in_praise_of_slowness', '2007']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=then+we+could+say+grace++and+we+could+eat
found 10 videos: [['/talks/rebecca_saxe_how_we_read_each_other_s_minds', '2009'], ['/talks/james_forbes_compassion_at_the_dinner_table', '2008'], ['/talks/dean_kamen_the_emotion_behind_invention', '2010'], ['/talks/aaron_koblin_visualizing_ourselves_with_crowd_sourced_data', '2011'], ['/talks/barry_schuler_genomics_101', '2009'], ['/talks/john_francis_walk_the_earth_my_17_year_vow_of_silence', '2008'], ['/talks/ben_goldacre_battling_bad_science', '2011'], ['/talks/shea_hembrey_how_i_became_100_artists', '2011'], ['/talks/kathryn_schulz_on_being_wrong', '2011'], ['/talks/billy_graham_on_technology_and_faith', '2008']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=also+while+we+were+at+the+table++there+was+a+ritual+in+our+family
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+something+significant+had+happened+for+any+one+of+us
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=had+just+been+elected+as+the+president+of+the+pta
found 1 videos: [['/talks/james_forbes_compassion_at_the_dinner_table', '2008']]
selected: /talks/james_forbes_compassion_at_the_dinner_table
sleep 2 seconds to avoid blocking
------<931>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JamesGeary_2009G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=lives+a+secret+life+all+around+us+we+utter+about+six+metaphors+a+minute++metaphorical+thinking+is+essential+to+how+we+understand+ourselves
found 1 videos: [['/talks/james_geary_metaphorically_speaking', '2009']]
selected: /talks/james_geary_metaphorically_speaking
sleep 1 seconds to avoid blocking
------<932>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JamesGreen_2015P.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+there+life+beyond+earth+in+our+solar+system++wow+what+a+powerful+question
found 1 videos: [['/talks/james_green_3_moons_and_a_planet_that_could_have_alien_life', '2016']]
selected: /talks/james_green_3_moons_and_a_planet_that_could_have_alien_life
sleep 5 seconds to avoid blocking
------<933>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JamesHansen_2012.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+would+cause+me+a+reticent+midwestern+scientist+to+get+myself+arrested
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+front+of+the+white+house+protesting++and+what+would+you+do+if+you+knew+what+i+know+let+s+start+with+how+i
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=got+to+this+point+i+was+lucky+to+grow+up+at+a+time
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+it+was+not+difficult+for+the+child+of+a+tenant+farmer+to+make+his+way+to+the+state+university+and+i+was+really+lucky
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+go+to+the+university+of+iowa+where+i+could+study+under+professor+james+van+allen
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+built+instruments+for+the+first+u+s+satellites+professor+van+allen
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=told+me+about+observations+of+venus
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+there+was+intense+microwave+radiation+did+it+mean+that+venus+had+an+ionosphere+or+was+venus+extremely+hot
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+right+answer++confirmed+by+the+soviet+venera+spacecraft+was+that+venus+was
found 1 videos: [['/talks/james_hansen_why_i_must_speak_out_about_climate_change', '2012']]
selected: /talks/james_hansen_why_i_must_speak_out_about_climate_change
sleep 3 seconds to avoid blocking
------<934>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JamesHowardKunstler_2004.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+our+everyday+environments+in+america+is+entropy+made+visible
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+describe+this+you+know++i+like+to+call+it+the+national+automobile+slum+you+can+call+it+suburban+sprawl
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+it+s+appropriate+to+call+it+the+greatest+misallocation+of+resources+in+the+history+of+the+world++you+can+call+it+a
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+s+a+tremendous+problem+for+us
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+outstanding+the+salient+problem+about+this+for+us+is+that+these+are+places+that+are+not+worth+caring+about+we+re
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=going+to+talk+about+that+some+more
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+sense+of+place+your+ability+to+create+places+that+are+meaningful+and+places+of+quality+and+character+depends+entirely+on+your+ability+to+define+space+with+buildings+and+to+employ
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=employ+the+vocabularies+grammars+syntaxes+rhythms+and+patterns+of+architecture
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+order+to+inform+us+who+we+are+the+public+realm
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=has+two+roles+it+is+the+dwelling+place+of+our+civilization
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+our+civic+life+and+it+is+the+physical+manifestation+of+the+common+good
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+when+you+degrade+the+public+realm+you+will+automatically+degrade+the+quality+of+your+civic+life+and+the+character+of+all+the+enactments
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+your+public+life+and+communal+life+that+take+place
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there++the+public+realm+comes+mostly+in+the+form+of+the+street+in+america+because+we+don+t+have+the
error: request timeout
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=market+squares+of+older+cultures++and
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=your+ability+to+define+space+and+to+create+places+that+are+worth+caring+about
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+comes+from+a+body+of+culture+that+we+call+the+the+culture+of+civic+design+this+is+a+body+of+knowledge+method
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=after+world+war+ii+and+decided+we+don+t+need+that+anymore+we+re+not+going+to+use+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+consequently++we+can+see+the+result+all+around+us
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+public+realm+has+to+inform+us+not+only+where+we+are+geographically
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+it+has+to+inform+us+where+we+are+in+our+culture+where+we+ve+come+from+what+kind+of+people+we+are++and+it+needs+to+by+doing+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+needs+to+afford+us+a+glimpse
found 1 videos: [['/talks/bono_my_wish_three_actions_for_africa', '2006']]
selected: /talks/bono_my_wish_three_actions_for_africa
sleep 2 seconds to avoid blocking
------<935>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JamesLyne_2013.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=be+showing+some+of+the+cybercriminals++latest+and+nastiest+creations+so+basically++please+don+t+go+and+download+any+of+the+viruses+that+i+show+you
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+of+you+might+be+wondering+what+a+cybersecurity+specialist+looks+like+and+i+thought+i+d+give+you+a+quick+insight+into+my+career+so+far
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+a+pretty+accurate+description++this+is+what+someone+that+specializes+in+malware+and+hacking+looks+like
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+today+computer+viruses+and+trojans
found 2 videos: [['/talks/mikko_hypponen_fighting_viruses_defending_the_net', '2011'], ['/talks/james_lyne_everyday_cybercrime_and_what_you_can_do_about_it', '2013']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=designed+to+do+everything+from+stealing+data+to+watching+you+in+your+webcam+to+the+theft+of+billions+of+dollars
found 1 videos: [['/talks/james_lyne_everyday_cybercrime_and_what_you_can_do_about_it', '2013']]
selected: /talks/james_lyne_everyday_cybercrime_and_what_you_can_do_about_it
sleep 4 seconds to avoid blocking
------<936>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JamesNachtwey_2007.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+someone+who+has+spent+his+entire+career+trying+to+be+invisible
found 1 videos: [['/talks/james_nachtwey_my_wish_let_my_photographs_bear_witness', '2007']]
selected: /talks/james_nachtwey_my_wish_let_my_photographs_bear_witness
sleep 2 seconds to avoid blocking
------<937>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JamesPatten_2013U.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=computer+is+an+incredibly+powerful+means+of+creative+expression
found 1 videos: [['/talks/james_patten_the_best_computer_interface_maybe_your_hands', '2014']]
selected: /talks/james_patten_the_best_computer_interface_maybe_your_hands
sleep 1 seconds to avoid blocking
------<938>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JamesRandi_2007.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=see+so+many+fine+folks+out+here+and+so+many+smiling+faces+i
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+i+am+a+conjurer+now+i+prefer+that+term+over+magician+because+if+i+were+a+magician+that+would+mean
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+i+use+spells+and+incantations+and+weird+gestures
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+order+to+accomplish+real+magic+no+i+don+t+do+that+i+m+a+conjurer+who+is+someone+who+pretends+to+be+a+real+magician
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+do+we+go+about+that+sort+of+thing
found 3 videos: [['/talks/jonathan_drori_what_we_think_we_know', '2008'], ['/talks/chris_abani_telling_stories_from_africa', '2007'], ['/talks/chimamanda_ngozi_adichie_the_danger_of_a_single_story', '2009']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+depend+on+the+fact+that+audiences+such+as+yourselves+will+make+assumptions+for+example+when+i+walked+up+here+and+i+took+the+microphone
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=from+the+stand+and+switched+it+on+you+assumed+this+was+a+microphone+which+it+is+not
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+a+matter+of+fact+this+is+something+that+about+half+of+you+more+than+half+of+you+will+not+be+familiar+with+it+s+a
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=makes+a+very+bad+microphone+i+ve+tried+it+many+times
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+other+assumption+that+you+made+and+this+little+lesson+is+to+show+you+that+you+will+make+assumptions+not+only+that+you+can+but+that+you+will+when+they+are+properly+suggested+to+you
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+believe+i+m+looking+at+you
found 5 videos: [['/talks/john_maeda_designing_for_simplicity', '2007'], ['/talks/maira_kalman_the_illustrated_woman', '2007'], ['/talks/keith_barry_brain_magic', '2008'], ['/talks/emily_levine_a_theory_of_everything', '2009'], ['/talks/rory_sutherland_life_lessons_from_an_ad_man', '2009']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=wrong++i+m+not+looking+at+you+i+can+t+see+you++i+know+you+re+out+there+they+told+me+backstage+it+s+a+full+house+and+such+i+know+you+re+there+because+i+can+hear+you++but+i+can+t+see+you+because+i+normally+wear+glasses+these+are+not+glasses
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=quite+empty+frames+now+why+would+a+grown+man+appear+before+you+wearing+empty+frames+on+his+face
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+fool+you+ladies+and+gentlemen+to+deceive+you+to+show+that+you+too+can+make+assumptions++don+t+you+ever+forget+that
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+i+have+to+do+something+first+of+all+switch+to+real+glasses+so+i+can+actually+see+you+which+would+probably+be+a+convenience+i+don+t+know+i+haven+t+had+a+good+look+well
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+have+to+do+something+now+which+seems+a+little+bit+strange+for+a+magician++but+i+m+going+to+take+some+medication+this+is
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+full+bottle+of+calms+forte+i+ll+explain+that+in+just+a+moment++ignore+the+instructions+that+s+what+the+government+has+to+put+in+there
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+moment+i+must+tell+you+that+i+am+an+actor+i+m+an+actor+who+plays+a+specific+part+i+play+the+part+of+a+magician
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=wizard+if+you+will+a+real+wizard+if+someone+were+to+appear+on+this+stage+in+front+of+me+and+actually+claim+to+be
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=an+ancient+prince+of+denmark+named+hamlet+you+would+be+insulted
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+rightly+so+why+would+a+man+assume+that+you+would+believe+something+bizarre+like+this+but+there+exists+out+there
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+very+large+population+of+people+who+will+tell+you
found 3 videos: [['/talks/parag_khanna_mapping_the_future_of_countries', '2009'], ['/talks/ray_anderson_the_business_logic_of_sustainability', '2009'], ['/talks/louise_fresco_we_need_to_feed_the_whole_world', '2009']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+they+have+psychic++magical+powers+that+they+can+predict+the+future+that+they+can+make+contact+with+with+the+deceased++oh+they+also+say
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+will+sell+you+astrology+or+other+fortunetelling+methods+oh
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+gladly+sell+you+that++yes++and+they+also+say+that+they+can+give+you+perpetual+motion+machines+and+free+energy+systems++they+claim+to+be+psychics+or+sensitives+whatever+they+can
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thing+that+has+made+a+big+comeback+just+recently+is+this+business+of+speaking+with+the+dead
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+to+my+innocent+mind+dead+implies
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+might+agree+with+me+on+that++but+these+people++they+tend+to+tell+you+that+not+only+can+they+communicate+with+the+dead
found 2 videos: [['/talks/david_carson_design_and_discovery', '2009'], ['/talks/hans_rosling_asia_s_rise_how_and_when', '2009']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+they+can+hear+the+dead+as+well+and+they+can+relay+this+information+back+to+the+living
found 1 videos: [['/talks/ben_saunders_why_did_i_ski_to_the_north_pole', '2006']]
selected: /talks/ben_saunders_why_did_i_ski_to_the_north_pole
sleep 2 seconds to avoid blocking
------<939>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JamesStavridis_2012G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+gonna+talk+a+little+bit+about
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=security++because+we+ve+got+to+get+better+at+security+in+this+21st+century+let+me+start+by+saying++let+s+look+back+to+the
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+kind+of+get+a+sense+of
found 15 videos: [['/talks/colin_powell_kids_need_structure', '2013'], ['/talks/aris_venetikidis_making_sense_of_maps', '2012'], ['/talks/jeff_iliff_one_more_reason_to_get_a_good_night_s_sleep', '2014'], ['/talks/joe_kowan_how_i_beat_stage_fright', '2014'], ['/talks/scott_fraser_why_eyewitnesses_get_it_wrong', '2012'], ['/talks/antonio_damasio_the_quest_to_understand_consciousness', '2011'], ['/talks/jinsop_lee_design_for_all_5_senses', '2013'], ['/talks/jeremy_heimans_what_new_power_looks_like', '2014'], ['/talks/jane_mcgonigal_the_game_that_can_give_you_10_extra_years_of_life', '2012'], ['/talks/dan_ariely_what_makes_us_feel_good_about_our_work', '2013'], ['/talks/alanna_shaikh_how_i_m_preparing_to_get_alzheimer_s', '2012'], ['/talks/seth_shostak_et_is_probably_out_there_get_ready', '2012'], ['/talks/mike_biddle_we_can_recycle_plastic', '2011'], ['/talks/john_maeda_how_art_technology_and_design_inform_creative_leaders', '2012'], ['/talks/srdja_popovic_how_to_topple_a_dictator', '2011']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+that+style+of+security+worked+for+us
found 3 videos: [['/talks/james_stavridis_a_navy_admiral_s_thoughts_on_global_security', '2012'], ['/talks/william_black_how_to_rob_a_bank_from_the_inside_that_is', '2014'], ['/talks/david_birch_a_new_way_to_stop_identity_theft', '2012']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+verdun+a+battlefield+in+france+just+north+of+the+nato+headquarters+in+belgium
found 1 videos: [['/talks/james_stavridis_a_navy_admiral_s_thoughts_on_global_security', '2012']]
selected: /talks/james_stavridis_a_navy_admiral_s_thoughts_on_global_security
sleep 3 seconds to avoid blocking
------<940>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JamesSurowiecki_2005.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+was+in+an+area+called+wellawatta+a+prime+residential+area+in+colombo
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+stood+on+the+railroad+tracks+that+ran+between+my+friend+s+house+and+the+beach+the+tracks+are+elevated+about+eight+feet+from+the+waterline+normally
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+at+that+point+the+water+had+receded+to+a+level+three+or+four+feet+below+normal
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+d+never+seen+the+reef+here+before+there+were+fish+caught+in+rock+pools+left+behind+by+the+receding+water
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+children+jumped+down+and+ran+to+the+rock+pools+with+bags++they+were+trying+to+catch+fish+no+one+realized+that+this+was+a+very+bad+idea
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+people+on+the+tracks+just+continued+to+watch+them
error: request timeout
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+my+friend+s+house+then+someone+on+the+tracks+screamed
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=before+i+could+turn+around+everyone+on+the+tracks+was+screaming+and+running+the+water+had+started+coming+back
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+foaming+over+the+reef+the+children+managed+to+run+back+onto+the+tracks+no+one+was+lost+there+but+the+water+continued+to+climb
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+about+two+minutes+it+had+reached+the+level+of+the+railroad+tracks+and+was+coming+over+it
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+had+run+about+one+hundred+meters+by+this+time+it+continued+to+rise+i+saw+an+old+man
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=standing+at+his+gate+knee+deep+in+water+refusing+to+move+he+said+he+d+lived+his+whole+life+there+by+the+beach++and+that+he+would
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+boy+broke+away+from+his+mother+to+run+back+into+his+house+to+get+his+dog+who+was+apparently+afraid
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=an+old+lady+crying+was+carried+out+of+her+house+and+up+the+road+by+her
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+slum+built+on+the+railroad+reservation+between+the+sea+and+the+railroad+tracks+was+completely+swept+away
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=since+this+was+a+high+risk+location+the+police+had+warned+the+residents+and+no+one+was+there+when+the+water+rose++but+they+had+not+had+any+time+to+evacuate+any+belongings
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+hours+afterwards+the+sea+was+strewn+with+bits+of+wood+for+miles+around+all+of+this+was+from+the+houses+in+the+slum
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+the+waters+subsided+it+was+as+if+it+had+never+existed
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+may+seem+hard+to+believe+unless+you+ve+been+reading+lots+and+lots+of+news+reports
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+in+many+places+after+the+tsunami+villagers+were+still+terrified+when+what+was+a+tranquil+sea+swallows+up+people+homes+and+long+tail+boats+mercilessly+without+warning
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+no+one+can+tell+you+anything+reliable+about+whether+another+one+is+coming+i+m+not+sure+you+d+want+to+calm+down+either
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+the+scariest+things+about+the+tsunami+that+i+ve+not+seen+mentioned+is+the+complete+lack+of+information
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+may+seem+minor+but+it+is+terrifying+to+hear+rumor+after+rumor+after+rumor+that+another+tidal+wave++bigger+than+the+last+will+be+coming+at+exactly+one+p+m+or
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=perhaps+tonight+or+perhaps+you+don+t+even+know+if+it+is+safe+to+go+back+down+to+the+water+to+catch+a+boat+to+the+hospital
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=instead++which+is+more+protected+we+don+t+think+another+wave+is+coming+right+away
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+the+phi+phi+hill+resort+i+was+tucked+into+the+corner+furthest+away+from+the+television++but+i+strained+to+listen+for+information
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+reported+that+there+was+an+eight+point+five+magnitude+earthquake+in+sumatra+which+triggered+the+massive+tsunami
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=having+this+news+was+comforting+in+some+small+way+to+understand+what+had+just+happened+to+us+however+the+report+focused+on+what+had+already+occurred
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+offered+no+information+on+what+to+expect+now
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+general+everything+was+merely+hearsay+and+rumor+and+not+a+single+person+i+spoke+to+for+over+thirty+six+hours+knew+anything+with+any+certainty
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=those+were+two+accounts+of+the+asian+tsunami+from
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=two+internet+blogs+that+essentially+sprang+up
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+going+to+show+you+two+video
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=segments+from+the+tsunami+that+that+also+were+shown+on+blogs+i+should+warn+you+they+re+pretty+powerful+one+from+thailand+and+the+second+one+from+phuket+as+well
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+coming+again+new+wave
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=first+day+there+was+actually+a+kind+of+dearth+of+live+reporting+there+was+a+dearth+of+live+video+and+some+people+complained+about+this+they+said+the+blogsters+let+us+down
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+became+very+clear+was+that+within+a+few+days++the+outpouring+of+information
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=had+was+a+group+of+essentially+unorganized++unconnected+writers+video+bloggers++etc+who+were+able+to+come+up+with+a+collective+portrait+of+a+disaster+that+gave+us+a+much+better+sense+of+what+it+was+like+to+actually+be+there
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=than+the+mainstream+media+could+give+us++and+so+in+some+ways+the+tsunami+can+be+seen+as+a+sort+of+seminal+moment+a+moment+in+which+the+blogosphere+came+to+a+certain+degree+of+age
error: request timeout
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+move+now+from+this+kind+of+the+sublime+in+the+traditional+sense+of+the+word+that+is+to+say+awe+inspiring+terrifying+to+the+somewhat+more+mundane++because+when+we+think
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+blogs++i+think+for+most+of+us+who+are+are+concerned+about+them+we+re+primarily+concerned+with+things+like+politics+technology+etc
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+ask+three+questions+in+this+talk+in+the+ten+minutes+that+remain+about+the+blogosphere
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+first+one+is+what+does+it+tell+us+about+our+ideas+about+what+motivates+people+to+do+things
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+second+is+do+blogs+genuinely+have+the+possibility+of+of
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=accessing+a+kind+of+collective+intelligence+that+has+previously+remained+for+the+most+part+untapped++and+then+the+third+part+is
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+are+the+potential+problems+or+the+dark+side+of+blogs+as+we+know+them
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ok+the+first+question+what+do+they+tell+us+about+why+people+do+things+one+of+the+fascinating+things+about+the+blogosphere+specifically+and+of+course+the+internet+more+generally+and+it+s+going+to+seem+like+a+very+obvious+point+but+i+think+it+is+an+important+one+to+think+about
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+that+the+people+who+are+generating+these+enormous+reams+of+content+every+day
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+are+spending+enormous+amounts+of+time+organizing+linking+commenting+on+the+substance+of+the+internet+are+doing+so+primarily+for+free
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+are+not+getting+paid+for+it+in+any+way+other+than+in+the+attention+and+to+some+extent+the+reputational+capital+that+they+gain+from+doing+a+good+job
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+is+at+least+to+a+traditional+economist+somewhat+remarkable
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+the+traditional+account+of+economic+man+would+say+that++basically+you+do+things+for
found 1 videos: [['/talks/charles_leadbeater_the_era_of_open_innovation', '2007']]
selected: /talks/charles_leadbeater_the_era_of_open_innovation
sleep 5 seconds to avoid blocking
------<941>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JamesVeitch_2015G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+got+one+of+those+spam+emails+and+it+managed+to+get+through+my+spam+filter+i+m+not+quite+sure+how+but+it+turned+up+in+my+inbox+and+it+was+from+a+guy+called+solomon
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=james+veitch++i+have+an+interesting+business+proposal+i+want+to+share+with+you+solomon
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+my+hand+was+kind+of+hovering+on+the+delete+button+right+i+was+looking+at+my+phone+i+thought+i+could+just+delete+this
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+i+could+do+what+i+think+we+ve+all
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+knew+i+was+dealing+with+a+professional
found 11 videos: [['/talks/salvatore_iaconesi_what_happened_when_i_open_sourced_my_brain_cancer', '2015'], ['/talks/andrew_solomon_depression_the_secret_we_share', '2013'], ['/talks/dan_pallotta_the_way_we_think_about_charity_is_dead_wrong', '2013'], ['/talks/noy_thrupkaew_human_trafficking_is_all_around_you_this_is_how_it_works', '2015'], ['/talks/rodrigo_canales_the_deadly_genius_of_drug_cartels', '2013'], ['/talks/laura_vanderkam_how_to_gain_control_of_your_free_time', '2016'], ['/talks/robyn_stein_deluca_the_good_news_about_pms', '2015'], ['/talks/veerle_provoost_do_kids_think_of_sperm_donors_as_family', '2016'], ['/talks/hilary_cottam_social_services_are_broken_how_we_can_fix_them', '2015'], ['/talks/caleb_barlow_where_is_cybercrime_really_coming_from', '2017'], ['/talks/david_camarillo_why_helmets_don_t_prevent_concussions_and_what_might', '2016']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+said+how+much+is+it+worth+he+said+we+will+start+with+smaller+quantity
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+isn+t+the+first+time+i+ve+shipped+bullion+my+friend+no+no
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+if+we+re+going+via+the+postal+service+it+ought+to+be+signed+for+that+s+a+lot+of+gold
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+said+it+will+not+be+easy+to+convince+my+company+to+do+larger+quantity+shipment+i+said+solomon+i+m+completely+with+you+on+this+one+i+m+putting+together+a+visual
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+you+to+take+into+the+board+meeting+hold+tight
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+have+any+statisticians+in+the+house+but+there+s+definitely+something+going+on
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=find+a+helpful+chart+i+ve+had+one+of+my+assistants+run+the+numbers+we+re
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ready+for+shipping+as+much+gold+as+possible
found 6 videos: [['/talks/astro_teller_the_unexpected_benefit_of_celebrating_failure', '2016'], ['/talks/apollo_robbins_the_art_of_misdirection', '2013'], ['/talks/thomas_peschak_dive_into_an_ocean_photographer_s_world', '2016'], ['/talks/olivier_scalabre_the_next_manufacturing_revolution_is_here', '2016'], ['/talks/bran_ferren_to_create_for_the_ages_let_s_combine_art_and_engineering', '2014'], ['/talks/charmian_gooch_meet_global_corruption_s_hidden_players', '2013']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+always+a+moment+where+they+try+to+tug+your+heartstrings+and+this+was+it+for+solomon+he+said+i+will+be+so+much+happy+if+the+deal+goes+well+because+i+m+going+to+get+a+very+good+commission+as+well+and+i+said+that+s+amazing+what+are+you+going+to+spend+your+cut+on
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+he+said+on+realestate+what+about+you
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+thirty+different+varieties++also+you+can+cut+up+carrots+and+you+can+dip+them
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+have+to+understand+this+had+been+going+for+like+weeks+albeit+hitherto+the+greatest+weeks++of+my+life+but+i+had+to+knock+it+on+the+head+it+was+getting
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=friends+were+saying+james+do+you+want+to+come+for+a+drink+i+was+like+i+can+t+i+m+expecting+an+email+about+some+gold
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+figured+i+had+to+knock+it+on+the+head+i+had+to+take+it+to+a+ridiculous+conclusion++so+i+concocted+a+plan+i+said
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=solomon+i+m+concerned+about+security+when+we+email+each+other+we+need+to+use+a+code
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+spent+all+night+coming+up+with+this+code+we+need+to+use+in+all+further+correspondence+lawyer
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=legal+fizzy+cola+bottle+claim+peanut+m+&+ms+documents+jelly+beans+western+union++a+giant+gummy+lizard
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+you+have+to+be+consistent+then
found 17 videos: [['/talks/dennis_shasha_can_you_solve_the_temple_riddle', '2016'], ['/talks/nick_bostrom_what_happens_when_our_computers_get_smarter_than_we_are', '2015'], ['/talks/andreea_s_calude_does_grammar_matter', '2016'], ['/talks/jamie_bartlett_how_the_mysterious_dark_net_is_going_mainstream', '2015'], ['/talks/christiana_figueres_the_inside_story_of_the_paris_climate_agreement', '2016'], ['/talks/shivani_siroya_a_smart_loan_for_people_with_no_credit_history_yet', '2016'], ['/talks/jim_hemerling_5_ways_to_lead_in_an_era_of_constant_change', '2016'], ['/talks/jamila_lyiscott_3_ways_to_speak_english', '2014'], ['/talks/leah_lagos_and_jaspal_ricky_singh_how_playing_sports_benefits_your_body_and_your_brain', '2016'], ['/talks/alexander_wagner_what_really_motivates_people_to_be_honest_in_business', '2017'], ['/talks/harish_manwani_profit_s_not_always_the_point', '2014'], ['/talks/norman_spack_how_i_help_transgender_teens_become_who_they_want_to_be', '2014'], ['/talks/sandra_aamodt_why_dieting_doesn_t_usually_work', '2014'], ['/talks/sharon_brous_it_s_time_to_reclaim_religion', '2016'], ['/talks/stacy_smith_the_data_behind_hollywood_s_sexism', '2017'], ['/talks/paul_kemp_robertson_bitcoin_sweat_tide_meet_the_future_of_branded_currency', '2013'], ['/talks/james_flynn_why_our_iq_levels_are_higher_than_our_grandparents', '2013']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+have+to+use+the+code
found 15 videos: [['/talks/alex_gendler_can_you_solve_the_pirate_riddle', '2017'], ['/talks/mitch_resnick_let_s_teach_kids_to_code', '2013'], ['/talks/riccardo_sabatini_how_to_read_the_genome_and_build_a_human_being', '2016'], ['/talks/danielle_feinberg_the_magic_ingredient_that_brings_pixar_movies_to_life', '2016'], ['/talks/dan_bricklin_meet_the_inventor_of_the_electronic_spreadsheet', '2017'], ['/talks/uri_hasson_this_is_your_brain_on_communication', '2016'], ['/talks/ellen_jorgensen_biohacking_you_can_do_it_too', '2013'], ['/talks/james_lyne_everyday_cybercrime_and_what_you_can_do_about_it', '2013'], ['/talks/chris_domas_the_1s_and_0s_behind_cyber_warfare', '2014'], ['/talks/reshma_saujani_teach_girls_bravery_not_perfection', '2016'], ['/talks/miguel_nicolelis_a_monkey_that_controls_a_robot_with_its_thoughts_no_really', '2013'], ['/talks/linda_liukas_a_delightful_way_to_teach_kids_about_computers', '2016'], ['/talks/jorge_ramos_why_journalists_have_an_obligation_to_challenge_power', '2017'], ['/talks/james_patten_the_best_computer_interface_maybe_your_hands', '2014'], ['/talks/don_tapscott_how_the_blockchain_is_changing_money_and_business', '2016']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+followed+is+the+greatest+email+i+ve+ever+received
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+not+joking+this+is+what+turned+up+in+my+inbox++this+was+a+good+day
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+am+trying+to+raise+the+balance+for+the+gummy
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+he+can+submit+all+the+needed+fizzy+cola+bottle+jelly+beans+to+the+creme+egg
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+the+peanut+m+&+ms+process+to+start
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=send+one+thousand+five+hundred+pounds+via+a+giant
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+got+me+thinking+like+what+would+happen+if+i+just+spent+as+much+time+as+could+replying+to+as+many+scam+emails+as+i+could+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+what+i+ve+been+doing
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+i+m+doing+is+wasting+their+time+and+i+think+any+time+they+re+spending+with+me+is+time+they+re+not+spending+scamming+vulnerable+adults+out+of+their+savings++right++and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+re+going+to+do
found 16 videos: [['/talks/taiye_selasi_don_t_ask_where_i_m_from_ask_where_i_m_a_local', '2015'], ['/talks/dame_ellen_macarthur_the_surprising_thing_i_learned_sailing_solo_around_the_world', '2015'], ['/talks/dame_stephanie_shirley_why_do_ambitious_women_have_flat_heads', '2015'], ['/talks/joy_lin_if_superpowers_were_real_super_speed', '2013'], ['/talks/stewart_brand_the_dawn_of_de_extinction_are_you_ready', '2013'], ['/talks/adam_foss_a_prosecutor_s_vision_for_a_better_justice_system', '2016'], ['/talks/steve_ramirez_and_xu_liu_a_mouse_a_laser_beam_a_manipulated_memory', '2013'], ['/talks/moshe_szyf_how_early_life_experience_is_written_into_dna', '2017'], ['/talks/toby_eccles_invest_in_social_change', '2013'], ['/talks/amy_webb_how_i_hacked_online_dating', '2013'], ['/talks/danny_hillis_the_internet_could_crash_we_need_a_plan_b', '2013'], ['/talks/stefan_larsson_what_doctors_can_learn_from_each_other', '2013'], ['/talks/alastair_parvin_architecture_for_the_people_by_the_people', '2013'], ['/talks/jean_paul_mari_the_chilling_aftershock_of_a_brush_with_death', '2015'], ['/talks/olivier_scalabre_the_next_manufacturing_revolution_is_here', '2016'], ['/talks/nicholas_negroponte_a_30_year_history_of_the_future', '2014']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+and+i+highly+recommend+you+do
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=get+yourself+a+pseudonymous+email+address+don+t+use+your+own+email+address+that+s+what+i+was+doing+at+the+start+and+it+was+a+nightmare+i+d
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=wake+up+in+the+morning+and+have+a+thousand+emails+about+penis+enlargements
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=only+one+of+which+was+a+legitimate+response
found 8 videos: [['/talks/yuval_noah_harari_nationalism_vs_globalism_the_new_political_divide', '2017'], ['/talks/bob_mankoff_anatomy_of_a_new_yorker_cartoon', '2013'], ['/talks/karima_bennoune_when_people_of_muslim_heritage_challenge_fundamentalism', '2014'], ['/talks/jennifer_senior_for_parents_happiness_is_a_very_high_bar', '2014'], ['/talks/william_black_how_to_rob_a_bank_from_the_inside_that_is', '2014'], ['/talks/gretchen_carlson_david_brooks_political_common_ground_in_a_polarized_united_states', '2017'], ['/talks/richard_ledgett_the_nsa_responds_to_edward_snowden_s_ted_talk', '2014'], ['/talks/victoria_pratt_how_judges_can_show_respect', '2017']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+a+medical+question+i+had+but+i+ll+tell+you+what+though+guys+i+ll+tell
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=any+day+is+a+good+day+any+day+is+a+good+day+if+you+receive+an+email+that+begins+like+this
found 3 videos: [['/talks/rives_the_museum_of_four_in_the_morning', '2014'], ['/talks/leana_wen_what_your_doctor_won_t_disclose', '2014'], ['/talks/don_tapscott_how_the_blockchain_is_changing_money_and_business', '2016']]
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+second+wife+of+nelson+mandela+the+former+south+african+president+i+was+like+oh+that+winnie+mandela
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+need+to+transfer+forty+five+million+dollars+out+of+the+country+because+of+my+husband+nelson+mandela+s+health+condition+let+that+sink+in
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+and+this+looks+fairly+legitimate+this+is+a+letter+of+authorization+but+to+be+honest+if+there+s+nothing+written+on+it+it+s+just+a+shape+i
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=said+winnie+i+m+really+sorry+to+hear+of+this+given+that+nelson+died+three+months+ago+i+d+describe+his+health+condition+as
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=health+condition+you+can+have+not+being+alive
found 11 videos: [['/talks/andrew_solomon_depression_the_secret_we_share', '2013'], ['/talks/nadine_hachach_haram_how_augmented_reality_could_change_the_future_of_surgery', '2017'], ['/talks/elizabeth_blackburn_the_science_of_cells_that_never_get_old', '2017'], ['/talks/sakena_yacoobi_how_i_stopped_the_taliban_from_shutting_down_my_school', '2015'], ['/talks/ingrid_betancourt_what_six_years_in_captivity_taught_me_about_fear_and_faith', '2017'], ['/talks/paul_pholeros_how_to_reduce_poverty_fix_homes', '2013'], ['/talks/joy_lin_if_superpowers_were_real_immortality', '2013'], ['/talks/alyson_mcgregor_why_medicine_often_has_dangerous_side_effects_for_women', '2015'], ['/talks/mike_velings_the_case_for_fish_farming', '2016'], ['/talks/dr_natascha_m_santos_debunking_the_myths_of_ocd', '2015'], ['/talks/aala_el_khani_what_it_s_like_to_be_a_parent_in_a_war_zone', '2017']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=she+said+kindly+comply+with+my+bankers+instructions+one+love
found 0 videos: []
error: no video is found.
sleep 2 seconds to avoid blocking
------<942>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JamesVeitch_2016T.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+funny+the+things+you+forget+i+went+to+see+my+mother+the+other+day++and+she+told+me+this+story+that+i+d+completely+forgotten+about
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+when+we+were+driving+together+she+would+pull+the+car+over+and+by+the+time+she+had+gotten+out+of+the+car+and+gone+around+the+car+to+let+me+out+of+the+car+i
found 2 videos: [['/talks/alice_goffman_how_we_re_priming_some_kids_for_college_and_others_for_prison', '2015'], ['/talks/christian_picciolini_my_descent_into_america_s_neo_nazi_movement_and_how_i_got_out', '2018']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=would+have+already+gotten+out+of+the+car+and+pretended+to+have+died
found 2 videos: [['/talks/jim_holt_why_does_the_universe_exist', '2014'], ['/talks/gretchen_carlson_david_brooks_political_common_ground_in_a_polarized_united_states', '2017']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+that+s+how+you+die
found 13 videos: [['/talks/stephen_burt_why_people_need_poetry', '2014'], ['/talks/adam_driver_my_journey_from_marine_to_actor', '2016'], ['/talks/dustin_yellin_a_journey_through_the_mind_of_an_artist', '2015'], ['/talks/roger_stein_a_bold_new_way_to_fund_drug_research', '2014'], ['/talks/jonathan_haidt_can_a_divided_america_heal', '2016'], ['/talks/robert_muggah_the_biggest_risks_facing_cities_and_some_solutions', '2017'], ['/talks/valarie_kaur_3_lessons_of_revolutionary_love_in_a_time_of_rage', '2018'], ['/talks/rich_benjamin_my_road_trip_through_the_whitest_towns_in_america', '2015'], ['/talks/travis_kalanick_uber_s_plan_to_get_more_people_into_fewer_cars', '2016'], ['/talks/gary_haugen_the_hidden_reason_for_poverty_the_world_needs_to_address_now', '2015'], ['/talks/neha_narula_the_future_of_money', '2016'], ['/talks/karina_galperin_should_we_simplify_spelling', '2017'], ['/talks/mia_nacamulli_the_benefits_of_a_bilingual_brain', '2015']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+a+game+i+used+to+play+with+myself+to+entertain+myself+whenever+i+was+bored+or+frustrated
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+say+we+live+in+an+age+of+information+overload+right+i+don+t+know+about+that+but+i+just+know+that+i+get+too+many+marketing+emails
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+got+a+marketing+email+from
error: request timeout
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+got+an+email+from+them++and+it+went+like+this+it+said+just+three+weeks+until+safemart+at+king+s+cross+opens+and+i+resented+this+because
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+only+do+i+not+remember+signing+up+to+that++but+i+resent+the+fact+that+they+appear+to+think+that+i+should+be+excited
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+what+i+did+was+i+scrolled+down+to+the+bottom+of+the+email+and+i+pressed+unsubscribe+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+thought+that+d+be+the+end+of+it+but+a+week+later+i+got+another+one+that+said+just+two+weeks
found 3 videos: [['/talks/tasha_eurich_increase_your_self_awareness_with_one_simple_fix', '2017'], ['/talks/russ_altman_what_really_happens_when_you_mix_medications', '2016'], ['/talks/david_puttnam_does_the_media_have_a_duty_of_care', '2014']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=until+safemart+at+king+s+cross+opens+and+i+thought+obviously+i+haven+t+clicked+hard+enough+so+i+i+tried+it+again+right
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=lo+and+behold+a+week+passes+you+guessed+it+just+one+week
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+here+s+the+problem+the+internet+gave+us+access+to+everything
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+it+also+gave+everything+access+to+us
found 15 videos: [['/talks/melvin_russell_i_love_being_a_police_officer_but_we_need_reform', '2016'], ['/talks/keller_rinaudo_how_we_re_using_drones_to_deliver_blood_and_save_lives', '2017'], ['/talks/ingrid_fetell_lee_where_joy_hides_and_how_to_find_it', '2018'], ['/talks/katharine_hayhoe_the_most_important_thing_you_can_do_to_fight_climate_change_talk_about_it', '2018'], ['/talks/megan_phelps_roper_i_grew_up_in_the_westboro_baptist_church_here_s_why_i_left', '2017'], ['/talks/marta_peirano_the_surveillance_device_you_carry_around_all_day', '2018'], ['/talks/michael_bodekaer_this_virtual_lab_will_revolutionize_science_class', '2016'], ['/talks/chelsea_shields_how_i_m_working_for_change_inside_my_church', '2015'], ['/talks/finn_lutzow_holm_myrstad_how_tech_companies_deceive_you_into_giving_up_your_data_and_privacy', '2018'], ['/talks/dave_isay_everyone_around_you_has_a_story_the_world_needs_to_hear', '2015'], ['/talks/chimamanda_ngozi_adichie_we_should_all_be_feminists', '2017'], ['/talks/astro_teller_the_unexpected_benefit_of_celebrating_failure', '2016'], ['/talks/hubertus_knabe_the_dark_secrets_of_a_surveillance_state', '2014'], ['/talks/larry_page_where_s_google_going_next', '2014'], ['/talks/nyle_dimarco_why_we_need_to_make_education_more_accessible_to_the_deaf', '2018']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+hard+enough+to+discriminate+between+the+things+that+genuinely+matter+in+this+world+and+the+minutiae+of+life+without+having+emails+about+supermarket+chains+and+candy+crush+saga+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+really+annoyed+with+them+and+i+thought+ok+i+was+about+to+write+a+strongly
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=guy+called+dan+said+hi+james+i+ve+asked+a+colleague+to+help+me+with+your+query
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+s+the+plan+dan++i+m+thinking+fireworks+bouncy+castle
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+what+was+all+the++three+weeks+until+++two+weeks+until++emails+i+was+getting+excited
found 1 videos: [['/talks/david_grady_how_to_save_the_world_or_at_least_yourself_from_bad_meetings', '2014']]
selected: /talks/david_grady_how_to_save_the_world_or_at_least_yourself_from_bad_meetings
sleep 3 seconds to avoid blocking
------<943>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JamesWatson_2005.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=chris+asked+me+to+tell+again+how+we+found+the+structure+of+dna++and+since+you+know+i+follow+his+orders+i+ll+do+it++but
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+why+francis+and+i+found+it+and+then+i+hope+maybe+i+have+at+least+five+minutes+to+say+what
found 1 videos: [['/talks/james_watson_how_we_discovered_dna', '2007']]
selected: /talks/james_watson_how_we_discovered_dna
sleep 5 seconds to avoid blocking
------<944>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JamesWhiteSr_2014X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=joined+the+united+states+air+force+and+was+assigned+to+mountain+home+air+force+base+and+was+a+part+of+the+air+police+squadron+upon+first
found 1 videos: [['/talks/james_a_white_sr_the_little_problem_i_had_renting_a_house', '2015']]
selected: /talks/james_a_white_sr_the_little_problem_i_had_renting_a_house
sleep 5 seconds to avoid blocking
------<945>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JamieBartlett_2015G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+really+is+only+one+place+to+go
found 17 videos: [['/talks/dan_gross_why_gun_violence_can_t_be_our_new_normal', '2016'], ['/talks/ok_go_how_to_find_a_wonderful_idea', '2017'], ['/talks/anne_marie_slaughter_can_we_all_have_it_all', '2014'], ['/talks/malcolm_gladwell_the_unheard_story_of_david_and_goliath', '2013'], ['/talks/david_epstein_are_athletes_really_getting_faster_better_stronger', '2014'], ['/talks/james_a_white_sr_the_little_problem_i_had_renting_a_house', '2015'], ['/talks/jeremy_kasdin_the_flower_shaped_starshade_that_might_help_us_detect_earth_like_planets', '2014'], ['/talks/ray_dalio_how_to_build_a_company_where_the_best_ideas_win', '2017'], ['/talks/jessica_shortall_the_us_needs_paid_family_leave_for_the_sake_of_its_future', '2015'], ['/talks/will_potter_the_secret_us_prisons_you_ve_never_heard_of_before', '2015'], ['/talks/hilary_cottam_social_services_are_broken_how_we_can_fix_them', '2015'], ['/talks/johann_hari_everything_you_think_you_know_about_addiction_is_wrong', '2015'], ['/talks/pico_iyer_the_art_of_stillness', '2014'], ['/talks/alexander_wagner_what_really_motivates_people_to_be_honest_in_business', '2017'], ['/talks/sebastian_thrun_and_chris_anderson_what_ai_is_and_isn_t', '2017'], ['/talks/david_steindl_rast_want_to_be_happy_be_grateful', '2013'], ['/talks/ivan_coyote_why_we_need_gender_neutral_bathrooms', '2016']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+is+the+dark+net+anonymous+markets+now+you+can+t+get+to+these+sites+with+a+normal+browser
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+they+re+on+this+hidden+part+of+the+internet
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=known+as+tor+hidden+services+where+urls+are+a+string+of+meaningless+numbers+and+letters+that+end+in+onion+and+which+you+access+with+a+special+browser+called+the+tor+browser+now
found 1 videos: [['/talks/jamie_bartlett_how_the_mysterious_dark_net_is_going_mainstream', '2015']]
selected: /talks/jamie_bartlett_how_the_mysterious_dark_net_is_going_mainstream
sleep 3 seconds to avoid blocking
------<946>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JamieDrummond_2012G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+let+me+start+by+taking+you+back+back+into+the+mists+of+your+memory
found 4 videos: [['/talks/jamie_drummond_let_s_crowdsource_the_world_s_goals', '2012'], ['/talks/charles_limb_your_brain_on_improv', '2011'], ['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013'], ['/talks/colin_camerer_when_you_re_making_a_deal_what_s_going_on_in_your_brain', '2013']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+perhaps+the+most+anticipated+year+in+your+life++but+certainly+the+most+anticipated+year+in+all
found 5 videos: [['/talks/io_tillett_wright_fifty_shades_of_gay', '2013'], ['/talks/alessandro_acquisti_what_will_a_future_without_secrets_look_like', '2013'], ['/talks/jamie_drummond_let_s_crowdsource_the_world_s_goals', '2012'], ['/talks/didier_sornette_how_we_can_predict_the_next_financial_crisis', '2013'], ['/talks/sheryl_sandberg_so_we_leaned_in_now_what', '2014']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+human+history+the+year+two+thousand++remember+that
found 12 videos: [['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013'], ['/talks/scott_fraser_why_eyewitnesses_get_it_wrong', '2012'], ['/talks/neil_macgregor_2600_years_of_history_in_one_object', '2012'], ['/talks/niall_ferguson_the_6_killer_apps_of_prosperity', '2011'], ['/talks/peter_diamandis_abundance_is_our_future', '2012'], ['/talks/jamie_drummond_let_s_crowdsource_the_world_s_goals', '2012'], ['/talks/josette_sheeran_ending_hunger_now', '2011'], ['/talks/beeban_kidron_the_shared_wonder_of_film', '2012'], ['/talks/adam_spencer_why_i_fell_in_love_with_monster_prime_numbers', '2013'], ['/talks/william_ury_the_walk_from_no_to_yes', '2010'], ['/talks/jeff_hancock_the_future_of_lying', '2012'], ['/talks/allan_jones_a_map_of_the_brain', '2011']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+dotcom+bubble++stressing+about+whose+party+you+re+going+to+go+to+as+the+clock+strikes+midnight
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=before+the+champagne+goes+flat++and+then+there+s+that+inchoate+yearning+that+was+felt++i+think+by+many
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+the+millennium+that+the+year+two+thousand+should+mean+more+more+than+just+a+two+and+some+zeroes
found 1 videos: [['/talks/jamie_drummond_let_s_crowdsource_the_world_s_goals', '2012']]
selected: /talks/jamie_drummond_let_s_crowdsource_the_world_s_goals
sleep 1 seconds to avoid blocking
------<947>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JamieHeywood_2009P.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+news+does+not+look+good+this+is+him+on+the+screen
found 17 videos: [['/talks/peter_hirshberg_the_web_is_more_than_better_tv', '2008'], ['/talks/p_w_singer_military_robots_and_the_future_of_war', '2009'], ['/talks/parag_khanna_mapping_the_future_of_countries', '2009'], ['/talks/eli_pariser_beware_online_filter_bubbles', '2011'], ['/talks/jamie_heywood_the_big_idea_my_brother_inspired', '2010'], ['/talks/chris_anderson_how_web_video_powers_global_innovation', '2010'], ['/talks/david_rockwell_a_memorial_at_ground_zero', '2007'], ['/talks/nicholas_negroponte_5_predictions_from_1984', '2008'], ['/talks/cynthia_breazeal_the_rise_of_personal_robots', '2011'], ['/talks/richard_resnick_welcome_to_the_genomic_revolution', '2011'], ['/talks/steve_truglia_a_leap_from_the_edge_of_space', '2009'], ['/talks/david_kelley_human_centered_design', '2007'], ['/talks/stanley_mcchrystal_listen_learn_then_lead', '2011'], ['/talks/amber_case_we_are_all_cyborgs_now', '2011'], ['/talks/sugata_mitra_kids_can_teach_themselves', '2008'], ['/talks/stefan_sagmeister_7_rules_for_making_more_happiness', '2011'], ['/talks/paul_bloom_the_origins_of_pleasure', '2011']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+d+just+been+diagnosed+with+als+which+is+a+disease+that+the+average+lifespan+is+three+years
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+paralyzes+you+it+starts+by+killing+the+motor+neurons+in+your+spinal+cord
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+go+from+being+a+healthy
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=robust+29+year+old+male+to+someone+that+cannot+breathe
error: request timeout
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+me+a+gift+because+we+began+a+journey+to+learn+a
found 4 videos: [['/talks/david_christian_the_history_of_our_world_in_18_minutes', '2011'], ['/talks/amy_purdy_living_beyond_limits', '2011'], ['/talks/jamie_heywood_the_big_idea_my_brother_inspired', '2010'], ['/talks/srikumar_rao_plug_into_your_hard_wired_happiness', '2010']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=new+way+of+thinking+about+life+and+even+though+steven
found 10 videos: [['/talks/steven_pinker_the_surprising_decline_in_violence', '2007'], ['/talks/steven_johnson_the_web_as_a_city', '2008'], ['/talks/jamie_heywood_the_big_idea_my_brother_inspired', '2010'], ['/talks/james_surowiecki_the_power_and_the_danger_of_online_crowds', '2008'], ['/talks/harsha_bhogle_the_rise_of_cricket_the_rise_of_india', '2010'], ['/talks/thomas_goetz_it_s_time_to_redesign_medical_data', '2011'], ['/talks/zach_kaplan_keith_schacht_toys_and_materials_from_the_future', '2008'], ['/talks/alan_russell_the_potential_of_regenerative_medicine', '2007'], ['/talks/charles_leadbeater_education_innovation_in_the_slums', '2010'], ['/talks/bernie_dunlap_the_life_long_learner', '2008']]
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+had+an+amazing+journey+as+a+family+we+did+not+even
found 7 videos: [['/talks/william_ury_the_walk_from_no_to_yes', '2010'], ['/talks/spencer_wells_a_family_tree_for_humanity', '2008'], ['/talks/david_macaulay_an_illustrated_journey_through_rome', '2008'], ['/talks/josette_sheeran_ending_hunger_now', '2011'], ['/talks/jamie_heywood_the_big_idea_my_brother_inspired', '2010'], ['/talks/shukla_bose_teaching_one_child_at_a_time', '2010'], ['/talks/james_cameron_before_avatar_a_curious_boy', '2010']]
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=think+adversity+is+not+even+the+right+word+we+looked+at+this+and+we+said+we+re+going+to+to+do+something+with+this+in+an+incredibly+positive+way+and+i+want+to+talk+today
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+one+of+the+things+that+we+decided+to+do+which+was+to
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=think+about+a+new+way+of+approaching+healthcare+because+as+we+all+know+here+today+it+doesn+t+work+very+well
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+talk+about+it+in+the+context+of+a+story++this+is+the+story+of+my+brother
found 12 videos: [['/talks/jamie_heywood_the_big_idea_my_brother_inspired', '2010'], ['/talks/zainab_salbi_women_wartime_and_the_dream_of_peace', '2010'], ['/talks/steven_johnson_where_good_ideas_come_from', '2010'], ['/talks/shimon_schocken_what_a_bike_ride_can_teach_you', '2010'], ['/talks/lawrence_lessig_re_examining_the_remix', '2010'], ['/talks/james_forbes_compassion_at_the_dinner_table', '2008'], ['/talks/sunitha_krishnan_the_fight_against_sex_slavery', '2009'], ['/talks/david_perry_are_games_better_than_life', '2008'], ['/talks/wael_ghonim_inside_the_egyptian_revolution', '2011'], ['/talks/charles_leadbeater_the_era_of_open_innovation', '2007'], ['/talks/emily_levine_a_theory_of_everything', '2009'], ['/talks/jane_goodall_what_separates_us_from_chimpanzees', '2007']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+it+s+just+a+story+and+i+want+to+go+beyond+the+story+and+go+to+something+more
found 7 videos: [['/talks/morgan_spurlock_the_greatest_ted_talk_ever_sold', '2011'], ['/talks/eames_demetrios_the_design_genius_of_charles_ray_eames', '2009'], ['/talks/margaret_wertheim_the_beautiful_math_of_coral', '2009'], ['/talks/ben_goldacre_battling_bad_science', '2011'], ['/talks/luca_turin_the_science_of_scent', '2008'], ['/talks/bill_strickland_rebuilding_a_neighborhood_with_beauty_dignity_hope', '2008'], ['/talks/euvin_naidoo_why_invest_in_africa', '2007']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=given+my+status+what+is+the+best+outcome+i+can+hope+to+achieve++and+how+do+i+get+there+is+what+we+are+here+to+do+in+medicine+is+what+everyone+should+do+and+those+questions+all+have+variables+to+them+all+of+our+statuses+are+different
found 1 videos: [['/talks/jamie_heywood_the_big_idea_my_brother_inspired', '2010']]
selected: /talks/jamie_heywood_the_big_idea_my_brother_inspired
sleep 3 seconds to avoid blocking
------<948>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JamieOliver_2010.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+next+eighteen+minutes+when+i+do+our+chat+four+americans+that+are+alive+will+be+dead+through+the+food+that+they+eat
error: request timeout
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+the+last+seven+years+i+ve+worked
error: request timeout
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=save+lives+in+my+own+way+i+m+not+a+doctor++i+m+a+chef++i+don+t+have+expensive+equipment
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+medicine+i+use+information+education+i+profoundly+believe+that+the+power+of+food+has
found 2 videos: [['/talks/jamie_oliver_teach_every_child_about_food', '2010'], ['/talks/james_randi_homeopathy_quackery_and_fraud', '2010']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+primal+place+in+our+homes+that+binds+us+to+the+best+bits+of+life
found 1 videos: [['/talks/jamie_oliver_teach_every_child_about_food', '2010']]
selected: /talks/jamie_oliver_teach_every_child_about_food
sleep 4 seconds to avoid blocking
------<949>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JamilAbuWardeh_2010G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+about+righting+writing+wrongs+no+the+sound+s+not+faulty+righting+writing+wrongs+the+middle+east+is+huge
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+with+all+our+problems+one+thing+s+for+sure++we+love+to+laugh++i+think+humor+is+a+great+way+to+celebrate+our+differences++we+need+to+take+our+responsibilities
found 1 videos: [['/talks/jamil_abu_wardeh_the_axis_of_evil_middle_east_comedy_tour', '2010']]
selected: /talks/jamil_abu_wardeh_the_axis_of_evil_middle_east_comedy_tour
sleep 1 seconds to avoid blocking
------<950>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JamilaLyiscott_2014S.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+baffled+lady+observed+the+shell+where+my+soul+dwells+and+announced
found 1 videos: [['/talks/jamila_lyiscott_3_ways_to_speak_english', '2014']]
selected: /talks/jamila_lyiscott_3_ways_to_speak_english
sleep 4 seconds to avoid blocking
------<951>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JamilaRaqib_2015P.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=war+has+been+a+part+of+my+life+since+i+can+remember++i+was+born+in+afghanistan+just+six+months+after+the+soviets+invaded
found 1 videos: [['/talks/jamila_raqib_the_secret_to_effective_nonviolent_resistance', '2016']]
selected: /talks/jamila_raqib_the_secret_to_effective_nonviolent_resistance
sleep 5 seconds to avoid blocking
------<952>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JanChipchase_2007.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=live+and+work+from+tokyo+japan++and
found 8 videos: [['/talks/john_maeda_my_journey_in_design', '2009'], ['/talks/ross_lovegrove_organic_design_inspired_by_nature', '2006'], ['/talks/alan_russell_the_potential_of_regenerative_medicine', '2007'], ['/talks/jan_chipchase_the_anthropology_of_mobile_phones', '2007'], ['/talks/john_maeda_designing_for_simplicity', '2007'], ['/talks/sergey_brin_larry_page_the_genesis_of_google', '2007'], ['/talks/seth_godin_how_to_get_your_ideas_to_spread', '2007'], ['/talks/tim_ferriss_smash_fear_learn_anything', '2009']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+specialize+in+human+behavioral+research++and
found 2 videos: [['/talks/jan_chipchase_the_anthropology_of_mobile_phones', '2007'], ['/talks/dan_ariely_are_we_in_control_of_our_own_decisions', '2009']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=applying+what+we+learn+to+think+about+the+future+in+different+ways+and+to+design+for+that+future++and+you+know
found 1 videos: [['/talks/jan_chipchase_the_anthropology_of_mobile_phones', '2007']]
selected: /talks/jan_chipchase_the_anthropology_of_mobile_phones
sleep 4 seconds to avoid blocking
------<953>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JaneChen_2009I.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=please+close+your+eyes++and+open+your+hands
found 17 videos: [['/talks/deborah_scranton_an_iraq_war_movie_crowd_sourced_from_soldiers', '2007'], ['/talks/paul_nicklen_animal_tales_from_icy_wonderlands', '2011'], ['/talks/jane_chen_a_warm_embrace_that_saves_lives', '2010'], ['/talks/dan_meyer_math_class_needs_a_makeover', '2010'], ['/talks/itay_talgam_lead_like_the_great_conductors', '2009'], ['/talks/evelyn_glennie_how_to_truly_listen', '2007'], ['/talks/stefan_sagmeister_the_power_of_time_off', '2009'], ['/talks/tom_shannon_john_hockenberry_the_painter_and_the_pendulum', '2010'], ['/talks/jackie_tabick_the_balancing_act_of_compassion', '2008'], ['/talks/tim_ferriss_smash_fear_learn_anything', '2009'], ['/talks/sarah_jones_a_one_woman_global_village', '2009'], ['/talks/rick_smolan_the_story_of_a_girl', '2008'], ['/talks/bill_strickland_rebuilding_a_neighborhood_with_beauty_dignity_hope', '2008'], ['/talks/eve_ensler_embrace_your_inner_girl', '2010'], ['/talks/kavita_ramdas_radical_women_embracing_tradition', '2010'], ['/talks/alwar_balasubramaniam_art_of_substance_and_absence', '2010'], ['/talks/thomas_barnett_let_s_rethink_america_s_military_strategy', '2007']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+imagine+what+you+could+place+in+your+hands+an+apple+maybe+your+wallet++now+open+your+eyes
found 1 videos: [['/talks/jane_chen_a_warm_embrace_that_saves_lives', '2010']]
selected: /talks/jane_chen_a_warm_embrace_that_saves_lives
sleep 4 seconds to avoid blocking
------<954>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JaneFonda_2011X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+have+been+many+revolutions+over+the+last+century+but+perhaps+none+as+significant+as+the+longevity+revolution
found 1 videos: [['/talks/jane_fonda_life_s_third_act', '2012']]
selected: /talks/jane_fonda_life_s_third_act
sleep 5 seconds to avoid blocking
------<955>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JaneFonda_2015W.stm
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thinking+about+female+friendship+a+lot++and+by+the+way++these+two+women+i+m+very+honored+to+say+have+been+my+friends+for+a+very+long+time+too+jane+fonda+yes+we+have
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=pm+and+one+of+the+things+that+i+read+about+female+friendship+is+something+that+cervantes+said+he+said
found 1 videos: [['/talks/jane_fonda_and_lily_tomlin_a_hilarious_celebration_of_lifelong_female_friendship', '2015']]
selected: /talks/jane_fonda_and_lily_tomlin_a_hilarious_celebration_of_lifelong_female_friendship
sleep 5 seconds to avoid blocking
------<956>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JaneGoodall_2002.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=good+morning+everyone+and+i+feel
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=first+of+all+it+s+been+fantastic+being+here+over+these+past+few+days
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+secondly+i+feel+it+s+a+great+honor+to+kind+of+wind+up+this+extraordinary+gathering+of+people+these+amazing+talks+that+we+ve+had
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+feel+that+i+ve+fitted+in+in+many+ways+to+some+of+the+things+that+i+ve+heard
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+started+off+i+came+directly+here
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=from+the+deep+deep+tropical+rainforest+in+ecuador
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=where+i+was+out+you+could+only+get+there+by+a+plane
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+indigenous+people+with+paint+on+their+faces+and+parrot+feathers+on+their+headdresses+where+these+people
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fighting+to+try+and+keep+the+oil+companies+and+keep+the+roads+out+of+their+forests+they+re+fighting+to+develop+their+own+way+of+living+within+the+forest+in+a+world+that+s+clean+a+world+that+isn+t+contaminated
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+world+that+isn+t+polluted
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+what+was+so+amazing+to+me+and+what+fits+right+in+with+what+we+re+all+talking+about+here+at+ted+is+that+there+right+in+the+middle
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+this+rainforest+was+some+solar+panels+the+first+in+that+part+of+ecuador
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+was+mainly+to+bring+water+up+by+pump+so+that+the+women+wouldn+t+have+to+go+down+the+water+was+cleaned+but+because+they+got+a+lot+of+batteries+they+were+able+to+store+a+lot+of+electricity
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+every+house+and+there+were+i+think+eight+houses+in+this+little+community+could+have+light+for+i+think+it+was+about+half+an+hour+each+evening
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+there+is+the+chief+in+all+his+regal+finery+with+a+laptop+computer
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+man+he+has+been+outside+but+he+s+gone+back
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+he+was+saying+you+know+we+we+have+suddenly+jumped+into+a+whole+new+era
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+didn+t+even+know+about+the+white+man+fifty+years+ago+and+now+here+we
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+with+laptop+computers+and+there+are+some+things+we+want+to+learn+from+the+modern+world+we+want+to+know+about+health+care+we+want+to+know
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+what+other+people+do+we+re+interested+in+it+and+we+want+to+learn+other+languages+we+want+to+know+english+and+and+french+and+perhaps+chinese+and+we+re+good+at+languages
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+there+he+is+with+his+little+laptop+computer+but+fighting+against+the+might
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+the+pressures+because+of+the+debt+the+foreign+debt+of+ecuador+fighting+the+pressure+of+world+bank+imf
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+of+course+the+people+who+want+to+exploit+the+forests+and+take+out+the+oil+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+coming+directly+from+there+to+here
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+of+course+my+real+field+of+expertise+lies+in+an+even+different+kind+of+civilization
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+can+t+really+call+it+a+civilization+a+different+way+of+life+a+different+being
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+ve+talked+earlier+this+wonderful+talk
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+wade+wade+davis+about+the+different+cultures+of+the+humans+around+the+world
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+the+world+is+not+composed+only+of+human+beings+there+are+also+other+animal+beings
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+propose+to+bring+into+this+ted
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=conference+as+i+always+do+around+the+world+the+voice+of+the+animal+kingdom+too+often+we+just+see+a+few+slides+or+a+bit+of+film+but+these+beings+have+voices+that+mean
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=something+and+so+i+want+to+give+you+a+greeting+as+from+a+chimpanzee+in+the+forests+of+tanzania+ooh
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+been+studying+chimpanzees+in+tanzania+since+nineteen+sixty
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=during+that+time+there+have+been+modern+technologies+that+have+really+transformed+the+way+that+field+biologists
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=do+their+work+for+example+for+the+first+time+a+few+years+ago+by+simply+collecting+little+fecal+samples+we+were+able+to+have+them
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=analyzed+to+have+dna+profiling+done+so+for+the+first+time+we+actually+know+which+male+chimps+are+the+fathers+of+each+individual+infant
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+the+chimps+have+a+very+promiscuous+mating+society+so+this+opens+up+a+whole+new+avenue
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+determine+the+range+of+the+chimps+and+we+re+using
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+see+that+i+m+not+really+into+this+kind+of+stuff+but+we+re+using+satellite+imagery+to+look+at+the+deforestation+in+the+area
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+of+course+there+s+developments+in+infrared+so+you+can+watch+animals+at+night+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=equipment+for+recording+by+video+and+tape+recording+is+getting+lighter+and+better+so+in+many+many+ways+we+can+do+things+today+that+we+couldn+t+do+when+i+began+in+nineteen+sixty
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=especially+when+chimpanzees+and+other+animals+with+large+brains+are+studied+in+captivity+modern+technology
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=search+for+the+upper+levels+of+cognition
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+some+of+these+non+human+animals+so+that+we+know+today+they+re+capable+of+performances+that+would+have+been+thought+absolutely+impossible+by+science+when+i+began
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+the+chimpanzee+in+captivity+who+is+the+most+skilled+in+intellectual+performance+is+one+called+ai+in+japan+her+name+means+love
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+she+has+a+wonderfully+sensitive+partner+working
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+her+she+loves+her+computer+she+ll+leave+her+big+group+and+her+her+running+water+and+her+trees+and+everything+and+she+ll+come+in+to+sit+at+this+computer+it+s+like+a+video+game+for+a+kid+she+s+hooked+she+s+twenty+eight+by+the+way
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+she+does+things+with+her+computer+screen+and+a+touch+pad+that+she+can+do+faster+than+most+humans+she+does+very+complex
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=tasks+and+i+haven+t+got
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=time+to+go+into+them+but+the+amazing+thing+about+this+female+is+she
error: request timeout
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+she+has+a+bad+run+and+her+score+isn+t+good+she+ll+come+and+reach+up+and+tap+on+the+glass+because+she+can+t+see+the+experimenter+which+is+asking+to+have+another+go
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+her+concentration+she+s+already+concentrated+hard+for+twenty+minutes+or+so+and+now+she+wants+to+do+it+all+over+again+just+for+the
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=satisfaction+of+having+done+it+better
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+food+is+not+important+she+does+get+a+tiny+reward+like+one+raisin+for+a+correct+response+but+she+will+do+it+for+nothing+if+you+tell+her+beforehand
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+here+we+are+a+chimpanzee+using+a+computer+chimpanzees+gorillas+orangutans+also+learn+human+sign+language+but
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+point+is+that+when+i+was+first+in+gombe
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+nineteen+sixty+i+remember+so+well+so+vividly+as+though+it+was+yesterday
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+first+time+when+i+was+going+through+the+vegetation+the+chimpanzees+were+still+running+away+from+me+for+the+most+part+although+some+were+a+little+bit+acclimatized
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+saw+this+dark+shape+hunched+over+a+termite+mound
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+peered+with+my+binoculars+it+was+fortunately+one+adult+male+who
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=david+greybeard+and+by+the+way+science+at+that+time+was+telling+me+that+i+shouldn+t+name+the+chimps+they+should+all+have+numbers+that+was+more+scientific
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+saw+that+he+was+picking+little+pieces+of+grass+and+using+them+to+fish+termites+from+their+underground+nest+and+not+only+that+he+would+sometimes+pick+a+leafy
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=twig+and+strip+the+leaves+modifying+an+object+to+make+it+suitable+for+a+specific+purpose+the+beginning
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+reason+this+was+so+exciting+and+such+a+breakthrough+is+at+that+time
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+thought+that+humans+and+only+humans+used+and+made+tools+when+i+was+at+school+we+were+defined+as+man+the+tool+maker
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+that+when+louis+leakey+my+mentor+heard+this+news+he+said+ah+we+must+now+redefine+man+redefine+tool+or+accept+chimpanzees+as+humans
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+now+know+that+at+gombe+alone+there+are+nine+different+ways+in+which+chimpanzees+use+different+objects+for+different+purposes
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=moreover+we+know+that+in+different+parts+of+africa+wherever+chimps+have+been+studied+there+are+completely+different+tool+using+behaviors+and+because+it+seems
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+these+patterns+are+passed+from+one+generation+to+the+next+through+observation
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+practice+that+is+a+definition+of+human+culture
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+we+find+is+that+over+these+forty+odd+years+that+i+and+others+have+been+studying+chimpanzees+and+the+other+great+apes
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+as+i+say+other+mammals+with+complex+brains+and+social+systems
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+have+found+that+after+all+there+isn+t+a+sharp+line+dividing+humans+from+the+rest+of+the+animal+kingdom+it+s+a+very+wuzzy
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=line+it+s+getting+wuzzier+all+the+time+as+we+find+animals+doing+things+that+we+in+our+arrogance+used+to+think+was+just+human
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+chimps+there+s+no+time+to+discuss+their+fascinating+lives+but+they+have+this+long+childhood+five+years+of+suckling+and+sleeping+with+the+mother+and+then+another
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=three+four+or+five+years+of+emotional+dependence+on+her+even+when+the+next+child+is+born
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+importance+of+learning+in+that+time+when+behavior+is+flexible+and+there+s+an+awful+lot+to+learn+in+chimpanzee+society
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+long+term+affectionate+supportive+bonds+that+develop+throughout+this+long+childhood+with+the+mother+with+the+brothers+and+sisters+and+which+can+last+through
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+lifetime+which+may+be+up+to+sixty+years+they+can+actually+live+longer+than+sixty+in+captivity+so+we+ve+only+done+forty+years+in+the
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+find+chimps+are+capable+of+true+compassion+and+altruism
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+find+in+their+non+verbal+communication+this+is+very+rich+they+have+a+lot+of+sounds+which+they+use+in+different+circumstances+but+they+also+use
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=touch+posture+gesture+and+what+do+they+do+they+kiss+they+embrace+they+hold+hands+they+pat+one+another+on+the+back+they+swagger+they+shake+their
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fist+the+kind+of+things+that+we+do
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+do+them+in+the+same+kind+of+context+they+have+very+sophisticated+cooperation+sometimes+they+hunt+not+that+often+but+when+they+hunt+they+show+sophisticated+cooperation+and+they+share+the+prey
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+find+that+they+show+emotions+similar+to+maybe+sometimes+the+same+as+those+that+we+describe
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+ourselves+as+happiness+sadness+fear+despair+they+know+mental+as+well+as+physical+suffering+and+i+don+t+have+time+to+go+into+the
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=information+that+will+prove+some+of+these+things+to+you+save+to+say+that+there+are+very+bright+students+in+the+best+universities+studying+emotions+in+animals+studying+personalities+in+animals
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+know+that+chimpanzees+and+some+other+creatures+can+recognize+themselves+in+mirrors+self+as+opposed
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+other+they+have+a+sense+of+humor
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+these+are+the+kind+of+things+which+traditionally+have+been+thought+of+as+human+prerogatives+but
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+teaches+us+a+new+respect+and+it+s+a+new+respect+not+only+for+the+chimpanzees+i+suggest+but+some+of+the+other+amazing+animals+with+whom+we+share+this+planet+once+we+re+prepared+to+admit
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+after+all+we+re+not+the+only+beings
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+personalities+minds+and+above+all+feelings+and+then+we+start+to+think+about+ways+we+use+and+abuse+so+many+other+sentient+sapient+creatures
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+this+planet+it+really+gives+cause+for+for+deep+shame
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+ve+perhaps+taught+us+more+than+any+other+creature+a+little+humility
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+in+the+wild+disappearing+very+fast
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+re+disappearing+for+the+reasons+that+all+of+you+in+this+room+know+only+too+well+the+deforestation+the+growth+of+human+populations+needing+more+land
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+re+disappearing+because+some+timber+companies+go+in+with+clear+cutting+they+re+disappearing+in+the+heart+of+their+range
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+the+big+multinational+logging+companies+have+come+in+and+made+roads+as+they+want+to+do+in+ecuador+and+other+parts+where+the+forests+remain+untouched
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+take+out+oil+or+timber
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+has+led+in+congo+basin+and+other+parts+of+the+world+to+what+is+known+as+the+bush+meat+trade+this+means+that+although+for+hundreds
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thousands+of+years+people+have+lived+in+those+forests+or+whatever+habitat+it+is+in+harmony+with+their+world+just+killing+the+animals+they+need+for+themselves+and+their+families
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+suddenly+because+of+the+roads+the+hunters+can+go+in+from+the+towns+they+shoot+everything+every+single+thing+that+moves+that+s+bigger+than+a+than+a+small+rat+they+sun+dry+it+or+smoke+it+and+now+they+ve+got+transport+they+take+it+on+the
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=logging+trucks+or+the+mining+trucks+into+the+towns+where+they+sell+it+and+people+will+pay+more
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+bush+meat+as+it+s+called+than+for+domestic+meat+it+s+culturally+preferred+and+it+s+not+sustainable+and+the+huge+logging+camps+in+the+forest
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+now+demanding+meat+so+the+pygmy+hunters+in+the+congo+basin+who+ve+lived+there
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=living+for+so+many+hundreds+of+years+are+now+corrupted+they+re+given+weapons+they+shoot+for+the+logging+camps+they+get+money+their+culture+is+being+destroyed
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=along+with+the+animals+upon+whom+they+depend+so+when+the+logging+camp+moves+there+s+nothing+left
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+talked+already+about+the+loss+of+human+cultural+diversity+and+i+ve+seen+it+happening+with+my+own+eyes+and+the+grim+picture+in+africa+i+love+africa
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+what+do+we+see+in+africa+we+see+we+see
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=deforestation+we+see+the+desert+spreading
error: request timeout
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+see+disease+and+we+see+population+growth+in+areas+where+there+are+more+people+living+on+a+certain+piece+of+land+than+the+land+can+possibly+support+and+they+re+too+poor+to+buy+food+from+elsewhere
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=were+the+people+that+we+heard+about
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=yesterday+on+the+easter+island+who+cut+down+their+last+tree+were+they+stupid+didn+t+they+know+what+was+happening+of+course+but+if+you+ve+seen+the+crippling+poverty+in+some+of+these+parts
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+the+world+it+isn+t+a+question+of+let+s+leave+the+tree+for+tomorrow+how+am+i+going+to+feed+my+family+today+maybe+i+can+get+just+a+few+dollars+from+this+last+tree+which+will
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=keep+us+going+a+little+bit+longer+and+then+we+ll+pray+that+something+will+happen+to+save+us+from+the+inevitable+end+so
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+a+pretty+grim+picture
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+one+thing+we+have+which+makes+us+so+different+from+chimpanzees+or+other+living+creatures+is+this+sophisticated+spoken+language+a+language+with+which+we+can
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=tell+children+about+things+that+aren+t+here+we+can+talk+about+the+distant+past+plan+for+the+distant+future+discuss+ideas+with+each+other+so+that+the
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ideas+can+grow+from+the+accumulated+wisdom+of+a+group+we+can+do+it+by+talking+to+each+other+we+can+do+it+through
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=video+we+can+do+it+through+the+written+word+and+we+are+abusing+this+great+power+we+have+to+be+wise+stewards
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+re+destroying+the+world+in+the+developed+world+in+a+way+it+s+worse+because+we+have+so+much+access+to+knowledge+of+the+stupidity+of+what+we+re+doing+do+you+know
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=into+a+world+where+in+many+places+the+water+is+poisoning+them
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+air+is+harming+them
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+food+that+s+grown+from+the+contaminated+land+is+poisoning+them+and+that+s+not+just+in+the+far+away+developing+world+that+s+everywhere+do+you+know+we+all+have+about+fifty
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=chemicals+in+our+bodies+we+didn+t+have+about+fifty+years+ago+and+so+many+of+these+diseases+like
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=asthma+and+certain+kinds+of+cancers+are+on+the+increase+around+places+where+our+filthy+toxic+waste+is+dumped
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+re+harming+ourselves+around+the+world+as+well+as+harming+the+animals+as+well+as+harming+nature+herself+mother+nature+that+brought+us+into+being
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=mother+nature+where+i+believe+we+need+to+spend+time
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=time+where+there+s+trees+and+flowers+and+birds+for+our+good+psychological+development
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+yet+there+are+hundreds+and+hundreds+of+children+in+the+developed+world+who+never+see+nature+because+they+re+growing+up+in+concrete+and+all+they+know+is+virtual+reality+with+no+opportunity+to+go+and+lie+in+the+sun+or+in+in+the+forest+with+the+dappled
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sun+specks+coming+down+from+the+canopy+above
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+i+was+traveling+around+the+world+you+know+i+had+to+leave+the+forest+that+s+where+i+love+to+be
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+had+to+leave+these+fascinating+chimpanzees+for+my+students+and+field+staff+to+continue+studying
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+finding+they+dwindled+from+about+two+million+one+hundred+years+ago+to+about+one+hundred+and+fifty+thousand+now
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+knew+i+had+to+leave+the+forest+to+do+what+i+could+to+raise+awareness+around+the+world+and+the+more
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+talked+about+the+chimpanzees+plight+the+more+i+realized+the+fact+that+everything+s+interconnected+and+the+problems+of+the+developing+world+so+often+stem
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=from+the+greed+of+the+developed+world+and+everything+was+joining+together+and+making+not+sense
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+as+i+was+traveling+around+i+kept+meeting+young+people+who+d+lost+hope
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+were+feeling+well+it+doesn+t+matter+what+we+do+eat+drink+and+be+merry+for+tomorrow+we+die+everything+is+hopeless+we+re+always+being+told+so+by+the+media
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+i+met+some+who+were+angry+and+anger+that+can+turn+to+violence+and+we+re+all+familiar+with+that
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+have+three+little+grandchildren+and+when+some+of+these
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=students+would+say+to+me+at+high+school+or+university+they+d+say+we+re+angry+or+we+re+filled+with+despair+because+we+feel+you+ve+compromised+our+future+and+there+s+nothing+we+can+do+about+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+looked+in+the+eyes+of+my+little+grandchildren+and+think+how+much+we+ve+harmed+this+planet+since+i+was+their+age+i+feel+this+deep+shame
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+why+in+one+thousand+nine+hundred+and+ninety+one+in+tanzania+i+started+a+program+that+s+called+roots+and+shoots+there+s+little+brochures+all+around+outside
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+if+any+of+you+have+anything+to+do+with+children+and+care+about+their+future+i+beg+that+you+pick+up+that+brochure
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+roots+and+shoots+is+a+program+for+hope+roots+make+a+firm+foundation+shoots+seem+tiny
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=tiny+but+to+reach+the+sun+they+can+break+through+brick+walls+see+the+brick+walls+as+all+the+problems+that+we+ve+inflicted+on+this+planet+then
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+see+it+is+a+message+of+hope+hundreds+and+thousands+of+young+people+around+the+world+can+break+through+and+can+make+this+a+better+better+world
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+most+important+message+of+roots+and+shoots+is+that+every+single+individual+makes+a+difference+every+individual
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=every+one+of+us+impacts+the+world+around+us+every+day+and+you+scientists+know+that+you+can+t+actually+even+if+you+stay+in+bed+all+day+you+re+breathing+oxygen+and+giving+out+cotwo
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+probably+going+to+the+loo+and+things+like+that+you+re+making+a+difference+in+the+world
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+roots+and+shoots+program+involves+youth+in
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+these+are+projects+to+make+the+world+around+them+a+better+place+one+project+to+show+care+and+concern+for+your+own+human+community
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+for+animals+including+domestic+animals+and+i+have+to+say+i+learned+everything+i+know+about+animal+behavior+even+before+i+got
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+chimps+from+my+dog+rusty+who+was+my+childhood+companion
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+third+kind+of+project+something+for+the+local+environment
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+the+kids+do+depends+first+of+all+how+old+are+they+and+we+go+now+from+pre+school+right+through+university
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+going+to+depend+whether+they+re+inner+city+or+rural+it+s+going+to+depend+if+they+re+wealthy+or+impoverished+it+s+going+to+depend+which+part+say+of+america+they+re+in
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=state+now+and+the+problems+in+florida+are+different+from+the+problems+in+new+york
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+going+to+depend+on+which+country+they+re+in+and+we+re+already+in+sixty+plus+countries+with+about+five+thousand+active+groups+and+there+are+groups+all+over
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+place+that+i+keep+hearing+about+that+i+ve+never+even+heard+of+because+the+kids+are+taking
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+program+and+spreading+it+themselves+why
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+they+re+buying+into+it+and+they+re+the+ones+who+get+to+decide+what+they+re+going+to+do+it+isn+t+something+that+that+their+parents+tell+them+or+their+teachers+tell+them+that+s+effective+but+if+they+decide+themselves
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+want+to+clean+this+river+and+put+the+fish+back+that+used+to+be+there+we+want+to+clear+away+the+toxic
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=soil+from+this+area+and+have+an+organic+garden+we+want+to+go+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=spend+time+with+the+old+people+and+hear+their+stories+and+record+their+oral+histories
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+want+to+go+and+work+in+a+dog+shelter+we+want+to+learn+about+animals+we+want+you+know+it+goes+on+and+on+and+this+is+very+hopeful+for+me
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+i+travel+around+the+world+three+hundred+days+a+year+everywhere+there+s+a+group+of+roots+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=shoots+of+different+ages+everywhere+there+are+children+with+shining+eyes+saying+look+at+the+difference+we+ve+made
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+now+comes+the+technology+into+it+because+with+with+this+new
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=way+of+communicating+electronically+these+kids+can+communicate+with+each+other+around+the+world
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+if+anyone+is+interested+to+help+us+we+ve+got+so+many+ideas+but+we+need+help+we+need+help+to+to+create+the+right+kind+of+system+that+will+help+these+young+people+to+communicate+their
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+also+and+this+is+so+important+to
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+communicate+their+despair+to+say+we+ve+tried+this+and+it+doesn+t+work+and+what+shall+we+do+and+then+lo+and+behold+there+s+another+group
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=answering+these+kids+who+may+be+in+america+or+maybe+this+is+a+group+in+israel+saying+yeah+you+did+it+a+little+bit+wrong+this+is+how+you+should+do+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+do+not+believe+in+violence+no+violence+no+bombs
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=no+guns+that+s+not+the+way+to+solve+problems+violence+leads+to+violence+at+least+in+my+view
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+do+we+solve+the+tools+for+solving+the+problems+are+knowledge+and+understanding+know+the+facts+but+see+how+they+fit+in+the+big+picture
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hard+work+and+persistence+don+t+give+up+and+love+and+compassion
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=leading+to+respect+for+all+life+how+many+more+minutes+two+one
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+one+to+two+two+two+i+m+going+to+take+two+are+you+going+to+come+and+drag+me+off
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+basically+roots+and+shoots+is+beginning+to+change+young+people+s+lives+it+s+what+i+m+devoting+most+of+my+energy+to
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+believe+that+a+group+like+this+can+have+a+very+major+impact+not+just+because+you+can+share+technology+with+us+but+because+so+many+of+you+have+children
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+if+you+take+this+program+out+and+give+it+to+your+children+they+have+such+a+good+opportunity+to+go+out+and+do+good+because+they+ve+got+parents+like+you
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+clear+how+much+you+all+care+about+trying+to+make+this+world+a+better+place+it+s+very+encouraging
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+the+kids+do+ask+me+and+this+won+t+take+more+than+two+minutes+i+promise+the+kids+say
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=doctor+jane+do+you+really+have+hope+for+the+future+you+travel+you+see+all+these+horrible+things+happening+firstly
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+human+brain+i+don+t+need+to+say+anything+about+that+now
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+know+what+the+problems+are+around+the+world+human+brains+like+yours+are+rising+to+solve+those+problems+and+we+ve+talked+a+lot+about+that
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+can+destroy+a+river+and+we+can+bring+it+back+to+life+we+can+see
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+whole+area+desolated+and+it+can+be+brought+back+to+bloom+again+with+time+or+a+little+help
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+thirdly+the+last+speaker+talked+about
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+the+speaker+before+last+talked+about+the+indomitable+human+spirit+we+are+surrounded+by+the+most+amazing+people+who
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=do+things+that+seem+to+be+absolutely+impossible+nelson+mandela+i+take+a+little+piece+of+limestone+from+robben+island+prison+where+he+labored+for+twenty+seven+years+and+came+out
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+little+bitterness+he+could+lead+his+people+from+the+horror+of+apartheid+without+a+bloodbath
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=even+after+the+eleventh+of+september+and+i+was+in+new+york+and+i+felt+the+fear
error: request timeout
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+was+so+much+human+courage+so+much+love+and+so+much+compassion
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+as+i+went+around+the+country+after+that+and+felt+the+fear+the+fear+that+was+leading+to+people
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=feeling+they+couldn+t+worry+about+the+environment+any+more+in+case+they+seemed+not+to+be+patriotic+and+i+was+trying+to+encourage+them
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=somebody+came+up+with+a+little+quotation+from+mahatma+gandhi
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+look+back+through+human+history+you+see+that+every+evil+regime+has+been+overcome+by+good
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+just+after+that+a+woman+brought+me+this+little+bell+and+i+want+to+end+on+this+note+she+said+if+you+re+talking+about+hope
error: request timeout
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+bell+is+made+from+metal+from+a+defused+landmine+from+the+killing+fields+of+pol+pot
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+the+most+evil+regimes+in+human+history+where+people+are+now+beginning+to+put+their+lives+back+together
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=after+the+regime+has+crumbled+so+yes+there+is+hope+and+where
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+the+hope+is+it+out+there+with+the+politicians
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+in+our+hands+it+s+in+your+hands+and+my+hands
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+those+of+our+children+it+s+really+up+to+us+we+re+the+ones+who+can+make+a+difference+if+we+lead+lives+where+we+consciously+leave+the+lightest+possible
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ecological+footprints+if+we+buy+the+things+that+are+ethical+for+us+to+buy+and+don+t+buy+the+things+that+are+not+we+can+change+the+world
found 0 videos: []
error: no video is found.
sleep 1 seconds to avoid blocking
------<957>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JaneGoodall_2007G.stm
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+call+that+chimpanzees+make+before+they+go+to+sleep+in+the+evening+you+hear+it+going+from+one+side+of+the+valley+to+the+other+from+one+group+of+nests+to+the+next
found 1 videos: [['/talks/jane_goodall_how_humans_and_animals_can_live_together', '2008']]
selected: /talks/jane_goodall_how_humans_and_animals_can_live_together
sleep 2 seconds to avoid blocking
------<958>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JaneMcGonigal_2012G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+s+my+special+mission+for+this+talk++i+m+going+to+try+to+increase+the+life+span+of+every+single+person+in+this+room+by
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=seven+and+a+half+minutes+literally+you+will+live+seven+and+a+half+minutes+longer+than+you+would+have+otherwise+just+because+you+watched+this+talk
found 1 videos: [['/talks/jane_mcgonigal_the_game_that_can_give_you_10_extra_years_of_life', '2012']]
selected: /talks/jane_mcgonigal_the_game_that_can_give_you_10_extra_years_of_life
sleep 5 seconds to avoid blocking
------<959>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JaneMcGonigal_2013G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+am+going+to+teach+you+how+to+play+my+favorite+game
found 5 videos: [['/talks/jane_mcgonigal_massively_multi_player_thumb_wrestling', '2013'], ['/talks/maysoon_zayid_i_got_99_problems_palsy_is_just_one', '2014'], ['/talks/susan_cain_the_power_of_introverts', '2012'], ['/talks/stephen_ritz_a_teacher_growing_green_in_the_south_bronx', '2012'], ['/talks/kathryn_schulz_don_t_regret_regret', '2011']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=massively+multiplayer+thumb+wrestling+it+s+the+only+game+in+the+world+that+i
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=know+of+that+allows+you+the+player+the+opportunity+to+experience
found 8 videos: [['/talks/jane_mcgonigal_massively_multi_player_thumb_wrestling', '2013'], ['/talks/aaron_koblin_visualizing_ourselves_with_crowd_sourced_data', '2011'], ['/talks/michael_porter_the_case_for_letting_business_solve_social_problems', '2013'], ['/talks/stefon_harris_there_are_no_mistakes_on_the_bandstand', '2011'], ['/talks/eric_liu_why_ordinary_people_need_to_understand_power', '2014'], ['/talks/john_green_the_nerd_s_guide_to_learning_everything_online', '2015'], ['/talks/daphne_koller_what_we_re_learning_from_online_education', '2012'], ['/talks/george_papandreou_imagine_a_european_democracy_without_borders', '2013']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ten+positive+emotions+in+sixty+seconds+or+less+this+is+true++so+if+you+play+this+game+with+me+today+for+just+one+single+minute++you+will+get+to+feel
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=joy++relief+love+surprise+pride+curiosity+excitement+awe+and+wonder+contentment+and+creativity+all+in+the+span+of+one+minute+so+this+sounds+pretty+good+right+now+you+re+willing+to+play
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=really+quickly+and+we+re+going+to+do+a+little+hands+on+demo+while+they+re+coming+up+i+should+let+you+know+this+game+was+invented+ten+years+ago+by+an+artists++collective+in+austria+named+monochrom+so+thank+you+monochrom+okay++so+most+people+are+familiar+with+traditional
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+s+just+remind+them+one+two+three+four+i+declare+a+thumb+war
found 1 videos: [['/talks/regina_dugan_from_mach_20_glider_to_hummingbird_drone', '2012']]
selected: /talks/regina_dugan_from_mach_20_glider_to_hummingbird_drone
sleep 5 seconds to avoid blocking
------<960>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JanePoynter_2009.stm
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+living+inside+two+biospheres+of+course+we+all+here+in+this+room+live+in+biosphere+one+i+ve+also+lived+in+biosphere+two+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=wonderful+thing+about+that+is+that+i+get+to+compare+biospheres+and+hopefully+from+that+i+get+to+learn+something
found 1 videos: [['/talks/jane_poynter_life_in_biosphere_2', '2009']]
selected: /talks/jane_poynter_life_in_biosphere_2
sleep 4 seconds to avoid blocking
------<961>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JanePoynter_2009X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+have+had+the+distinct+pleasure
found 4 videos: [['/talks/martin_seligman_the_new_era_of_positive_psychology', '2008'], ['/talks/jane_poynter_life_in_biosphere_2', '2009'], ['/talks/john_underkoffler_pointing_to_the_future_of_ui', '2010'], ['/talks/daniel_kahneman_the_riddle_of_experience_vs_memory', '2010']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+living+inside+two+biospheres+of+course+we+all+here+in+this+room+live+in+biosphere+one
found 1 videos: [['/talks/jane_poynter_life_in_biosphere_2', '2009']]
selected: /talks/jane_poynter_life_in_biosphere_2
sleep 2 seconds to avoid blocking
------<962>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JanetEchelman_2011.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+story+is+about+taking+imagination+seriously
found 2 videos: [['/talks/janet_echelman_taking_imagination_seriously', '2011'], ['/talks/stuart_brown_play_is_more_than_just_fun', '2009']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fourteen+years+ago++i+first+encountered+this+ordinary+material+fishnet+used+the+same+way+for+centuries
found 1 videos: [['/talks/janet_echelman_taking_imagination_seriously', '2011']]
selected: /talks/janet_echelman_taking_imagination_seriously
sleep 3 seconds to avoid blocking
------<963>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JanetIwasa_2014U.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=take+a+look+at+this+drawing+can+you+tell+what+it+is+i+m+a+molecular+biologist+by+training++and+i+ve+seen+a+lot+of+these+kinds+of+drawings
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+re+usually+referred+to+as+a+model+figure+a+drawing
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+shows+how+we+think+a+cellular+or+molecular+process+occurs+this+particular+drawing+is+of+a+process+called
found 1 videos: [['/talks/janet_iwasa_how_animations_can_help_scientists_test_a_hypothesis', '2014']]
selected: /talks/janet_iwasa_how_animations_can_help_scientists_test_a_hypothesis
sleep 2 seconds to avoid blocking
------<964>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JanetteSadikKhan_2013Z.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+work+of+a+transportation+commissioner+isn+t+just+about+stop+signs+and+traffic+signals++it+involves+the+design+of+cities+and+the+design+of+city+streets
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=streets+are+some+of+the+most+valuable+resources+that+a+city+has+and+yet+it+s+an+asset+that+s+largely
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+lesson+from+new+york+over+the+past+six+years+is+that+you+can+update+this+asset+you+can+remake+your+streets+quickly+inexpensively++it+can+provide+immediate+benefits++and+it+can+be+quite+popular
found 1 videos: [['/talks/janette_sadik_khan_new_york_s_streets_not_so_mean_any_more', '2013']]
selected: /talks/janette_sadik_khan_new_york_s_streets_not_so_mean_any_more
sleep 5 seconds to avoid blocking
------<965>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JanineBenyus_2005.stm
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+be+here+at+at+a+conference+that+s+devoted+to+inspired+by+nature+you+can+imagine+and+i+m+also+thrilled+to
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=be+in+the+foreplay+section+did+you+notice+this+section+is+foreplay++because+i+get+to+talk+about+one+of+my+favorite+critters
found 1 videos: [['/talks/janine_benyus_biomimicry_s_surprising_lessons_from_nature_s_engineers', '2007']]
selected: /talks/janine_benyus_biomimicry_s_surprising_lessons_from_nature_s_engineers
sleep 2 seconds to avoid blocking
------<966>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JanineBenyus_2009G.stm
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=from+us+at+least+in+modern
found 11 videos: [['/talks/jane_goodall_what_separates_us_from_chimpanzees', '2007'], ['/talks/brian_cox_cern_s_supercollider', '2008'], ['/talks/lisa_margonelli_the_political_chemistry_of_oil', '2010'], ['/talks/steven_johnson_where_good_ideas_come_from', '2010'], ['/talks/niall_ferguson_the_6_killer_apps_of_prosperity', '2011'], ['/talks/spencer_wells_a_family_tree_for_humanity', '2008'], ['/talks/thom_mayne_how_architecture_can_connect_us', '2007'], ['/talks/wade_davis_dreams_from_endangered_cultures', '2007'], ['/talks/svante_paabo_dna_clues_to_our_inner_neanderthal', '2011'], ['/talks/anupam_mishra_the_ancient_ingenuity_of_water_harvesting', '2009'], ['/talks/steven_pinker_the_surprising_decline_in_violence', '2007']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=cultures+it+would+be+to+reveal+something+that+we+ve+forgotten+that+we+used+to+know
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+well+as+we+knew+our+own+names
found 6 videos: [['/talks/kevin_bales_how_to_combat_modern_slavery', '2010'], ['/talks/tony_porter_a_call_to_men', '2010'], ['/talks/kary_mullis_play_experiment_discover', '2009'], ['/talks/jane_poynter_life_in_biosphere_2', '2009'], ['/talks/shimon_steinberg_natural_pest_control_using_bugs', '2010'], ['/talks/philip_zimbardo_the_psychology_of_evil', '2008']]
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+is+that+we+live+in+a+competent+universe
found 3 videos: [['/talks/janine_benyus_biomimicry_in_action', '2009'], ['/talks/zeresenay_alemseged_the_search_for_humanity_s_roots', '2007'], ['/talks/clifford_stoll_the_call_to_learn', '2008']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+we+are+part+of+a+brilliant+planet+and+that+we+are+surrounded
found 1 videos: [['/talks/janine_benyus_biomimicry_in_action', '2009']]
selected: /talks/janine_benyus_biomimicry_in_action
sleep 5 seconds to avoid blocking
------<967>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JaninediGiovanni_2012X.stm
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+day+you+re+living+your+ordinary+life
found 1 videos: [['/talks/mechai_viravaidya_how_mr_condom_made_thailand_a_better_place_for_life_and_love', '2010']]
selected: /talks/mechai_viravaidya_how_mr_condom_made_thailand_a_better_place_for_life_and_love
sleep 2 seconds to avoid blocking
------<968>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JanineShepherd_2012X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+about+opportunities+creating+them+and+embracing+them+and+for+me++that+was+the+olympic+dream
found 1 videos: [['/talks/janine_shepherd_a_broken_body_isn_t_a_broken_person', '2012']]
selected: /talks/janine_shepherd_a_broken_body_isn_t_a_broken_person
sleep 1 seconds to avoid blocking
------<969>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JannaLevin_2011.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+all+to+consider+for+a+second+the+very+simple+fact+that+by+far++most+of+what+we+know+about+the+universe+comes+to+us+from+light
found 2 videos: [['/talks/janna_levin_the_sound_the_universe_makes', '2011'], ['/talks/sam_harris_science_can_answer_moral_questions', '2010']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+can+stand+on+the+earth+and+look+up+at+the+night+sky+and+see+stars+with+our+bare+eyes+the+sun
found 1 videos: [['/talks/janna_levin_the_sound_the_universe_makes', '2011']]
selected: /talks/janna_levin_the_sound_the_universe_makes
sleep 2 seconds to avoid blocking
------<970>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JaredDiamond_2003.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+of+us+have+been+interested+at+one+time+or+another+in+the+romantic+mysteries+of+all+those+societies+that+collapsed++such+as+the+classic+maya+in+the+yucatan
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fertile+crescent+society+angor+wat+great+zimbabwe+and+so+on
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+within+the+last+decade+or+two+archaeologists+have+shown+us+that+there+were+environmental+problems+underlying+many+of+these+past+collapses++but+there+were+also+plenty
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+places+in+the+world+where+societies+have+been+developing+for+thousands+of+years+without+any+sign+of+a+major+collapse++such+as+japan++java
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+evidently+societies+in+some+areas+are+more+fragile+than+in+other+areas
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+can+we+understand+what+makes+some+societies+more+fragile+than+other+societies
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+problem+is+obviously+relevant+to+our+situation+today++because+today+as+well+there+are+some+societies+that+have+already+collapsed++such+as+somalia+and+rwanda+and+the+former
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=may+be+close+to+collapse+such+as+nepal++indonesia+and+columbia
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+about+ourselves+what+is+there+that+we+can+learn+from+the+past+that+would+help+us+avoid+declining+or+collapsing+in+the+way+that+so+many+past+societies+have
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=obviously+the+answer+to+this+question+is+not+going+to+be+a+single+factor++if+anyone
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=explanation+for+societal+collapses+you+know+right+away+that+they+re+an+idiot+this+is+a+complex+subject++but+how+can+we+make+sense+out+of+the+complexities+of+this+subject
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+analyzing+societal+collapses+i+ve+arrived+at+a
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=five+point+framework+a+checklist+of+things+that+i+go+through+to+try+and+understand+collapses+and+i+ll+illustrate+that++five+point+framework+by+the+extinction+of+the+greenland+norse+society+this+is+a+european
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=society+with+literate+records+so+we+know+a+good+deal+about+the+people+and+their+motivation++in+ad+nine+hundred+and+eighty+four+vikings+went+out+to+greenland+settled+greenland+and+around
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+thousand+four+hundred+and+fifty+they+died+out+the+society+collapsed+and+every+one+of+them+ended+up+dead++why+did+they+all+end+up+dead
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+inadvertently+destroying+the+resource+base+on+which+they+depend
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+in+the+case+of+the+viking+norse+the+vikings+inadvertently+caused+soil+erosion+and+deforestation+which+was+a+particular+problem+for+them+because
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+required+forests+to+make+charcoal+to+make+iron++so+they+ended+up+an+iron+age+european+society+virtually+unable+to+make+their+own+iron
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=item+on+my+checklist+is+climate+change+climate+can+get+warmer+or+colder+or+dryer+or+wetter+in+the+case+of+the+vikings+in+greenland+the+climate+got+colder+in+the+late+1300s+and+especially+in+the+1400s
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+a+cold+climate+isn+t+necessarily+fatal+because+the+inuit+the+eskimos+inhabiting+greenland+at+the+same+time+did+better+rather+than+worse+with+cold+climates+so+why
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=didn+t+the+greenland+norse+as+well
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+third+thing+on+my+checklist+is+relations+with+neighboring+friendly+societies+that+may+prop+up+a+society+and+if+that+friendly+support+is+pulled+away+that+may+make+a+society+more+likely+to+collapse
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+case+of+the+greenland+norse+they+had+trade+with+the+mother+country+norway+and+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=partly+because+norway+got+weaker++partly+because+of+sea+ice+between+greenland+and+norway
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+fourth+item+on+my+checklist+is+relations+with+hostile+societies
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+case+of+norse+greenland+the+hostiles+were+the+inuit+the+eskimos+sharing+greenland+with+whom+the+norse+got+off+to+bad+relationships
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+know+that+the+inuit
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=probably+of+greater+importance+may+have+blocked+access+to+the+outer+fjords+on+which+the+norse+depended+for+seals+at+a+critical+time+of+the+year
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+finally+the+fifth+item+on+my+checklist+is+the+political++economic+social+and+cultural+factors+in+the+society+that+make+it+more+or+less+likely+that+the+society+will+perceive+and+solve+its+environmental+problems
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+case+of+the+greenland+norse+cultural+factors+that+made+it+difficult
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+them+to+solve+their+problems+were+their+commitments+to+a+christian+society+investing+heavily+in+cathedrals++their+being+a
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=chiefly+society+and+their+scorn+for+the++inuit+from+whom+they+refused+to+learn++so+that+s+how+the+five+part+framework
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+relevant+to+the+collapse+and+eventual+extinction+of+the+greenland+norse+what+about+a+society+today
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+the+past+five+years+i+ve+been+taking+my+wife+and+kids
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+southwestern+montana+where+i+worked+as+a+teenager+on+the+hay+harvest++and+montana+at+first+sight+seems+like+the+most+pristine
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=environment+in+the+united+states+but+scratch+the+surface++and+montana+suffers+from+serious+problems
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=going+through+the+same+checklist+human+environmental+impacts++yes+acute+in+montana++toxic+problems
error: request timeout
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+caused+damage+of+billions+of+dollars+problems+from+weeds+weed+control++cost+montana+nearly+two+hundred+million+dollars+a+year
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=montana+has+lost+agricultural+areas+from+salinization+problems+of+forest+management+problems+of+forest+fires
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=second+item+on+my+checklist+climate
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=yes+the+climate+in+montana+is+getting+warmer+and+drier++but+montana+agriculture+depends+especially+on+irrigation+from+the+snow+pack+and+as+the+snow+is+melting+for+example+as
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+glaciers+in+glacier+national+park+are+disappearing+that+s+bad+news+for+montana+irrigation+agriculture
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=earned+within+montana+but+is+derived+from+out+of+state+transfer+payments+from+social+security++investments+and+so+on
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+makes+montana+vulnerable+to+the+rest+of+the+united+states+fourth+relations+with
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=montanans+have+the+same+problems+as+do+all+americans+in+being+sensitive+to+problems+created+by+hostiles+overseas+affecting+our+oil
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=question+of+how+political+economic+social+cultural+attitudes+play+into+this
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=montanans+have+long+held+values+which+today+seem+to+be+getting+in+the+way+of+their+solving+their+own+problems
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=long+held+devotion+to+logging+and+to+mines+and+to+agriculture+and+to+no+government+regulation+values+that+worked+well+in+the+past+but+they+don+t+seem+to+be+working+well+today
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+these+issues+of+collapses+for+a+lot+of+past+societies+and+for+many+present+societies+are+there+any+general+conclusions+that+arise
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+a+way+just+like+tolstoy+s+statement+about+every+unhappy+marriage+being+different+every+collapsed+or+endangered+society+is+different+they+all+have+different+details++but
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=nevertheless+there+are+certain+common+threads+that+emerge+from+these+comparisons+of+past+societies+that
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=did+or+did+not+collapse+and+threatened+societies+today
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+interesting+common+thread+has+to+do+with+in+many+cases+the+rapidity+of+collapse+after+a+society+reaches+its+peak
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+are+many+societies+that+don+t+wind+down+gradually++but+they+build+up+get+richer+and+more+powerful+and+then+within+a+short+time+within+a+few+decades+after+their+peak+they+collapse
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+example+the+classic+classic+lowland+maya+of+the+yucatan
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=began+to+collapse+in+the+early++800s+literally+a+few+decades+after+the+maya+were+building+their+biggest+monuments++and+maya+population+was
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=greatest+or+again+the+collapse+of+the+soviet+union+took+place+within+a+couple+of+decades+maybe+within+a+decade+of+the+time+when+the+soviet+union+was+at+its+greatest+power
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=would+be+the+growth+of+bacteria+in+a+petri+dish
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+rapid+collapses+are+especially+likely+where+there+s+a+mismatch+between+available+resources+and+resource+consumption+or+a+mismatch+between+economic+outlays+and+economic+potential
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+a+petri+dish+bacteria+grow
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=say+they+double+every+generation+and+five+generations+before+the+end+the+petri+dish+is+fifteen
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=16ths+empty++and+then+the+next+generation+s+three+4ths+empty+and+the+next+generation+half+empty+within+one+generation+after+the+petri+dish+still+being+half+empty
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+is+full+there+s+no+more+food+and+the+bacteria+have+collapsed+so+this+is+a+frequent+theme+societies+collapse+very+soon+after+reaching+their+peak+in+power++what+it+means+to+put+it+mathematically+is+that+if+you+re+concerned+about+a+society+today
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+should+be+looking+not+at+the+value+of+the+mathematical+function+the+wealth+itself+but+you+should+be+looking+at+the+first+derivative+and+the+second+derivatives+of+the+function
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+one+general+theme+a+second+general+theme
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+that+there+are+many+often+subtle+environmental+factors+that+make+some+societies+more+fragile+than+others++many+of+those+factors+are+not+well+understood+for+example
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=why+is+it+that+in+the+pacific+of+those+hundreds+of+pacific+islands+why+did+easter+island+end+up+as+the+most+devastating+case+of+complete+deforestation
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+turns+out+that+there+were+about+nine+different+environmental+factors+some+rather+subtle+ones+that+were+working+against+the+easter+islanders
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=perhaps+the+most+subtle+of+them+is+that+it+turns+out+that+a+major+input+of+nutrients
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+protects+island+environments+in+the+pacific+is+from+the+fallout+of+continental+dust+from+central+asia
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=easter+of+all+pacific+islands+has+the+least+input+of+dust+from+asia+restoring+the+fertility+of+its+soils++but+that+s+a+factor+that+we+didn+t+even+appreciate+until
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=reasons+are+more+fragile+than+others++and+then+finally+another+generalization+i+m+now+teaching+a+course
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=undergraduates+on+these+collapses+of+societies
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+really+bugs+my+ucla+undergraduate+students+is+how+on+earth+did+these+societies+not+see+what+they+were+doing
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+could+the+easter+islanders+have+deforested+their+environment++what+did+they
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=say+when+they+were+cutting+down+the+last+palm+tree+didn+t+they+see+what+they+were+doing+how+could+societies+not+perceive
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=their+impacts+on+the+environments+and+stop+in+time
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+would+expect+that+if+our+human+human+civilization+carries+on+then+maybe+in+the+next+century
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+will+be+asking++why+on+earth+did+these+people+today+in+the+year+two+thousand+and+three+not+see+the+obvious+things+that+they+were+doing+and+take+corrective+action
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+past+in+the+future+it+ll+seem+incredible+what+we+are+doing+today++and+so+i+ve+been+trying+to+develop+a+hierarchical
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=set+of+considerations+about+why+societies+fail+to+solve+their+problems
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=why+they+fail+to+perceive+the+problems+or+if+they+perceive+them+why+they+fail+to+tackle+them+or+if+they+tackle+them+why+do+they+fail+to+succeed+in+solving+them+i
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ll+just+mention+two+generalizations+in+this+area
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=area++one+blueprint+for+trouble++making+collapse+likely
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+where+there+is+a+conflict+of+interest+between+the+short+term+interest+of+the+decision+making+elites
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+long+term+interest+of+the+society+as+a+whole++especially+if+the+elites+are+able+to+insulate+themselves+from+the+consequences+of+their+actions
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=where+what+s+good+in+the+short+run+for+the+elite+is+bad+for+the+society+as+a+whole+there+s+a+real+risk+of+the+elite
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=doing+things+that+would+bring+the+society+down+in+the+long+run
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+example+among+the+greenland+norse+a+competitive+rank+society+what+the+chiefs+really+wanted+is+more+followers+and+more+sheep+and+more+resources+to+outcompete+the+neighboring+chiefs
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+led+the+chiefs+to+do+what+s+called+flogging+the+land+overstocking+the+land++forcing+tenant+farmers+into
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+short+run++but+led+to+the+society+s+collapse+in+the+long+run+those+same+issues
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+conflicts+of+interest+are+acute+in+the+united+states+today++especially+because+the+decision+makers+in+the+united+states
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+frequently+able+to+insulate+themselves+from+consequences+by+living+in+gated+compounds+by+drinking+bottled+water+and+so+on+and
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=within+the+last+couple+of+years
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=obvious+that+the+elite+in+the+business+world+correctly+perceive+that+they+can+advance+their+short+term+interest+by+doing+things+that+are+good+for+them+but+bad+for+society+as+a+whole++such+as+draining+a+few+billion+dollars+out+of+enron+and
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=other+businesses+they+are+quite+correct
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+these+things+are+good+for+them+in+the+short+term
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=although+bad+for+society+in+the+long+term++so+that+s+one+general+conclusion+about+why+societies+make+bad
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=decisions+conflicts+of+interest+and+the+other+generalization+that+i+want+to+mention
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+that+it+s+particularly+hard+for+a+society+to+make+quote+unquote+good+decisions+when+there+is+a+conflict
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=involving+strongly+held+values+that+are+good+in+many+circumstances+but+are+poor+in+other+circumstances+for+example
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+greenland+norse+in+this+difficult+environment+were+held+together+for+four+and+a+half+centuries+by+their
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=shared+commitment+to+religion+and+by+their+strong+social+cohesion
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+those+two+things+commitment+to+religion+and+strong+social+cohesion+also+made+it+difficult+for+them+to+change+at+the+end+and+to+learn+from+the
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+the+things+that+enabled+australia+to+survive+in+this+remote+outpost+of+european+civilization+for+two+hundred+and+fifty+years+has+been+their+british+identity
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+today++their+commitment+to+a+british+identity+identity+is+serving+australians+poorly+in+their+need+to+adapt+to+their+situation+in+asia++so+it+s+particularly
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=difficult+to+change+course+when+the+things+that+get+you+in+trouble+are+the+things+that+are+also+the+source+of+your+strength
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+s+going+to+be+the+outcome+today++well+all+of+us
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=know+the+dozen+sorts+of+ticking+time+bombs+going+on+in+the+modern+world+time+bombs+that+have+fuses
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+a+few+decades+to+all+of+them+not+more+than+fifty+years++and+any+one+of+which+can+do+us+in+the+time+bombs+of+water+of+soil
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+climate+change++invasive+species++the+photosynthetic+ceiling+population+problems+toxics+etc+etc+listing+about+twelve+of+them
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+while+these+time+bombs+none+of+them+has+a+fuse+beyond+fifty+years+and+most+of+them+have+fuses+of+a+few+decades+some+of+them+in+some+places+have+much+shorter+fuses+at+the+rate+at+which+we+re+going
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+philippines+will+lose+all+its+accessible
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=loggable+forest+within+five+years+and+the+solomon+islands+are+only+one+year+away+from+losing+their+loggable+forest+which+is+their+major+export+and+that+s+going+to+be+spectacular+for+the+economy+of+the+solomons
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+often+ask+me+jared+what+s+the+most+important+thing+that+we+need+to+do+about+the+world+s+environmental+problems
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+my+answer+is+the+most+important+thing+we+need+to+do+is+to+forget+about+there+being+any+single+thing+that+is+the+most+important+thing+we+need+to+do+instead+there+are+a+dozen+things
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=things+any+one+of+which+could+do+us+in+and+we+ve+got+to+get+them+all+right+because+if+we+solve+eleven+we+fail+to+solve+the+12th+we+re+in+trouble++for+example+if+we+solve+our+problems+of+water
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+soil+and+population+but+don+t+solve+our+problems+of+toxics+then+we+are+in+trouble
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+means+by+definition+that+it+cannot+be+maintained+and+the+outcome+is+going+to+get+resolved+within+a+few+decades
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+means+that+those+of+us+in+this+room+who+are+less+than+fifty+or+sixty+years+old+will+see+how+these+paradoxes+are+resolved+and+those+of+us+who+are+over+the+age+of+sixty
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=may+not+see+the+resolution+but+our+children+and+grandchildren+certainly+will+the+resolution+is+going+to+achieve+either+of+two+forms
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+pleasant+ways+of+our+own+choice+by+taking+remedial+remedial+action
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+else+these+conflicts+are+going+to+get+settled+in+unpleasant+ways+not+of+our+choice+namely+by+war++disease+or+starvation++but+what+s+for+sure+is
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=will+get+resolved+in+one+way+or+another+in+a+few+decades+in+other+words+since+the+theme+of+this+session+is+choices+we+have+a+choice
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=does+that+mean+that+we+should+get+pessimistic+and+overwhelmed+i+draw+the+reverse+conclusion
found 0 videos: []
error: no video is found.
sleep 3 seconds to avoid blocking
------<971>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JaredDiamond_2013.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+give+me+an+idea+of+how+many+of+you+here+may+find+what+i+m+about+to+tell+you+of+practical+value++let+me+ask+you+please+to+raise+your+hands++who+here+is+either+over+sixty+five+years+old
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+hopes+to+live+past+age
found 15 videos: [['/talks/alessandra_orofino_it_s_our_city_let_s_fix_it', '2014'], ['/talks/jared_diamond_how_societies_can_grow_old_better', '2013'], ['/talks/candy_chang_before_i_die_i_want_to', '2012'], ['/talks/stephen_cave_the_4_stories_we_tell_ourselves_about_death', '2013'], ['/talks/sting_how_i_started_writing_songs_again', '2014'], ['/talks/jer_thorp_make_data_more_human', '2012'], ['/talks/karen_thompson_walker_what_fear_can_teach_us', '2013'], ['/talks/dambisa_moyo_is_china_the_new_idol_for_emerging_economies', '2013'], ['/talks/thomas_p_campbell_weaving_narratives_in_museum_galleries', '2012'], ['/talks/amanda_bennett_we_need_a_heroic_narrative_for_death', '2013'], ['/talks/tony_wyss_coray_how_young_blood_might_help_reverse_aging_yes_really', '2015'], ['/talks/sean_carroll_distant_time_and_the_hint_of_a_multiverse', '2011'], ['/talks/samuel_cohen_alzheimer_s_is_not_normal_aging_and_we_can_cure_it', '2015'], ['/talks/siddharthan_chandran_can_the_damaged_brain_repair_itself', '2014'], ['/talks/iwan_baan_ingenious_homes_in_unexpected_places', '2013']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=parents+or+grandparents+who+did+live+or+have+lived+past+sixty+five+raise+your+hands+please
found 1 videos: [['/talks/jarrett_j_krosoczka_how_a_boy_became_an_artist', '2013']]
selected: /talks/jarrett_j_krosoczka_how_a_boy_became_an_artist
sleep 1 seconds to avoid blocking
------<972>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JaredFicklin_2012.stm
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+s+the+combination+of+these+things+that+has+led+me+to+the+hobby+of+sound+visualization++and+on+occasion+has+led+me+to+play+with+fire
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+a+rubens++tube+it+s+one+of+many+i+ve+made+over+the+years+and+i+have
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+here+tonight+it+s+about+an+8+foot+long+tube+of+metal+it+s+got+a+hundred+or+so+holes+on+top+on+that+side+is+the+speaker+and+here+is+some+lab+tubing+and+it+s+connected+to+this+tank
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+s+fire+it+up+and+see+what+it+does
found 18 videos: [['/talks/gregoire_courtine_the_paralyzed_rat_that_walked', '2013'], ['/talks/freeman_hrabowski_4_pillars_of_college_success_in_science', '2013'], ['/talks/simon_lewis_don_t_take_consciousness_for_granted', '2011'], ['/talks/lauren_zalaznick_the_conscience_of_television', '2011'], ['/talks/jean_baptiste_michel_erez_lieberman_aiden_what_we_learned_from_5_million_books', '2011'], ['/talks/james_hansen_why_i_must_speak_out_about_climate_change', '2012'], ['/talks/roger_ebert_remaking_my_voice', '2011'], ['/talks/larry_smith_why_you_will_fail_to_have_a_great_career', '2012'], ['/talks/tom_shannon_john_hockenberry_the_painter_and_the_pendulum', '2010'], ['/talks/bruce_feiler_the_council_of_dads', '2011'], ['/talks/roger_stein_a_bold_new_way_to_fund_drug_research', '2014'], ['/talks/matthew_carter_my_life_in_typefaces', '2014'], ['/talks/karima_bennoune_when_people_of_muslim_heritage_challenge_fundamentalism', '2014'], ['/talks/ben_goldacre_battling_bad_science', '2011'], ['/talks/charles_hazlewood_trusting_the_ensemble', '2011'], ['/talks/david_agus_a_new_strategy_in_the_war_on_cancer', '2010'], ['/talks/morgan_spurlock_the_greatest_ted_talk_ever_sold', '2011'], ['/talks/majora_carter_3_stories_of_local_eco_entrepreneurship', '2010']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+okay+to+applaud+the+laws+of+physics+but+essentially+what+s+happening+here
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+the+energy+from+the+sound+via+the+air+and+gas+molecules+is+influencing+the+combustion+properties+of+propane+creating+a+visible+waveform
found 1 videos: [['/talks/jared_ficklin_new_ways_to_see_music_with_color_and_fire', '2012']]
selected: /talks/jared_ficklin_new_ways_to_see_music_with_color_and_fire
sleep 5 seconds to avoid blocking
------<973>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JarrethMerz_2011G.stm
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+raised+in+ghana+west+africa+ghana+felt+safe+to+me+as+a+child++i+was+free+i+was+happy
found 2 videos: [['/talks/jarreth_merz_filming_democracy_in_ghana', '2011'], ['/talks/naif_al_mutawa_superheroes_inspired_by_islam', '2010']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=marked+a+time+of+musical+and+artistic+excellence+in+ghana+but+then+by+the+end+of+the+decade+the+country+had+fallen+back+into+political+instability
found 1 videos: [['/talks/jarreth_merz_filming_democracy_in_ghana', '2011']]
selected: /talks/jarreth_merz_filming_democracy_in_ghana
sleep 4 seconds to avoid blocking
------<974>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JarrettJKrosoczka_2012X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+name+is+jarrett+krosoczka++and+i+write+and+illustrate+books+for+children+for+a+living++so+i+use+my+imagination+as+my+full+time+job
found 1 videos: [['/talks/jarrett_j_krosoczka_how_a_boy_became_an_artist', '2013']]
selected: /talks/jarrett_j_krosoczka_how_a_boy_became_an_artist
sleep 4 seconds to avoid blocking
------<975>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JarrettKrosoczka_2014S.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+my+first+children+s+book+was+published+in+two+thousand+and+one++i+returned+to+my+old+elementary+school+to+talk+to+the+students+about+being+an+author+and+an+illustrator
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+when+i+was+setting+up+my+slide+projector
found 1 videos: [['/talks/jarrett_j_krosoczka_why_lunch_ladies_are_heroes', '2014']]
selected: /talks/jarrett_j_krosoczka_why_lunch_ladies_are_heroes
sleep 3 seconds to avoid blocking
------<976>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JasonClay_2010G.stm
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+lived+on+less+than+a+dollar+a+day+for+about+fifteen+years++i+got+a+scholarship+went+to+university++studied+international+agriculture+studied
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+decided+i+was+going+to+give+back+i+was+going+to+work+with+small+farmers++i+was+going+to+help+alleviate+poverty+i+was+going+to+work+on+international+development
found 1 videos: [['/talks/jason_clay_how_big_brands_can_help_save_biodiversity', '2010']]
selected: /talks/jason_clay_how_big_brands_can_help_save_biodiversity
sleep 4 seconds to avoid blocking
------<977>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JasondeCairesTaylor_2015Z.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ten+years+ago+i+had+my+first+exhibition+here++i+had+no+idea+if+it+would+work
found 6 videos: [['/talks/jason_decaires_taylor_an_underwater_art_museum_teeming_with_life', '2015'], ['/talks/garry_kasparov_don_t_fear_intelligent_machines_work_with_them', '2017'], ['/talks/alastair_gray_how_fake_handbags_fund_terrorism_and_organized_crime', '2017'], ['/talks/mathias_jud_art_that_lets_you_talk_back_to_nsa_spies', '2015'], ['/talks/anthony_d_romero_this_is_what_democracy_looks_like', '2017'], ['/talks/alexander_wagner_what_really_motivates_people_to_be_honest_in_business', '2017']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+was+at+all+possible+but+with+a+few+small+steps+and+a+very+steep+learning+curve++i+made+my+first
found 1 videos: [['/talks/jason_decaires_taylor_an_underwater_art_museum_teeming_with_life', '2015']]
selected: /talks/jason_decaires_taylor_an_underwater_art_museum_teeming_with_life
sleep 3 seconds to avoid blocking
------<978>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JasonFried_2010X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=why+people+can+t+seem+to+get+work+done+at+work++which+is+a+problem+we+all+kind+of+have+but+let+s+sort+of+start+at+the+beginning+so+we+have+companies+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+charities+and+all+these+groups+that+have+employees+or+volunteers+of+some+sort++and+they+expect+these+people
found 1 videos: [['/talks/jason_fried_why_work_doesn_t_happen_at_work', '2010']]
selected: /talks/jason_fried_why_work_doesn_t_happen_at_work
sleep 5 seconds to avoid blocking
------<979>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JasonMcCue_2012G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+most+certainly+do+talk+to+terrorists++no+question+about+it++we+are+at+war
found 5 videos: [['/talks/richard_ledgett_the_nsa_responds_to_edward_snowden_s_ted_talk', '2014'], ['/talks/jason_mccue_terrorism_is_a_failed_brand', '2012'], ['/talks/damon_horowitz_we_need_a_moral_operating_system', '2011'], ['/talks/hasan_elahi_fbi_here_i_am', '2011'], ['/talks/bruce_schneier_the_security_mirage', '2011']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+a+new+form+of+terrorism++it+s+sort+of+the+good+old+traditional+form+of+terrorism++but+it+s+sort+of+been+packaged+for+the
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+the+big+things+about+countering+terrorism
found 2 videos: [['/talks/jason_mccue_terrorism_is_a_failed_brand', '2012'], ['/talks/karima_bennoune_when_people_of_muslim_heritage_challenge_fundamentalism', '2014']]
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+do+you+perceive+it++because+perception+leads+to+your+response+to+it
found 2 videos: [['/talks/jason_mccue_terrorism_is_a_failed_brand', '2012'], ['/talks/emily_balcetis_why_some_people_find_exercise_harder_than_others', '2014']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+if+you+have+a+traditional+perception+of+terrorism
found 1 videos: [['/talks/jason_mccue_terrorism_is_a_failed_brand', '2012']]
selected: /talks/jason_mccue_terrorism_is_a_failed_brand
sleep 2 seconds to avoid blocking
------<980>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JasonPontin_2013U.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=buzz+aldrin+climbed+out+of+apollo+eleven+s+lunar+module+and+descended+onto+the+sea+of+tranquility++armstrong+and+aldrin+were
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=alone++but+their+presence+on+the+moon+s+gray+surface+was+the+culmination+of+a+convulsive++collective+effort
found 1 videos: [['/talks/jason_pontin_can_technology_solve_our_big_problems', '2013']]
selected: /talks/jason_pontin_can_technology_solve_our_big_problems
sleep 4 seconds to avoid blocking
------<981>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JayBradner_2011X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ten+years+ago+from+chicago+with+an+interest+in+cancer
found 2 videos: [['/talks/deborah_rhodes_a_test_that_finds_3x_more_breast_tumors_and_why_it_s_not_available_to_you', '2011'], ['/talks/majora_carter_3_stories_of_local_eco_entrepreneurship', '2010']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+in+chemistry+you+might+know+that+chemistry+is+the+science+of+making+molecules+or+to+my+taste+new+drugs+for
found 1 videos: [['/talks/jay_bradner_open_source_cancer_research', '2011']]
selected: /talks/jay_bradner_open_source_cancer_research
sleep 4 seconds to avoid blocking
------<982>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JaySilver_2013S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=someone+just+mentioned+macgyver+because+that+was+like++i+loved+it+and+when+i+was+seven+i+taped+a+fork+to+a+drill+and+i+was+like
found 1 videos: [['/talks/jay_silver_hack_a_banana_make_a_keyboard', '2013']]
selected: /talks/jay_silver_hack_a_banana_make_a_keyboard
sleep 1 seconds to avoid blocking
------<983>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JayWalker_2008.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+rocks+have+been+hitting+our+earth+for+about+three+billion+years+and+are+responsible+for+much+of+whats+gone+on+on+our+planet+this+is+an+example+of+a+real+meteorite+and+you+can+see+all+the+melting+of+the+iron+from+the+speed+and+the+heat
found 1 videos: [['/talks/jay_walker_my_library_of_human_imagination', '2008']]
selected: /talks/jay_walker_my_library_of_human_imagination
sleep 1 seconds to avoid blocking
------<984>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JayWalker_2009.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+s+talk+about+manias+let+s+start+with+beatlemania
found 1 videos: [['/talks/jay_walker_the_world_s_english_mania', '2009']]
selected: /talks/jay_walker_the_world_s_english_mania
sleep 4 seconds to avoid blocking
------<985>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JDSchramm_2011A.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=from+all+outward+appearances+john+had+everything+going+for+him
found 1 videos: [['/talks/jd_schramm_break_the_silence_for_suicide_attempt_survivors', '2011']]
selected: /talks/jd_schramm_break_the_silence_for_suicide_attempt_survivors
sleep 4 seconds to avoid blocking
------<986>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JDVance_2016S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+remember+the+very+first+time+i+went+to+a+nice+restaurant+a+really+nice+restaurant+it
found 7 videos: [['/talks/j_d_vance_america_s_forgotten_working_class', '2016'], ['/talks/bran_ferren_to_create_for_the_ages_let_s_combine_art_and_engineering', '2014'], ['/talks/chieko_asakawa_how_new_technology_helps_blind_people_explore_the_world', '2015'], ['/talks/jim_yong_kim_doesn_t_everyone_deserve_a_chance_at_a_good_life', '2017'], ['/talks/chimamanda_ngozi_adichie_we_should_all_be_feminists', '2017'], ['/talks/worklife_with_adam_grant_the_daily_show_s_secret_to_creativity', '2018'], ['/talks/gretchen_carlson_david_brooks_political_common_ground_in_a_polarized_united_states', '2017']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+for+a+law+firm+recruitment+dinner++and+i+remember+beforehand+the+waitress+walked+around+and+asked+whether+we+wanted+some+wine++so+i+said+sure+i+ll+take
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=would+you+like+sauvignon+blanc+or+chardonnay
found 1 videos: [['/talks/j_d_vance_america_s_forgotten_working_class', '2016']]
selected: /talks/j_d_vance_america_s_forgotten_working_class
sleep 4 seconds to avoid blocking
------<987>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JeanBaptisteMichel_2012.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+mathematics+is+a+very+powerful+language++it+has+generated+considerable+insight+in+physics+in+biology+and+economics++but+not+that+much+in+the+humanities+and+in+history
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+there+s+a+belief+that+it+s+just+impossible+that+you+cannot+quantify+the+doings+of+mankind+that+you+cannot+measure+history
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+don+t+think+that+s+right+i+want+to+show+you+a+couple+of+examples+why
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+my+collaborator+erez+and+i+were+considering+the+following+fact+that+two+kings+separated+by+centuries+will+speak+a+very+different+language
found 1 videos: [['/talks/jean_baptiste_michel_the_mathematics_of_history', '2012']]
selected: /talks/jean_baptiste_michel_the_mathematics_of_history
sleep 1 seconds to avoid blocking
------<988>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JeanneGang_2016W.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+a+relationship+builder+when+you+think+of+a+relationship+builder+don+t+you+just+automatically+think+architect
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=probably+not+that+s+because+most+people+think+architects+design+buildings
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+what+we+really+design+are+relationships
found 13 videos: [['/talks/hilary_cottam_social_services_are_broken_how_we_can_fix_them', '2015'], ['/talks/tristan_harris_how_better_tech_could_protect_us_from_distraction', '2016'], ['/talks/jeanne_gang_buildings_that_blend_nature_and_city', '2017'], ['/talks/deanna_van_buren_what_a_world_without_prisons_could_look_like', '2018'], ['/talks/tom_gruber_how_ai_can_enhance_our_memory_work_and_social_lives', '2017'], ['/talks/johann_hari_everything_you_think_you_know_about_addiction_is_wrong', '2015'], ['/talks/adam_alter_why_our_screens_make_us_less_happy', '2017'], ['/talks/tristan_harris_how_a_handful_of_tech_companies_control_billions_of_minds_every_day', '2017'], ['/talks/susan_pinker_the_secret_to_living_longer_may_be_your_social_life', '2017'], ['/talks/tom_wujec_got_a_wicked_problem_first_tell_me_how_you_make_toast', '2015'], ['/talks/neri_oxman_design_at_the_intersection_of_technology_and_biology', '2015'], ['/talks/ole_scheeren_why_great_architecture_should_tell_a_story', '2016'], ['/talks/gwynne_shotwell_spacex_s_plan_to_fly_you_across_the_globe_in_30_minutes', '2018']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+cities+are+about+people+they+re+places+where+people+come+together+for+all+kinds+of+exchange++and+besides+skylines+are+highly+specific+urban+habitats+with+their+own+insects+plants+and+animals++and+even+their+own+weather
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+today+urban+habitats+are+out+of+balance++climate+change+together+with+political+and+economic+troubles+are
found 1 videos: [['/talks/jeanne_gang_buildings_that_blend_nature_and_city', '2017']]
selected: /talks/jeanne_gang_buildings_that_blend_nature_and_city
sleep 2 seconds to avoid blocking
------<989>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JedidahIsler_2015F.stm
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+fact+i+would+argue+that+some+of+the+most+interesting+things+of+the+human+experience+occur+at+the+intersections+in+the+liminal+space
found 1 videos: [['/talks/jedidah_isler_the_untapped_genius_that_could_change_science_for_the_better', '2015']]
selected: /talks/jedidah_isler_the_untapped_genius_that_could_change_science_for_the_better
sleep 2 seconds to avoid blocking
------<990>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JedidahIsler_2015U.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+first+love+was+for+the+night+sky
found 10 videos: [['/talks/jedidah_isler_how_i_fell_in_love_with_quasars_blazars_and_our_incredible_universe', '2015'], ['/talks/harry_baker_a_love_poem_for_lonely_prime_numbers', '2015'], ['/talks/sara_seager_the_search_for_planets_beyond_our_solar_system', '2015'], ['/talks/adam_driver_my_journey_from_marine_to_actor', '2016'], ['/talks/sting_how_i_started_writing_songs_again', '2014'], ['/talks/julie_taymor_spider_man_the_lion_king_and_life_on_the_creative_edge', '2013'], ['/talks/shane_koyczan_to_this_day_for_the_bullied_and_beautiful', '2013'], ['/talks/dena_simmons_how_students_of_color_confront_impostor_syndrome', '2016'], ['/talks/mac_stone_stunning_photos_of_the_endangered_everglades', '2015'], ['/talks/jeff_speck_the_walkable_city', '2013']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=love+is+complicated+you+re+looking+at+a+fly+through+of+the+hubble+space+telescope++ultra+deep+field+one+of+the+most+distant+images+of+our+universe+ever
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=everything+you+see+here+is+a+galaxy++comprised+of+billions+of+stars+each
found 1 videos: [['/talks/jedidah_isler_how_i_fell_in_love_with_quasars_blazars_and_our_incredible_universe', '2015']]
selected: /talks/jedidah_isler_how_i_fell_in_love_with_quasars_blazars_and_our_incredible_universe
sleep 2 seconds to avoid blocking
------<991>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JeffBezos_2003.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+resilience+and+technology+it+s+actually+much+easier+you+re+going+to+see+some+other+speakers+today+i+already+know+who
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+going+to+talk+about+breaking+bones+stuff+and+of+course+with+technology+it+never+is+so+it+s+very+easy
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+that+if+we+look+at+what+happened+on+the+internet+with+such+an+incredible+last+half+a+dozen+years
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+it+s+hard+to+even+get+the+right+analogy+for+it+a+lot+of+how+we+decide+how+we+re+supposed+to+react+to+things+and+what+we+re+supposed+to+expect+about+the+future+depends+on
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+we+bucket+things+and+how+we+categorize+them
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+i+think+the+tempting+analogy+for+the
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=just+went+through+with+the+internet+is+a+gold+rush
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+easy+to+think+of+this+analogy+as+very+different+from+some+of+the+other+things+you+might+pick+for+one+thing+both+were+very+real++in
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+gold+rush+they+took+over+$+seven+hundred+million+worth+of+gold+out+of+california+it+was+very+real
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+internet+was+also+very+real+this+is+a+real+way+for+humans+to+communicate+with+each+other+it+s+a+big+deal+huge+boom
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=remind+you+of+all+the+hype+that+was+involved+with+the+internet
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+you+had+the+same+thing+with+the+gold+rush+gold+gold+gold+sixty+eight+rich+men+on+the+steamer+portland++stacks+of+yellow+metal+some+have+five+thousand+many+have+more+a+few+bring+out+one+hundred+thousand+dollars+each
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+would+get+very+excited+about+this+when+they+read+these+articles
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=eldorado+of+the+united+states+of+america++the+discovery+of+inexhaustible+gold+mines+in+california
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+parallels+between+the+gold+rush+and+the+internet+rush+continue+very+strongly++so+many+people+left+what+they+were+doing+and+what+would+happen+is++and+the+gold+rush+went+on+for+years+people+on+the+east+coast+in
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+getting+rich+and+then+in+one+thousand+eight+hundred+and+fifty+they+still+hear+that+and+they+think+it+s+not+real+by+about+one+thousand+eight+hundred+and+fifty+two+they+re+thinking+am+i+the+stupidest+person
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+earth+by+not+rushing+to+california+and+they+start+to+decide+they+are+these+are+community+affairs+by+the+way+local+communities+on+the+east+coast+would+get+together+and+whole+teams+of
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=caravan+across+the+united+states+and+they+would+form+companies+these+were+typically+not+solitary+efforts++but+no+matter+what+if+you+were+a+lawyer+or+a+banker
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+dropped+what+they+were+doing+no+matter+what+skill+set+they+had+to+go+pan+for+gold
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+guy+on+the+left+dr+richard+beverley+cole+he+lived+in+philadelphia+and+he+took+the+panama+route+they+would+take+a+ship+down+to+panama+across+the+isthmus
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+take+another+ship+north
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=went+by+covered+wagon+to+california
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+has+its+parallels+too+doctors+leaving+their+practices+these+are+both+very+successful+a+physician+in+one+case+a+surgeon+in+the+other
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=same+thing+happened+on+the+internet+you+get
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+gold+rush+people+literally+jumped+ship+the+san+francisco+harbor+was+clogged+with
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=six+hundred+ships+at+the+peak+because+the+ships+would+get+there+and+the+crews+would+abandon+to+go
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=search+for+gold++so+there+were+literally+six+hundred+captains+and+six+hundred+ships+they+turned+the+ships+into+hotels+because+they+couldn+t+sail+them+anywhere
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+had+gold+fever++and+you+saw+some+of+the+excesses+that+the+dotcom+fever+created+and+the+same+thing+happened
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+fort+in+san+francisco+at+the+time+had+about+one+thousand+three+hundred+soldiers+half+of+them+deserted
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+go+look+for+gold+and+they+wouldn+t+let+the+other+half+out+to+go+look+for+the+first+half+because+they+were+afraid+they+wouldn+t+come+back
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+one+of+the+soldiers+wrote+home+and+this+is+the+sentence+that+he+put+the+struggle+between+right+and+six+dollars+a+month+and+wrong+and+seventy+five+dollars+a+day+is+a+rather+severe+one
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=burn+rate+in+the+gold+rush+a
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=very+bad+burn+rate++this+is+actually+from+the+klondike+gold+rush+this+is+the+white+pass+trail++they+loaded+up+their+mules
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+didn+t+plan+right
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+didn+t+know+how+far+they+would+really+have+to+go++and+they+overloaded+the+horses+with+hundreds+and+hundreds+of+pounds+of+stuff
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+fact+it+was+so+bad+that
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=most+of+the+horses+died+before+they+could+get+where+they+were+going+it+got+renamed+the+dead+horse+trail+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+canadian+minister+of+the+interior+wrote+this+at+the+time
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thousands+of+pack+horses+lie+dead+along+the+way++sometimes+in+bunches+under+the+cliffs+with+pack+saddles+and+packs+where+they+ve+fallen+from+the+rock+above
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sometimes+in+tangled+masses+filling+the+mud+holes+and+furnishing+the+only+footing+for+our+poor+pack+animals+on+the+march
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=regret+to+say++exhausted+but+still+alive+a+fact+we+were+unaware+of+until+after+the+miserable+wretches+turned+beneath+the+hooves+of+our+cavalcade
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+eyeless+sockets+of+the+pack+animals+everywhere+account+for+the+myriads+of+ravens+along+the+road
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+inhumanity+which+this+trail+has+been+witness+to+the+heartbreak+and+suffering+which+so+many+have+undergone+cannot+be
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+smell+that+would+have+accompanied+that+we+had+the+same+thing+on+the+internet+very+bad+burn+rate+calculations
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ll+just+play+one+of+these+and+you+ll+remember+it++this+is+a+commercial+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+very+difficult+to+figure+out+what+that+ad+is+for
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+spent+three+and+a+half+million+dollars+in+the+two+thousand+super+bowl+to+air+that+ad+even+though+at+the+time+they+only+had+a+million+dollars+in+annual+revenue+now
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+s+where+our+analogy+with+the+gold+rush+starts+to+diverge+and+i+think+rather+severely++and+that+is+in+a+gold+rush++when+it+s+over+it+s
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+s+this+guy+there+are+many+men+in+dawson+at+the+present+time+who+feel+keenly+disappointed+they+ve+come+thousands+of+miles+on+a+perilous+trip++risked+life+health
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+property+spent+months+of+the+most+arduous+labor+a+man+can+perform+and+at+length+with+expectations+raised+to+the+highest+pitch+have+reached+the+coveted+goal+only+to+discover+the+fact+that+there+is+nothing+here+for+them
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+when+you+take+out+that+last+piece+of+gold+and+they+did+incredibly+quickly++i+mean++if+you+look+at+the+one+thousand+eight+hundred+and+forty+nine+gold+rush
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+entire+american+river+region+within+two+years+every+stone+had+been+turned+and+after+that+only+big+companies+who+used+more+sophisticated+mining+technologies+started+to+take+gold+out+of+out+of+there
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+there+s+a+much+better+analogy+that+allows+you+to+be+incredibly
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+lot+of+similarities+between+the+internet+and+the+electric+industry
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+the+electric+industry+you+actually+have+to+one+of+them+is+that+they+re+both+sort+of+thin+horizontal+enabling+layers+that+go+across+lots+of+different+industries+it+s+not+a+specific+thing
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+electricity+is+also+very+very+broad+so+you+have
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know+it+can+be+used+as+an+incredible+means+of+transmitting+power+it+s+an+incredible+means+of+coordinating+in+a+very+fine+grained+way+information+flows+there+s+a+bunch+of+things+that+are+interesting+about+electricity
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+the+part+of+the+electric+revolution+that+i+want+to+focus+on+is+sort+of+the+golden+age+of+appliances++the+killer+app+that+got+the+world+ready+for+appliances+was+the+light
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+the+light+bulb+is+what+wired+the+world++and+they+weren+t+thinking+about+appliances+when+they+wired+the+world++they+were+really+thinking+about+they+weren+t
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=putting+electricity+into+the+home++they+were
error: request timeout
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and++but+it+really+it+got+the+electricity+it+took+a+long+time+this+was+a+huge+as+you+would+expect+a+huge+capital+build+out+all+the+streets+had+to+be+torn+up
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+work+going+on+down+in+lower+manhattan+where+they+built
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+of+the+first+electric+power+generating+stations++and+they+re+tearing+up+all+the+streets++the+edison+electric+company++which+became+edison+general+electric+which+became+general+electric
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=paid+for+all+of+this+digging+up+of+the+streets+it+was+incredibly+expensive
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+that+is+not+the+and+that+s+not+the+part+that+s+really+most+similar+to+the+web+because+remember+the+web+got+to+stand
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+top+of+all+this+heavy+infrastructure+that+had+been+put+in+place+because+of+the+long+distance+phone+network
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+all+of+the+cabling+and+all+of+the+heavy+infrastructure+i+m+going+back+now+to+sort+of+the+explosive+part+of+the+web+in+one+thousand+nine+hundred+and+ninety+four+when+it+was+growing+two+thousand+three+hundred+percent+a+year
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+could+it+grow+at+two+thousand+three+hundred+percent+a+year
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+people+weren+t+really+investing+in+the+web
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+because+that+heavy+infrastructure+had+already+been+laid+down
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+the+light+bulb+laid+down+the+heavy+infrastructure+and+then+home+appliances+started+coming+into+being
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+was+huge+the+first+one+was+the+electric+fan+this+was+the+one+thousand+eight+hundred+and+ninety+electric+fan+and+the
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=appliances+the+golden+age+of+appliances+really+lasted+it+depends+how+you+want+to+measure+it+but+it+s+anywhere+from+forty+to+sixty+years+it+goes+on+a+long+time+it+starts
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+electric+fan+was+a+big+success+the
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=electric+iron+also+very+big+by+the+way++this+is+the+beginning+of+the+asbestos+lawsuit
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+asbestos+under+that+handle+there
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+the+first+vacuum+cleaner+the+one+thousand+nine+hundred+and+five+skinner+vacuum+from+the+hoover+company++and
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+one+weighed+ninety+two+pounds+and+took+two+people+to+operate
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+cost+a+quarter+of+a+car++so+it+wasn+t+a+big+seller++this+was+truly+truly+an
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+people+i+guess+decided+that+they+would+not+wrinkle+their+ties
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+never+really+caught+on+either+the+electric+shoe+warmer+and+drier
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=never+a+big+seller++this+came+in+like+six+different+colors+i+don+t+know+why
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sometimes+it+s+just+not+the+right+time+for+an+invention+maybe+it+s+time+to+give+this+one+another+shot++so+i+thought+we+could+build+a+super+bowl+ad
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+this+we+d+need+the+right+partner+and+i+thought+that+really
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+thought+that+would+really+work
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+give+that+another+shot+now+the+toaster+was+huge+because+they+used+to+make+toast+on+open+fires+and
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+took+a+lot+of+time+and+attention+i+want+to+point+out+one+thing
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+you+guys+know+what+this+is+they+hadn+t+invented+the+electric+socket+yet
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+this+was+remember+they+didn+t+wire+the+houses+for+electricity+they+wired+them+for+lighting+so+your+your+appliances+would+plug+in+they+would+each+room+typically+had
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+light+bulb+socket+at+the+top+and+you+d+plug+it+in+there+in+fact+if+you+ve
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=seen+the+carousel+of+progress+at+disney+world+you+ve+seen+this+here+are+the
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=cables+coming+up+into+this+light+fixture+all+the+appliances+plug+in+there+and+you+would+just+unscrew+your+light+bulb+if+you+wanted+to+plug+in+an+appliance
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+next+thing+that+really+was+a+big+big+deal+was+the
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=washing+machine+now+this+was+an+object+of+much+envy+and+lust+everybody+wanted+one+of+these+electric+washing+machines+on+the+left+hand+side+this+was+the+soapy+water++and+there+s+a+rotor+there+that+this+motor+is+spinning+and+it+would+clean+your+clothes+this+is+the+clean
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=rinse+water+so+you+d+take+the+clothes+out+of+here+put+them+in+here++and+then+you+d+run+the+clothes+through+this+electric+wringer
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+was+a+big+deal+you+d+keep+this+on+your+porch+it+was+a+little+bit+messy
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+kind+of+a+pain+and+you+d+run+a+long+cord+into+the+house
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=where+you+could+screw+it+into+your+light+socket+and+that+s+actually+kind+of+an+important+point+in+my+presentation+because
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=switch+that+was+to+come+much+later+the+off+switch+on+appliances+because
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+didn+t+make+any+sense+i+mean+you+didn+t+want+this+thing+clogging+up+a+light+socket+so+you+know+when+you+were+done+with+it+you+unscrewed+it+that+s+what+you+did+you+didn+t+turn+it+off+and+as+i+said+before+they+hadn+t+invented+the+electric+outlet+either
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+the+washing+machine+was+a+particularly+dangerous+device++and+there+are+when+you+research+this+there+are+gruesome
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=descriptions+of+people+getting+their+hair+and+clothes+caught+in+these+devices
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+couldn+t+yank+the+cord+out+because+it+was+screwed+into+a+light+socket+inside+the+house
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+there+was+no+off+switch+so+it+wasn+t+very+good
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+might+think+that+that+was+incredibly+stupid+of+our+ancestors+to+be+plugging+things+into+a+light+socket+like+this
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+you+know+before+i+get+too+far+into+condemning+our+ancestors+i+thought+i+d+show+you+this+is+my+conference+room
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+a+total+kludge+if+you+ask+me+first+of+all+this+got+installed+upside+down+this+light+socket+and+so
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+cord+keeps+falling+out+so+i+taped+it+in+this+is+supposed
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+that+s+not+the+worst+one
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+what+it+looks+like+under+my+desk+i+took+this+picture+just+two+days+ago++so+we+really+haven+t+progressed+that+much+since+one+thousand+nine+hundred+and+eight
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+a+total+total+mess
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+know+we+think+it+s+getting+better++but+have+you+tried+to+install+eight+hundred+and+two+point+one+one+yourself
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+challenge+you+to+try+it+s+very+hard+i
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+computer+science+this+process+has+brought+them+to+tears++absolute+tears
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=laughter+and+that+s+assuming+you+already+have+dsl+in+your+house++try+to+get+dsl+installed+in+your+house
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+engineers+who+do+it+everyday+can+t+do+it+they+have+to+typically+they+come+three+times++and+one+friend+of+mine+was+telling+me+a+story++not+only+did+they+get+there+and+have+to+wait
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+then+the+the+engineers+when+they+finally+did+get+there+for+the+third+time+they+had+to+call
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=somebody+and+they+were+really+happy+that
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+guy+had+a+speakerphone+because+then+they+had+to+wait+on+hold+for+an+hour+to+talk+to+somebody+to+give+them+an+access+code+after+they+got+there++so
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+re+not+we+re+pretty+kludge+y+ourselves++by+the+way+dsl+is+a+kludge+i+mean+this+is+a+twisted+pair+of+copper+that+was+never+designed+for+the+purpose+it+s+being+put
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+whole+thing+we+re+very+very+primitive
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+s+kind+of+the+point+because+you+know
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=resilience+if+you+think+of+it+in+terms+of+the+gold+rush++then+you+d+be+pretty+depressed+right+now+because+the+last+nugget+of+gold+would+be+gone
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+the+good+thing+is+with+innovation+there+isn+t+a+last+nugget+every+new+thing+creates+two+new+questions+and+two+new+opportunities
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=then+you+believe+that+where+we+are+this+is+what+i+think+i+believe+that+where+we+are+with+the+incredible+kludge
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+haven+t+even+talked+about+user+interfaces+on+the+web
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+there+s+so+much+kludge+so+much+terrible+stuff+we+are+at+the+one+thousand+nine+hundred+and+eight+hurley+washing+machine+stage+with+the+internet+that+s+where+we+are
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+don+t+get+our+hair+caught+in+it+but+that+s+the+level+of+primitiveness+of+where+we+are
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+if+you+believe+that+then
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+the+negatives+add+up+to+making+the+online+experience+not+worth+the+trouble
found 0 videos: []
error: no video is found.
sleep 4 seconds to avoid blocking
------<992>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JeffHancock_2012X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fantastic+month+for+deception++and+i+m+not+even+talking+about+the+american+presidential+race
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+have+a+high+profile+journalist+caught+for+plagiarism
found 1 videos: [['/talks/jeff_hancock_the_future_of_lying', '2012']]
selected: /talks/jeff_hancock_the_future_of_lying
sleep 4 seconds to avoid blocking
------<993>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JeffHan_2006.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=really+excited+to+be+here+today++i+ll+show+you+some+stuff+that+s+just+ready+to+come+out+of+the+lab+literally+and+i+m
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=really+glad+that+you+guys+are+going+to+be+among+the+first+to+see+it+in+person+because+i+really+really+think+this+is+going+to+really+change+the+way+we
found 3 videos: [['/talks/jeff_han_the_radical_promise_of_the_multi_touch_interface', '2006'], ['/talks/steven_levitt_the_freakonomics_of_crack_dealing', '2006'], ['/talks/dennis_vanengelsdorp_a_plea_for_bees', '2008']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=normal+touch+sensors+that+you+see+like+on+a+kiosk+or+interactive+whiteboards+can+only+register+one+point+of+contact+at+a+time++this+thing+allows+you+to+have
found 1 videos: [['/talks/jeff_han_the_radical_promise_of_the_multi_touch_interface', '2006']]
selected: /talks/jeff_han_the_radical_promise_of_the_multi_touch_interface
sleep 1 seconds to avoid blocking
------<994>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JeffHawkins_2003.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+do+two+things+i+design+mobile+computers+and+i+study+brains+today+s+talk+is+about+brains+and+yay+i+have+a+brain+fan+out+there
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+i+could+have+my+first+slide
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=see+the+title+of+my+talk+and+my+two+affiliations
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+what+i+m+going+to+talk+about+is+why+we+don+t+have+a+good+brain+theory++why+it+is+important+that+we+should+develop+one+and+what+we+can+do+about+it+i
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ll+try+to+do+all+that+in+twenty+minutes+i+have+two+affiliations++most+of+you+know+me+from+my+palm+and+handspring+days
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+also+run+a+nonprofit+scientific+research+institute+called+the+redwood+neuroscience+institute+in+menlo+park++we+study+theoretical+neuroscience+and+how+the+neocortex+works+i+m+going
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+have+one+slide+on+my+my+other+life+the+computer+life+and+that+s+this+slide+here+these+are+some+of+the+products+i+ve+worked+on+over+the+last+twenty+years++starting+from+the+very+original+laptop+to+some+of+the+first+tablet
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=computers+and+so+on+ending+up+most+recently+with+the+treo++and+we+re+continuing+to+do+this+i+ve+done+this+because+i+believe+mobile+computing+is+the+future+of+personal+computing+and+i+m+trying+to+make+the+world+a+little+bit+better+by+working+on+these+things
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+really+didn+t+want+to+do+any+of+these+products++very+early+in+my+career+i+decided+i+was+not+going+to+be+in+the+computer+industry+before+that+i+just+have+to+tell+you+about+this+picture+of+graffiti+i+picked+off+the
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=web+the+other+day++i+was+looking+for+a+picture+for+graffiti+that+ll+text+input+language+i+found+a+website+dedicated+to+teachers+who+want+to
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=things+across+the+top+of+their+blackboard++and+they+had+added+graffiti+to+it+and+i+m+sorry+about+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+was+young+and+got+out+of+engineering+school+at+cornell+in
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+went+to+work+for+intel+and+was+in+the+computer+industry+and+three+months+into+that
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+fell+in+love+with+something+else++i+said+i+made+the+wrong+career+choice+here+and+i+fell+in+love+with+brains
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+not+a+real+brain+this+is+a+picture+of+one+a+line+drawing++and+i+don+t+remember
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+have+one+recollection+which+was+pretty+strong+in+my+mind
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+september+of+one+thousand+nine+hundred+and+seventy+nine+scientific+american+came+out+with+a+single+topic+issue+about+the+brain++it+was+one+of+their+best+issues+ever++they+talked+about+the+neuron+development+disease+vision+and+all+the+things+you+might+want+to+know+about+brains+it+was+really+quite+impressive
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+might+ve+had+the+impression+we+knew+a+lot+about+brains+but+the+last+article+in+that+issue+was+written+by
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+he+wrote+a+story+basically+saying++this+is+all+well+and+good
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+you+know+we+don+t+know+diddly+squat+about+brains+and+no+one+has+a+clue+how+they+work+so+don+t+believe+what+anyone+tells+you
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+a+quote+from+that+that+article+he+says+what+is+conspicuously+lacking+he
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+a+very+proper+british+gentleman+what+is+conspicuously+lacking+is+a+broad+framework+of+ideas+in+which+to+interpret+these+different+approaches+i+thought+the+word
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=say+we+didn+t+have+a+theory+he+says+we+don+t+even+know+how+to+begin+to+think+about+it+we+don+t+even+have+a+framework++we+are+in+the+pre+paradigm+days+if+you+want+to+use+thomas
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=kuhn+so+i+fell+in+love+with+this+i+said+look+we+have+all+this+knowledge+about+brains
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+hard+can+it+be+it+s+something+we+can+work+on+in+my+lifetime+i+could+make+a+difference+so+i+tried+to+get+out+of+the+computer+business+into+the+brain+business
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=first+i+went+to+mit+the+ai+lab+was+there+i+said+i+want+to+build+intelligent+machines+too+but+i+want+to+study+how+brains+work+first
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+said+oh+you+don+t+need+to+do+that+you+re+just+going+to+program+computers+that+s+all+i+said+you+really+ought+to+study+brains+they+said+no+you+re+wrong
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+said+no+you+re+wrong+and+i+didn+t+get+in
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=laughter+i+was+a+little+disappointed+pretty+young+but+i+went+back+again+a+few+years+later+this+time+in+california+and+i+went+to+berkeley+and+i+said+i+ll+go+in+from+the+biological
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+t+get+funded+for+that+and+as+a+graduate+student++you+can+t+do+that+so+i+said+oh+my+gosh+i+was+depressed+i+said+but+i+can+make+a+difference+in+this+field
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+went+back+in+the+computer+industry+and+said+i+ll+have+to+work+here+for+a+while+that+s+when+i+designed+all+those+computer+products
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+do+this+for+four+years+make+some+money++i+was+having+a+family++and+i+would+mature+a+bit+and+maybe
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+business+of+neuroscience+would+mature+a+bit++well+it+took+longer+than+four+years+it+s+been+about+sixteen+years+but+i+m+doing+it+now+and+i+m+going+to+tell+you+about+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+why+should+we+have+a+good+brain+theory
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+there+s+lots+of+reasons+people+do+science+the+most+basic+one+is+people+like+to+know+things+we+re
error: request timeout
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+sometimes+a+science+has+other+attributes+which+makes+it+really+really+interesting+sometimes+a+science+will+tell+something+about+ourselves+it+ll+tell+us+who+we+are+evolution+did+this+and+copernicus+did+this+where+we++we+have+a+new+understanding+of+who+we+are
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+after+all+we+are+our+brains++my+brain+is+talking+to+your+brain+our+bodies+are+hanging+along+for+the+ride+but+my+brain+is+talking+to+your+brain++and+if+we+want+to+understand+who+we+are+and+how+we+feel+and+perceive
error: request timeout
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=another+thing+is+sometimes+science+leads+to+big+societal+benefits++technologies+or+businesses+or+whatever+this+is+one+too+because+when+we+understand+how+brains+work+we+ll+be+able+to+build+intelligent
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=machines+that+s+a+good+thing+on+the+whole+with+tremendous+benefits+to+society+just+like+a+fundamental+technology+so+why+don+t+we+have+a+good+theory+of+brains+people+have+been+working+on+it+for+one+hundred+years
error: request timeout
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=normal+science+is+a+nice+balance+between+theory+and+experimentalists+the+theorist+guy+says+i+think+this+is+what+s+going+on+the+experimentalist+says+you+re+wrong+it+goes+back+and+forth+this+works
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+physics+this+in+geology++but+if+this+is+normal+science+what+does+neuroscience+look+like+this+is+what+neuroscience+looks+like+we+have+this+mountain+of+data
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+behavior+you+can+t+imagine+how+much+detail+we+know+about+brains++there+were+twenty+eight+thousand+people+who+went+to+the+neuroscience+conference+this+year+and+every+one+of+them+is+doing+research+in+brains
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+lot+of+data+but+no+theory+there+s+a+little+wimpy+box+on+top+there+and+theory+has+not+played+a+role+in+any+sort+of+grand+way+in+the+neurosciences++and+it+s+a+real+shame+now+why+has+this+come+about+if+you+ask+neuroscientists+why+is
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ll+admit+it++but+if+you+ask+them+they+say++there+s+various+reasons+we+don+t+have+a+good+brain+theory++some+say+we+still+don+t+have+enough+data+we+need+more+information+there+s+all+these+things+we+don+t+know
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well++i+just+told+you+there+s+data+coming+out+of+your+ears+we+have+so+much+information+we+don+t+even+know+how+to+organize+it++what+good+is+more+going+to+do+maybe+we+ll+be+lucky+and+discover+some+magic+thing
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+don+t+think+so+this+is+a+symptom+of+the+fact+that+we+we+just+don+t+have+a+theory+we+don+t+need+more+data++we+need+a+good+theory
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+complex+it+ll+take+another+fifty+years+i+even+think+chris+said+something+like+this+yesterday+something+like+it+s+one+of+the+most+complicated+things+in+the+universe+that
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+not+true+you+re+more+complicated+than+your+brain+you+ve+got+a+brain++and+although+the+brain+looks+very+complicated+things+look+complicated+until+you+understand+them
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+always+been+the+case+so+we+can+say+my+neocortex+the+part+of+the+brain+i+m+interested+in+has+thirty+billion+cells+but+you+know+what+it+s+very
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=very+regular+in+fact+it+looks+like+it+s+the+same+thing+repeated+over+and+over+again+it+s+not+as+complex+as+it+looks++that+s+not+the+issue
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+people+say++brains+can+t+understand+brains++very+zen+like+woo
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know+it+sounds+good+but+why+i+mean+what+s+the+point+it+s+just+a+bunch+of+cells+you+understand+your+liver+it+s+got+a+lot+of+cells+in+it+too
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+don+t+think+there+s+anything+to+that+and+finally+some+people+say+i+don+t+feel+like+a+bunch+of+cells
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=m+conscious+i+ve+got+this+experience+i+m+in+the+world++i+can+t+be+just+a+bunch+of+cells+well+people+used+to+believe+there+was+a+life+force+to+be+to+be+living+and+we+now+know+that+s+really+not
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+true+at+all+and+there+s+really+no+evidence+other+than+that+people+just+disbelieve+that+cells+can+do+what+they+do+so+some+people+have+fallen+into+the+pit+of
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=another+reason+why+we+don+t+have+a+good+brain+theory+is+because+we+have+an+intuitive++strongly+held+but+incorrect+assumption
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+has+prevented+us+from+seeing+the+answer
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+something+we+believe+that+just+it+s+obvious+but+it+s+wrong+now+there+s+a+history+of+this+in+science+and+before+i+tell+you+what+it+is+i+ll+tell+you+about+the+history+of+it+in+science
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=look+at+other+scientific+revolutions+the+solar+system+that+s+copernicus+darwin+s+evolution+and+tectonic+plates+that+s+wegener
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+all+have+a+lot+in+common+with+brain+science+first+they+had+a+lot+of+unexplained+data+a+lot+of+it+but+it+got+more+manageable+once+they+had+a+theory
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+best+minds+were+stumped+really+really+smart+people+we+re+not+smarter+now+than+they+were+then+it+just+turns+out+it+s+really+hard+to+think+of+things+but+once+you+ve+thought+of+them+it+s+easy+to+understand
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=daughters+understood+these+three+theories+in+their+basic+framework+in+kindergarten
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+not+that+hard+here+s+the+apple+here+s+the+orange+the+earth+goes+around+that+kind+of+stuff
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=another+thing+is+the+answer+was+there+all+along+but+we+kind+of+ignored+it+because+of+this+obvious+thing+it+was+an+intuitive+strongly+held+belief+that+was+wrong+in+the+case+of+the
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+idea+that+the+earth+is+spinning+the+surface+is+going+a+thousand+miles+an+hour+and+it+s+going+through+the+solar+system+at+a+million+miles+an+hour+this+is+lunacy++we+all+know+the+earth+isn+t+moving+do+you+feel+like+you+re+moving+a+thousand+miles+an+hour
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+said+earth+was+spinning+around+in+space+and+was+huge+they+would+lock+you+up+that+s+what+they+did+back+then
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+it+was+intuitive+and+obvious+now+what+about+evolution
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=evolution+same+thing+we+taught+our+kids+the+bible+says+god+created+all+these+species+cats+are+cats+dogs+are+dogs+people+are+people+plants+are+plants+they+don+t+change
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=noah+put+them+on+the+ark+in+that+order+blah
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=blah+the+fact+is+if+you+believe+in+evolution++we+all+have+a+common+ancestor++we+all+have+a+common+ancestor+with+the+plant+in+the+lobby
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+what+evolution+tells+us++and+it+s+true++it+s+kind+of+unbelievable+and+the+same+thing+about+tectonic+plates
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+the+mountains+and+the+continents+are+kind+of+floating+around+on+top
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+is+the+intuitive+but+incorrect+assumption
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+kept+us+from+understanding+brains+i+ll+tell+you+it+ll+seem+obvious+that+it+s+correct+that+s+the+point+then+i+ll+make+an+argument+why+you+re+incorrect+on+the+other+assumption
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+intuitive+but+obvious+thing+is+somehow+intelligence+is+defined+by+behavior
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+re+intelligent+because+of+how+we+do+things+and+how+we+behave+intelligently+and+i+m+going+to+tell+you+that+s+wrong
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=work+you+through+this+in+a+few+slides+and+give+you+an+example+of+what+this+means++here+s+a+system++engineers+and+scientists+like+to+look+at+systems+like+this
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+have+a+thing+in+a+box+we+have+its+inputs+and+outputs++the+ai+people+said+the+thing+in+the+box+is+a+programmable+computer+because+it+s+equivalent+to+a+brain+we+ll+feed+it+some+inputs+and+get+it+to+do+something
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+some+behavior+alan+turing+defined+the+turing+test+which+essentially+says+we+ll
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=something+s+intelligent+if+it+behaves+identical+to+a+human
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+behavioral+metric+of+what+intelligence+is+that+has+stuck+in+our+minds+for+a+long+time
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=reality+though+i+call+it+real+intelligence+real+intelligence+is+built+on+something+else++we+experience+the+world+through+a+sequence+of+patterns
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+store+them++and+we+recall+them+when+we+recall+them+we+match+them+up+against+reality++and+we+re+making+predictions+all+the+time+it+s+an+internal+metric+there+s+an+internal+metric+about+us+saying+do+we+understand+the+world+am+i+making+predictions+and+so+on
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=being+intelligent+now++but+you+re+not+doing+anything+maybe+you+re+scratching+yourself++but
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+re+not+doing+anything+but+you+re+being+intelligent+you+re+understanding+what+i+m+saying+because+you+re+intelligent+and+you+speak+english+you+know+the+word+at+the+end+of+this
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+word+came+to+you+you+make+these+predictions+all+the+time+what+i+m+saying+is+the+internal+prediction+is+the
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=prediction+leads+to+intelligent+behavior+here+s+how+that+happens+let+s+start+with+a+non+intelligent+brain+i+ll+argue+a+non+intelligent+brain+we+ll+call+it+an+old+brain
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+ll+say+it+s+a+non+mammal+like+a+reptile+say+an+alligator+we+have+an+alligator++and+the+alligator+has
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+very+sophisticated+senses+it+s+got+good+eyes+and+ears+and+touch+senses+and+so+on+a+mouth+and+a+nose++it+has+very
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+can+run+and+hide+it+has+fears+and+emotions+it+can+eat+you+you++it+can+attack+it+can
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=do+all+kinds+of+stuff++but+we+don+t+consider
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+alligator+very+intelligent+not+in+a+human+sort+of+way++but+it+has+all+this+complex+behavior+already+now+in+evolution+what+happened
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=first+thing+that+happened+in+evolution+with+mammals+is+we+started+to+develop+a+thing+called+the+neocortex++i+m+going+to+represent+the+neocortex+by+this+box
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+a+new+layer+on+top+of+your+brain+it+s+the+wrinkly+thing+on+the+top+of+your+head+that+got+wrinkly+because+it+got+shoved+in+there+and+doesn+t+fit
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=laughter+literally+it+s+about+the+size+of+a+table+napkin+and+doesn+t+fit+so+it+s+wrinkly
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now++look+at+how+i+ve+drawn+this+the+old+brain+is+still+there+you+still+have+that+alligator+brain++you+do+it+s+your+emotional+brain+it+s+all
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=those+gut+reactions+you+have+on+top+of+it+we+have+this+memory+system+called+the+neocortex+and+the+memory+system+is+sitting
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=over+the+sensory+part+of+of+the+brain++so+as+the+sensory+input+comes+in+and+feeds+from+the+old+brain+it+also+goes+up+into+the+neocortex
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+neocortex+is+just+memorizing++it+s+sitting+there+saying
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+memorize+all+the+things+going+on+where+i+ve+been+people+i+ve+seen+things+i+ve+heard+and+so+on
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+in+the+future+when+it+sees+something+similar+to+that+again
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+been+here+before+and+when+you+were+here+before+this+happened+next++it+allows+you+to+predict+the+future
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+literally+feeds+back+the+signals+into+your+brain+they+ll+let+you+see+what+s+going+to+happen+next+will+let+you+hear+the+word+sentence+before+i+said+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+s+this+feeding+back+into+the+old+brain+that+will+allow+you+to+make+more+intelligent+decisions+this+is+the+most
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+recognize+this+maze++i+know+which+way+to+go+i+ve+been+here+before+i+can+envision+the+future+that+s+what+it+s+doing
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+true+for+all+mammals+in+humans+it+got+a+lot+worse+humans+actually+developed+the+front+of+the+neocortex+called+the+the+anterior+part+of+the+neocortex
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+nature+did+a+little+trick+it+copied+the+posterior+the+back+part+which+is+sensory+and+put+it+in+the+front+humans+uniquely+have+the+same+mechanism+on+the+front+but+we+use+it+for+motor+control
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+we+re+now+able+to+do+very+sophisticated+motor+planning+things+like+that++i+don+t+have+time+to+explain+but+to+understand+how+a+brain+works+you+have+to+understand+how+the+first+part+of+the+mammalian+neocortex+works+how+it+is+we
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+next+note+pops+into+your+head+already+you+anticipate+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=moving+your+doorknob+over+two+inches++when+you+go+home+tonight+you+ll+put+your+hand+out+reach+for+the+doorknob+notice+it+s+in+the+wrong+spot
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+go+whoa+something+happened+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=may+take+a+second++but+something+happened+i+can+change+your+doorknob+in+other+ways+make+it+larger+smaller++change+its+brass+to+silver++make+it+a+lever++i+can+change+the+door+put+colors+on+put+windows+in++i+can+change+a+thousand+things+about+your+door+and+in+the+two+seconds+you+take+to+open
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=engineering+approach+the+ai+approach+to+this+is+to+build+a+door+database+with+all+the+door+attributes++and+as+you+go+up+to+the+door+we
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=check+them+off+one+at+time+door+door+color++we+don+t+do+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=your+brain+doesn+t+do+that+your+brain+is+making+constant+predictions+all+the+time+about+what+will+happen+in+your+environment+as+i+put+my+hand+on+this+table+i+expect+to+feel+it+stop+when+i+walk+every
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+i+missed+it+by+an+eighth+of+an+inch+i+ll+know+something+has+changed+you+re+constantly+making+predictions+about+your+environment+i+ll
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=talk+about+vision+briefly++this+is+a+picture+of+a+woman+when+we+look+at+people+our+eyes+saccade+over+two+to+three+times+a+second+we+re+not+aware+of+it+but+our+eyes+are+always+moving
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+we+look+at+a+face+we+typically+go+from+eye+to+eye+to+nose+to+mouth+when+your+eye+moves+from+eye+to+eye+if+there+was+something+else+there+like+a+nose++you+d+see+a+nose+where+an+eye+is+supposed+to+be+and+go
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+have+an+expectation+of+what+you+re+going+to+see
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+finally+let+s+think+about+how+we+test+intelligence+we+test+it+by+prediction
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+is+the+next+word+in+this+this+is+to+this+as+this+is+to+this++what+is+the+next+number+in+this+sentence+here+s+three+visions+of+an+object+what+s+the+fourth+one
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+how+we+test+it+it+s+all+about+prediction
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+the+recipe+for+brain+theory+first+of+all+we+have+to+have+the+right+framework
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+framework+is+a+memory+framework+not+a+computational+or+behavior+framework+it+s+a+memory+framework+how+do+you+store+and+recall+these+sequences+of+patterns+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+spatiotemporal+patterns++then++if+in+that+framework+you+take+a+bunch+of+theoreticians+biologists+generally+are+not+good+theoreticians+not+always+but+generally+there+s+not+a+good+history+of+theory+in+biology++i+ve+found+the+best+people+to+work+with+are+physicists
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+mathematicians+who+tend+to+think+algorithmically++then+they+have+to+learn+the+anatomy+and+the+physiology+you+have+to+make+these+theories+very+realistic+in
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=anatomical+terms+anyone+who+tells+you+their+theory+about+how+the+brain+works+and+doesn+t+tell+you+exactly+how+it+s+working+and+how+the+wiring+works
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+expect+to+be+back+on+this+stage+sometime+in+the++not+too+distant+future+to+tell+you+about+it+i+m+really+really+excited+this+is+not+going+to+take+fifty+years
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+will+brain+theory+look+like+first+of+all+it+s+going+to+be+about+memory+not+like+computer+memory+not+at+all+like+computer+memory+it+s+very+very+different
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+a+memory+of+very+high+dimensional+patterns+like+the+things+that+come+from+your+eyes++it+s+also+memory+of+sequences+you+cannot+learn+or+recall+anything+outside+of+a+sequence+a+song+must+be+heard
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+sequence+over+time++and+you+must+play+it+back+in+sequence+over+time++and+these+sequences+are+auto+associatively+recalled+so+if+i+see+something+i+hear+something+it+reminds+me+of+it+and+it+plays+back+automatically+it+s+an+automatic+playback
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+prediction+of+future+inputs+is+the+desired+output+and+as+i+said+the+theory+must+be+biologically+accurate++it+must+be+testable+and+you+must+be+able+to+build+it+if+you+don+t+build+it+you+don
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=really+build+intelligent+machines+absolutely++and+it+s+going+to+be+different+than+people+think
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=no+doubt+that+it+s+going+to+happen+in+my+mind+first+of+all+we+re+going+to+build+this+stuff+out+of+silicon+the+same+techniques+we+use+to+build
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=silicon+computer+memories+we+can+use+here+but+they+re+very+different+types+of+memories++and+we+ll+attach+these+memories+to+sensors
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=learn+about+their+environment+now+it+s+very+unlikely+the+first+things+you+ll+see+are+like+robots+not+that+robots+aren+t+useful+people+can+build+robots++but+the+robotics+part+is+the+hardest+part+that+s+old+brain
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+really+hard+the+new+brain+is+easier+than+the+old+brain+so+first+we+ll+do+things+that+don+t+require+a+lot+of+robotics+so+you+re+not+going+to+see
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=see+things+more+like+intelligent+cars+that+really+understand+what+traffic+is+what+driving+is+and+have+learned+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+the+blinkers+on+for+half+a+minute+probably+aren+t+going+to+turn
found 0 videos: []
error: no video is found.
sleep 1 seconds to avoid blocking
------<995>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JeffIliff_2014P.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+something+we+spend+about+a+third+of+our+lives+doing++but+do+any+of+us+really+understand+what+it+s+all+about
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=two+thousand+years+ago+galen+one+of+the+most+prominent+medical+researchers
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+the+ancient+world+proposed+that+while+we+re+awake+our+brain+s+motive+force+its+juice+would+flow+out+to+all+the+other+parts+of+the+body
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=animating+them+but+leaving+the+brain+all+dried+up
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+he+thought+that+when+we+sleep+all+this+moisture+that+filled+the+rest+of+the+body+would+come+rushing+back+rehydrating+the+brain
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+refreshing+the+mind++now+that+sounds+completely+ridiculous+to+us+now++but+galen+was+simply+trying+to+explain+something+about+sleep+that
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+all+deal+with+every+day+see+we+all+know+based+on+our+own+experience+that+when+you+sleep++it+clears+your+mind
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+when+you+don+t+sleep++it+leaves+your+mind+murky
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+while+we+know+a+great+deal+more+about+sleep+now+than+when+galen+was+around
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+still+haven+t+understood+why+it+is+that+sleep+of+all+of+our+activities+has+this+incredible+restorative+function+for+the+mind
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+today+i+want+to+tell+you
found 13 videos: [['/talks/jia_jiang_what_i_learned_from_100_days_of_rejection', '2016'], ['/talks/leana_wen_what_your_doctor_won_t_disclose', '2014'], ['/talks/stephen_cave_the_4_stories_we_tell_ourselves_about_death', '2013'], ['/talks/audrey_choi_how_to_make_a_profit_while_making_a_difference', '2016'], ['/talks/boyd_varty_what_i_learned_from_nelson_mandela', '2013'], ['/talks/martin_pistorius_how_my_mind_came_back_to_life_and_no_one_knew', '2015'], ['/talks/ameera_harouda_why_i_put_myself_in_danger_to_tell_the_stories_of_gaza', '2016'], ['/talks/margaret_heffernan_the_dangers_of_willful_blindness', '2013'], ['/talks/juno_mac_the_laws_that_sex_workers_really_want', '2016'], ['/talks/jake_barton_the_museum_of_you', '2013'], ['/talks/geena_rocero_why_i_must_come_out', '2014'], ['/talks/david_burkus_why_you_should_know_how_much_your_coworkers_get_paid', '2016'], ['/talks/sheikha_al_mayassa_globalizing_the_local_localizing_the_global', '2012']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+some+recent+research+that+may+shed+new+light+on+this+question+we+ve+found+that+sleep+may+actually+be+a+kind+of+elegant+design+solution
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+some+of+the+brain+s+most+basic+needs+a+unique+way+that+the+brain+meets+the+high+demands+and+the+narrow+margins+that+set+it+apart+from+all+the+other+organs+of+the+body
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+almost+all+the+biology+that+we+observe
found 6 videos: [['/talks/jeff_iliff_one_more_reason_to_get_a_good_night_s_sleep', '2014'], ['/talks/jocelyne_bloch_the_brain_may_be_able_to_repair_itself_with_help', '2016'], ['/talks/jorge_soto_the_future_of_early_cancer_detection', '2014'], ['/talks/daphne_koller_what_we_re_learning_from_online_education', '2012'], ['/talks/colin_camerer_when_you_re_making_a_deal_what_s_going_on_in_your_brain', '2013'], ['/talks/jim_simons_the_mathematician_who_cracked_wall_street', '2015']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=can+be+thought+of+as+a+series+of+problems+and+their+corresponding+solutions
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+first+problem+that+every+organ+must+solve+is+a+continuous+supply+of+nutrients+to+fuel+all+those+cells+of+the+body
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+brain+that+is+especially+critical+its+intense+electrical+activity+uses+up+a+quarter+of+the+body+s+entire+energy+supply
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=even+though+the+brain+accounts+for+only+about+two+percent+of+the+body+s+mass
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+the+circulatory+system+solves+the+nutrient+delivery+problem+by+sending+blood+vessels+to+supply+nutrients+and+oxygen+to+every+corner+of+our+body
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+actually+see+it+in+this+video+here
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+we+re+imaging+blood+vessels+in+the+brain+of+a+living+mouse+the+blood+vessels+form+a+complex+network+that+fills+the+entire+brain+volume
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+start+at+the+surface+of+the+brain++and+then+they
found 8 videos: [['/talks/elyn_saks_a_tale_of_mental_illness_from_the_inside', '2012'], ['/talks/david_epstein_are_athletes_really_getting_faster_better_stronger', '2014'], ['/talks/nancy_kanwisher_a_neural_portrait_of_the_human_mind', '2014'], ['/talks/joy_lin_if_superpowers_were_real_super_strength', '2013'], ['/talks/marcus_byrne_the_dance_of_the_dung_beetle', '2012'], ['/talks/blaise_aguera_y_arcas_how_computers_are_learning_to_be_creative', '2016'], ['/talks/jeff_iliff_one_more_reason_to_get_a_good_night_s_sleep', '2014'], ['/talks/david_camarillo_why_helmets_don_t_prevent_concussions_and_what_might', '2016']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=dive+down+into+the+tissue+itself++and+as+they+spread+out+they+supply+nutrients+and+oxygen+to+each+and+every+cell+in+the+brain
found 1 videos: [['/talks/jeff_iliff_one_more_reason_to_get_a_good_night_s_sleep', '2014']]
selected: /talks/jeff_iliff_one_more_reason_to_get_a_good_night_s_sleep
sleep 1 seconds to avoid blocking
------<996>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JeffKirschner_2016S.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+story+starts+with+these+two
found 10 videos: [['/talks/gonzalo_vilarino_how_argentina_s_blind_soccer_team_became_champions', '2016'], ['/talks/catherine_mohr_how_i_became_part_sea_urchin', '2018'], ['/talks/dawn_landes_a_song_for_my_hero_the_woman_who_rowed_into_a_hurricane', '2015'], ['/talks/andres_ruzo_the_boiling_river_of_the_amazon', '2016'], ['/talks/uri_hasson_this_is_your_brain_on_communication', '2016'], ['/talks/guy_hoffman_robots_with_soul', '2014'], ['/talks/jeff_kirschner_this_app_makes_it_fun_to_pick_up_litter', '2017'], ['/talks/sharon_terry_science_didn_t_understand_my_kids_rare_disease_until_i_decided_to_study_it', '2017'], ['/talks/alexandra_horowitz_how_do_dogs_see_with_their_noses', '2015'], ['/talks/mark_ronson_how_sampling_transformed_music', '2014']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+kids+we+were+hiking+in+the+oakland+woods+when+my+daughter+noticed+a+plastic+tub+of+cat+litter+in+a+creek+she+looked+at+me+and+said
found 1 videos: [['/talks/jeff_kirschner_this_app_makes_it_fun_to_pick_up_litter', '2017']]
selected: /talks/jeff_kirschner_this_app_makes_it_fun_to_pick_up_litter
sleep 2 seconds to avoid blocking
------<997>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JeffreyBrown_2015.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+learned+some+of+my+most+important+life+lessons+from+drug+dealers
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+prostitutes++and+i+ve+had+some+of+my+most+profound+theological+conversations
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+in+the+hallowed+halls+of+a+seminary
found 1 videos: [['/talks/jeffrey_brown_how_we_cut_youth_violence_in_boston_by_79_percent', '2015']]
selected: /talks/jeffrey_brown_how_we_cut_youth_violence_in_boston_by_79_percent
sleep 2 seconds to avoid blocking
------<998>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JeffreySkoll_2007.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+actually+been+waiting+by+the+phone+for+a+call+from+ted+for+years
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+in+fact+in+two+thousand+i+was+ready+to+talk+about+ebay+but+no+call
found 2 videos: [['/talks/jeff_skoll_my_journey_into_movies_that_matter', '2007'], ['/talks/michael_shermer_why_people_believe_weird_things', '2006']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+ready+to+do+a+talk+about+the+skoll+foundation+and+social+entrepreneurship+no+call
found 1 videos: [['/talks/jeff_skoll_my_journey_into_movies_that_matter', '2007']]
selected: /talks/jeff_skoll_my_journey_into_movies_that_matter
sleep 5 seconds to avoid blocking
------<999>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JeffSmith_2012S.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+one+of+many+fellow+inmates+who+had+big+plans+for+the+future
found 1 videos: [['/talks/jeff_smith_lessons_in_business_from_prison', '2012']]
selected: /talks/jeff_smith_lessons_in_business_from_prison
sleep 5 seconds to avoid blocking
------<1000>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JeffSpeck_2013X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=talk+to+you+about+the+walkable+city++what+is+the+walkable+city+well+for+want+of+a+better+definition+it+s+a+city+in+which+the+car
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=instrument+of+freedom++rather+than+a+prosthetic+device+and+i+d+like+to+talk+about+why+we+need+the+walkable+city+and+i+d+like+to+talk+about
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+to+do+the+walkable+city++most+of+the+talks+i+give+these+days+are+about+why+we+need+it++but
found 1 videos: [['/talks/jeff_speck_the_walkable_city', '2013']]
selected: /talks/jeff_speck_the_walkable_city
sleep 5 seconds to avoid blocking
------<1001>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JeffSpeck_2013Z.stm
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=city+planner+an+urban+designer++former+arts+advocate++trained+in+architecture+and
found 1 videos: [['/talks/jeff_speck_the_walkable_city', '2013']]
selected: /talks/jeff_speck_the_walkable_city
sleep 5 seconds to avoid blocking
------<1002>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JehaneNoujaim_2006.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+wish+to+think+about+when+you+re+a+little+kid+and+all+your+friends+ask+you+if+a+genie+could+give+you+one+wish+in+the+world+what+would+it+be
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+always+answered+well+i+d+want+the+wish+to+have+the+wisdom+to+know+exactly+what+to+wish+for
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+you+d+know+what+to+wish+for+and+you+d+use+up+your+wish+and+now+since+we+only+have+one+wish+unlike+last+year+they+had+three+wishes+i+m+not+going+to+wish+for+that+so+let+s+get+to+what+i
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=would+like+which+is+world+peace++and+i+know+what+you+re+thinking+you+re+thinking+the+poor+girl+up+there+she+thinks+she+s+at+a+beauty+pageant+she+s+not
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+really+do+think+it+makes+sense
found 1 videos: [['/talks/jonathan_drori_what_we_think_we_know', '2008']]
selected: /talks/jonathan_drori_what_we_think_we_know
sleep 5 seconds to avoid blocking
------<1003>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JennaMcCarthy_2011X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=make+a+legal+and+spiritual+decision+to+spend+the+rest+of+their+lives+together
found 1 videos: [['/talks/jenna_mccarthy_what_you_don_t_know_about_marriage', '2012']]
selected: /talks/jenna_mccarthy_what_you_don_t_know_about_marriage
sleep 2 seconds to avoid blocking
------<1004>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JenniChang_2015W.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+told+my+parents+i+was+gay+the+first+thing+they+said+to+me+was+we+re+bringing+you+back+to+taiwan
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+their+minds+my+sexual+orientation+was+america+s
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+west+had+corrupted+me+with+divergent+ideas+and+if+only+my+parents+had+never+left+taiwan++this+would+not+have+happened+to+their+only+daughter
found 1 videos: [['/talks/jenni_chang_and_lisa_dazols_this_is_what_lgbt_life_is_like_around_the_world', '2015']]
selected: /talks/jenni_chang_and_lisa_dazols_this_is_what_lgbt_life_is_like_around_the_world
sleep 2 seconds to avoid blocking
------<1005>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/Jennifer8Lee_2008P.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+are+more+chinese+restaurants+in+this+country+than+mcdonald+s+burger+king+kentucky+fried+chicken+and+wendy+s+combined+forty+thousand+actually+chinese+restaurants+have+played+an+important+role+in+american+history+as+a+matter+of+fact+the+cuban+missile+crisis+was
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=resolved+in+a+chinese+restaurant+called+yenching+palace+in+washington+d+c+which+unfortunately+is+closed+now+and+about+to+be+turned+into+walgreen+s+and+the+house+that+john+wilkes+booth+planned+the
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=assassination+of+abraham+lincoln+is+actually+also+now+a+chinese+restaurant+called+wok+n+roll+on+h+street+in+washington
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+s+not+completely+gratuitous+because+wok+and+roll+chinese+food+and+japanese+foods+so+it+kind+of+works+out
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=americans+loved+their+chinese+foods+so+much+they+ve+actually+brought+it+into+space+nasa+for+example+serves+thermal+stabilized+sweet+and+sour+pork+on+its+shuttle+menu+for+its+astronauts
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+let+me+present+the+question+to+you+if+our+benchmark+for+americanness+is+apple+pie
found 1 videos: [['/talks/jennifer_8_lee_the_hunt_for_general_tso', '2008']]
selected: /talks/jennifer_8_lee_the_hunt_for_general_tso
sleep 4 seconds to avoid blocking
------<1006>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JenniferBrea_2016T.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=phd+student+at+harvard++and+i+loved+to+travel+i+had+just+gotten+engaged+to+marry+the+love+of+my+life
found 1 videos: [['/talks/jennifer_brea_what_happens_when_you_have_a_disease_doctors_can_t_diagnose', '2017']]
selected: /talks/jennifer_brea_what_happens_when_you_have_a_disease_doctors_can_t_diagnose
sleep 2 seconds to avoid blocking
------<1007>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JenniferDoudna_2015G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+few+years+ago+with+my+colleague+emmanuelle+charpentier+i+invented+a+new+technology+for+editing+genomes++it+s+called
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the++crispr+technology+allows+scientists+to+make+changes+to+the+dna+in+cells+that+could
found 3 videos: [['/talks/jennifer_doudna_how_crispr_lets_us_edit_our_dna', '2015'], ['/talks/paul_knoepfler_the_ethical_dilemma_of_designer_babies', '2017'], ['/talks/jennifer_kahn_gene_editing_can_now_change_an_entire_species_forever', '2016']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=allow+us+to+cure+genetic+disease
found 6 videos: [['/talks/jennifer_doudna_how_crispr_lets_us_edit_our_dna', '2015'], ['/talks/andrew_solomon_depression_the_secret_we_share', '2013'], ['/talks/moshe_szyf_how_early_life_experience_is_written_into_dna', '2017'], ['/talks/nina_fedoroff_a_secret_weapon_against_zika_and_other_mosquito_borne_diseases', '2017'], ['/talks/kevin_b_jones_why_curiosity_is_the_key_to_science_and_medicine', '2016'], ['/talks/eric_dishman_health_care_should_be_a_team_sport', '2013']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+might+be+interested+to+know+that+the++crispr+technology+came+about+through+a+basic+research+project+that+was+aimed+at+discovering+how+bacteria+fight+viral+infections
found 1 videos: [['/talks/jennifer_doudna_how_crispr_lets_us_edit_our_dna', '2015']]
selected: /talks/jennifer_doudna_how_crispr_lets_us_edit_our_dna
sleep 5 seconds to avoid blocking
------<1008>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JenniferGolbeck_2013X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+remember+that+first+decade+of+the+web+it+was+really+a+static+place+you+could+go+online+you+could+look+at+pages
found 1 videos: [['/talks/jennifer_golbeck_your_social_media_likes_expose_more_than_you_think', '2014']]
selected: /talks/jennifer_golbeck_your_social_media_likes_expose_more_than_you_think
sleep 2 seconds to avoid blocking
------<1009>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JenniferGranholm_2013.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=former+governor+of+michigan++but+actually+i+m+a+scientist+all
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=right+a+political+scientist+it+doesn+t+really+count++but+my+laboratory+was+the+laboratory+of+democracy+that+is+michigan+and+like+any+good
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=scientist++i+was+experimenting+with+policy+about+what+would+achieve+the+greatest+good+for+the+greatest+number
found 1 videos: [['/talks/jennifer_granholm_a_clean_energy_proposal_race_to_the_top', '2013']]
selected: /talks/jennifer_granholm_a_clean_energy_proposal_race_to_the_top
sleep 3 seconds to avoid blocking
------<1010>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JenniferHealey_2013S.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+the+things+that+we+don+t+like+to+think+about
found 12 videos: [['/talks/charles_hazlewood_trusting_the_ensemble', '2011'], ['/talks/jack_horner_building_a_dinosaur_from_a_chicken', '2011'], ['/talks/wayne_mcgregor_a_choreographer_s_creative_process_in_real_time', '2012'], ['/talks/jack_horner_where_are_the_baby_dinosaurs', '2012'], ['/talks/richard_seymour_how_beauty_feels', '2011'], ['/talks/stella_young_i_m_not_your_inspiration_thank_you_very_much', '2014'], ['/talks/colm_kelleher_what_is_color', '2012'], ['/talks/mark_changizi_why_do_we_see_illusions', '2013'], ['/talks/jamie_drummond_let_s_crowdsource_the_world_s_goals', '2012'], ['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013'], ['/talks/richard_resnick_welcome_to_the_genomic_revolution', '2011'], ['/talks/ash_beckham_when_to_take_a_stand_and_when_to_let_it_go', '2015']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+the+fact+that+religious+icons+and+good+luck+charms+show+up+on+dashboards+around+the+world
found 1 videos: [['/talks/jennifer_healey_if_cars_could_talk_accidents_might_be_avoidable', '2013']]
selected: /talks/jennifer_healey_if_cars_could_talk_accidents_might_be_avoidable
sleep 3 seconds to avoid blocking
------<1011>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JenniferHealey_2013X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=driving+is+dangerous+it+s+one+of+the+things+that+we+don+t+like+to+think+about
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+the+fact+that+religious+icons+and+good+luck+charms+show+up+on+dashboards+around+the+world
found 1 videos: [['/talks/jennifer_healey_if_cars_could_talk_accidents_might_be_avoidable', '2013']]
selected: /talks/jennifer_healey_if_cars_could_talk_accidents_might_be_avoidable
sleep 3 seconds to avoid blocking
------<1012>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JenniferKahn_2016.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+this+is+a+talk+about+gene+drives+but+i+m+going+to+start+by+telling+you+a+brief+story
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=twenty+years+ago+a+biologist+named+anthony+james+got+obsessed+with+the+idea+of+making+mosquitos+that+didn+t+transmit+malaria
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+one+thing+it+turned+out+to+be+really+hard+to+make+a+malaria+resistant+mosquito
found 1 videos: [['/talks/jennifer_kahn_gene_editing_can_now_change_an_entire_species_forever', '2016']]
selected: /talks/jennifer_kahn_gene_editing_can_now_change_an_entire_species_forever
sleep 5 seconds to avoid blocking
------<1013>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JenniferLin_2004.stm
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+the+speaker+before+me+i+am+a+ted+virgin+i+guess++i+m+also+the
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=really+grateful+that+i+get+a+chance+to+play+for+everyone
found 1 videos: [['/talks/jennifer_lin_improvising_on_piano_aged_14', '2006']]
selected: /talks/jennifer_lin_improvising_on_piano_aged_14
sleep 2 seconds to avoid blocking
------<1014>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JenniferPahlka_2012.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=years+ago+i+started+a+program+to+try+to+get+the+rockstar+tech+and+design+people+to+take+a+year+off
found 1 videos: [['/talks/jennifer_pahlka_coding_a_better_government', '2012']]
selected: /talks/jennifer_pahlka_coding_a_better_government
sleep 1 seconds to avoid blocking
------<1015>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JenniferSenior_2014.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+was+born++there+was+really+only+one+book+about+how+to+raise+your+children++and+it+was+written+by+dr+spock
found 1 videos: [['/talks/jennifer_senior_for_parents_happiness_is_a_very_high_bar', '2014']]
selected: /talks/jennifer_senior_for_parents_happiness_is_a_very_high_bar
sleep 2 seconds to avoid blocking
------<1016>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/Jenny8Lee_2008P.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+are+more+chinese+restaurants+in+this+country+than+mcdonald+s+burger+king+kentucky+fried+chicken+and+wendy+s+combined+forty+thousand+actually+chinese+restaurants+have+played+an+important+role+in+american
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=history+as+a+matter+of+fact+the+cuban+missile+crisis+was+resolved+in+a+chinese+restaurant+called+yenching+palace+in+washington+dc
found 1 videos: [['/talks/jennifer_8_lee_the_hunt_for_general_tso', '2008']]
selected: /talks/jennifer_8_lee_the_hunt_for_general_tso
sleep 4 seconds to avoid blocking
------<1017>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JeremyGilley_2011G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+basically+concerned+about+what+was+going+on+in+the+world++i+couldn+t+understand+the+starvation+the+destruction+the+killing+of+innocent+people+making+sense+of+those+things+is+a+very
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+was+twelve+i+became+an+actor+i+was+bottom+of+the+class+i+haven+t+got+any+qualifications
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+told+i+was+dyslexic
found 6 videos: [['/talks/julie_burstein_4_lessons_in_creativity', '2012'], ['/talks/john_hardy_my_green_school_dream', '2010'], ['/talks/jeremy_gilley_one_day_of_peace', '2011'], ['/talks/charles_fleischer_all_things_are_moleeds', '2010'], ['/talks/jamie_oliver_teach_every_child_about_food', '2010'], ['/talks/aditi_shankardass_a_second_opinion_on_developmental_disorders', '2010']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+have+got+qualifications+i+got+a+d+in+pottery+which+was+the+one+thing+that+i+did+get+which+was++which+was+useful+obviously+and+so+concern+is+where+all+of+this+comes+from
found 1 videos: [['/talks/jeremy_gilley_one_day_of_peace', '2011']]
selected: /talks/jeremy_gilley_one_day_of_peace
sleep 1 seconds to avoid blocking
------<1018>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JeremyHeimans_2014S.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=digital+activist+in+the+world+today++and+you+wouldn+t+know+it+by+looking+at+him+hazare+is+a
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+was+running+a+big+campaign+to+address+everyday+corruption+in+india+a+topic+that+indian+elites+love+to+ignore
found 1 videos: [['/talks/jeremy_heimans_what_new_power_looks_like', '2014']]
selected: /talks/jeremy_heimans_what_new_power_looks_like
sleep 5 seconds to avoid blocking
------<1019>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JeremyHoward_2014X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+used+to+be+that+if+you+wanted+to+get+a+computer+to+do+something+new+you+would+have+to+program+it+now+programming+for+those+of+you+here+that+haven+t+done+it+yourself++requires+laying+out
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+excruciating+detail+every+single+step+that+you+want+the+computer+to+do+in+order+to+achieve+your+goal
found 1 videos: [['/talks/jeremy_howard_the_wonderful_and_terrifying_implications_of_computers_that_can_learn', '2014']]
selected: /talks/jeremy_howard_the_wonderful_and_terrifying_implications_of_computers_that_can_learn
sleep 1 seconds to avoid blocking
------<1020>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JeremyJackson_2010Z.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=mostly+a+coral+reef+ecologist++i+started+out+in+chesapeake+bay+and+went+diving+in+the+winter+and+became+a+tropical+ecologist+overnight+and
found 1 videos: [['/talks/jeremy_jackson_how_we_wrecked_the_ocean', '2010']]
selected: /talks/jeremy_jackson_how_we_wrecked_the_ocean
sleep 2 seconds to avoid blocking
------<1021>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JeremyKasdin_2014.stm
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+us+in+the+next+decade+to+build+a+space+telescope+that+ll+be+able+to+image+an+earth+about+another+star+and+figure+out+whether+it+can+harbor+life
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+colleagues+at+the+nasa+jet+propulsion+laboratory+at+princeton+and+i+are+working+on+technology
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+will+be+able+to+do+just+that+in+the+coming+years
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=astronomers+now+believe+that+every+star+in+the+galaxy+has+a+planet
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+speculate+that+up+to+one+fifth+of+them+have+an+earth+like+planet+that+might+be+able+to+harbor+life++but+we+haven+t+seen+any+of+them+we+ve+only+detected+them+indirectly
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+nasa+s+famous+picture+of+the+pale+blue
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+taken+by+the+voyager+spacecraft+in+one+thousand+nine+hundred+and+ninety+ninety+when+they+turned+it+around+as+it+was+exiting+the+solar+system+to+take+a+picture+of+the+earth+from+six+billion+kilometers+away
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+take+that+of+an+earth+like+planet+about+another+star
found 12 videos: [['/talks/jeremy_kasdin_the_flower_shaped_starshade_that_might_help_us_detect_earth_like_planets', '2014'], ['/talks/sara_seager_the_search_for_planets_beyond_our_solar_system', '2015'], ['/talks/tabetha_boyajian_the_most_mysterious_star_in_the_universe', '2016'], ['/talks/martin_villeneuve_how_i_made_an_impossible_film', '2013'], ['/talks/sting_how_i_started_writing_songs_again', '2014'], ['/talks/nathalie_cabrol_how_mars_might_hold_the_secret_to_the_origin_of_life', '2015'], ['/talks/diana_reiss_peter_gabriel_neil_gershenfeld_and_vint_cerf_the_interspecies_internet_an_idea_in_progress', '2013'], ['/talks/michael_dickinson_how_a_fly_flies', '2013'], ['/talks/juan_enriquez_will_our_kids_be_a_different_species', '2012'], ['/talks/brian_greene_is_our_universe_the_only_universe', '2012'], ['/talks/jessica_shortall_the_us_needs_paid_family_leave_for_the_sake_of_its_future', '2015'], ['/talks/yanis_varoufakis_capitalism_will_eat_democracy_unless_we_speak_up', '2016']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=why+haven+t+we+done+that+why+is+that+hard++well+to+see+let+s+imagine+we+take+the+hubble+space+telescope+and+we+turn+it+around+and+we+move+it+out+to+the+orbit+of+mars+we+ll+see+something+like+that+a+slightly
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=blurry+picture+of+the+earth+because+we+re+a+fairly+small+telescope+out+at+the+orbit+of+mars
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+let+s+move+ten+times+further+away++here+we+are+at+the+orbit+of+uranus+it+s+gotten+smaller+it+s+got+less+detail+less+resolve+we+can+still+see+the+little+moon+but+let+s+go+ten+times+further+away+again
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+we+are+at+the+edge+of+the+solar+system+out+at+the+kuiper+belt++now+it+s+not+resolved+at+all+it+s+that+pale+blue+dot+of+carl+sagan+s+but+let+s+move+yet+again+ten+times+further
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+we+are+out+at+the+oort+cloud+outside+the+solar+system+and+we+re+starting+to+see+the+sun+move+into+the+field+of+view+and+get+into+where+the+planet+is+one+more+time+ten+times+further+away++now
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+re+at+alpha+centauri+our+nearest+neighbor+star+and+the+planet+is+gone+all+we+re+seeing+is+the+big+beaming+image+of+the+star+that+s+ten+billion+times+brighter+than+the+planet++which+should+be+in+that+little+red+circle++that+s+what+we+want+to+see+that+s+why+it+s+hard+the+light+from+the+star
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+scattering+inside+the+telescope+creating+that+very+bright+image+that+washes+out+the+planet+so+to+see+the+planet++we+have+to+do+something+about+all+of+that+light+we+have+to+get+rid+of+it+i+have+a+lot
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+colleagues+working+on+really+amazing+technologies+to+do+that+but+i+want+to+tell+you+about+one+today+that+i+think+is+the+coolest+and+probably+the+most+likely+to+get+us+an+earth+in+the+next+decade+it+was+first+suggested+by+lyman+spitzer+the+father+of+the+space+telescope
found 1 videos: [['/talks/jeremy_kasdin_the_flower_shaped_starshade_that_might_help_us_detect_earth_like_planets', '2014']]
selected: /talks/jeremy_kasdin_the_flower_shaped_starshade_that_might_help_us_detect_earth_like_planets
sleep 1 seconds to avoid blocking
------<1022>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JessaGamble_2010G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+s+start+with+day+and+night
found 7 videos: [['/talks/peter_diamandis_abundance_is_our_future', '2012'], ['/talks/seth_shostak_et_is_probably_out_there_get_ready', '2012'], ['/talks/nathan_myhrvold_archeology_animal_photography_bbq', '2008'], ['/talks/reed_kroloff_a_tour_of_modern_architecture', '2008'], ['/talks/steven_pinker_human_nature_and_the_blank_slate', '2008'], ['/talks/emily_levine_a_theory_of_everything', '2009'], ['/talks/bill_strickland_rebuilding_a_neighborhood_with_beauty_dignity_hope', '2008']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=life+evolved+under+conditions+of+light+and+darkness+light+and+then+darkness++and+so+plants+and+animals+developed+their+own+internal+clocks+so+that+they+would+be+ready+for+these+changes+in+light
found 1 videos: [['/talks/jessa_gamble_our_natural_sleep_cycle_is_nothing_like_what_we_do_now', '2010']]
selected: /talks/jessa_gamble_our_natural_sleep_cycle_is_nothing_like_what_we_do_now
sleep 1 seconds to avoid blocking
------<1023>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JessaGamble_2010GU.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+s+start+with+day+and+night
found 7 videos: [['/talks/peter_diamandis_abundance_is_our_future', '2012'], ['/talks/seth_shostak_et_is_probably_out_there_get_ready', '2012'], ['/talks/nathan_myhrvold_archeology_animal_photography_bbq', '2008'], ['/talks/reed_kroloff_a_tour_of_modern_architecture', '2008'], ['/talks/steven_pinker_human_nature_and_the_blank_slate', '2008'], ['/talks/emily_levine_a_theory_of_everything', '2009'], ['/talks/bill_strickland_rebuilding_a_neighborhood_with_beauty_dignity_hope', '2008']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=life+evolved+under+conditions+of+light+and+darkness+light+and+then+darkness+and+so+plants+and+animals+developed+their+own+internal+clocks+so+that+they+would+be+ready+for+these+changes+in
found 1 videos: [['/talks/jessa_gamble_our_natural_sleep_cycle_is_nothing_like_what_we_do_now', '2010']]
selected: /talks/jessa_gamble_our_natural_sleep_cycle_is_nothing_like_what_we_do_now
sleep 5 seconds to avoid blocking
------<1024>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JessiArrington_2011A.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+jessi++and+this+is+my+suitcase++but+before+i+show+you+what+i+ve+got+inside
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+make+a+very+public+confession+and+that+is
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=photographing+and+blogging+a+different+colorful+crazy+outfit+for+every+single+occasion
found 1 videos: [['/talks/jessi_arrington_wearing_nothing_new', '2011']]
selected: /talks/jessi_arrington_wearing_nothing_new
sleep 2 seconds to avoid blocking
------<1025>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JessicaGreen_2011G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=humans+in+the+developed+world+spend+more+than+ninety+percent+of+their+lives+indoors++where+they+breathe+in+and+come+into+contact+with+trillions+of+life+forms+invisible+to+the+naked+eye
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=buildings+are+complex+ecosystems+that+are+an+important+source+of+microbes+that+are+good+for+us++and+some+that+are+bad+for+us
found 1 videos: [['/talks/jessica_green_are_we_filtering_the_wrong_microbes', '2011']]
selected: /talks/jessica_green_are_we_filtering_the_wrong_microbes
sleep 1 seconds to avoid blocking
------<1026>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JessicaGreen_2013U.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+covered+in+invisible+ecosystems+made+of+tiny+lifeforms+bacteria+viruses+and+fungi
found 1 videos: [['/talks/jessica_green_we_re_covered_in_germs_let_s_design_for_that', '2013']]
selected: /talks/jessica_green_we_re_covered_in_germs_let_s_design_for_that
sleep 4 seconds to avoid blocking
------<1027>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JessicaJackley_2010G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+stories+we+tell+about+each+other
found 13 videos: [['/talks/shekhar_kapur_we_are_the_stories_we_tell_ourselves', '2010'], ['/talks/sheikha_al_mayassa_globalizing_the_local_localizing_the_global', '2012'], ['/talks/yves_behar_designing_objects_that_tell_stories', '2008'], ['/talks/jim_toomey_learning_from_sherman_the_shark', '2010'], ['/talks/brian_goldman_doctors_make_mistakes_can_we_talk_about_that', '2012'], ['/talks/zainab_salbi_women_wartime_and_the_dream_of_peace', '2010'], ['/talks/jonathan_harris_the_web_as_art', '2008'], ['/talks/beatrice_coron_stories_cut_from_paper', '2011'], ['/talks/tracy_chevalier_finding_the_story_inside_the_painting', '2012'], ['/talks/eve_ensler_embrace_your_inner_girl', '2010'], ['/talks/dean_kamen_the_emotion_behind_invention', '2010'], ['/talks/jonathan_foley_the_other_inconvenient_truth', '2012'], ['/talks/giles_duley_when_a_reporter_becomes_the_story', '2012']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=matter+very+much+the+stories+we+tell+ourselves+about+our+own+lives+matter+and+most+of+all+i+think+the+way+that+we+participate+in+each+other+s+stories
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+six+years+old+when+i+first+heard+stories+about+the+poor+now+i+didn+t+hear+those+stories+from+the+poor+themselves+i+heard+them+from
found 1 videos: [['/talks/a_j_jacobs_my_year_of_living_biblically', '2008']]
selected: /talks/a_j_jacobs_my_year_of_living_biblically
sleep 4 seconds to avoid blocking
------<1028>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JessicaLadd_2016F.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+excited+to+be+going+to+college
found 16 videos: [['/talks/jessica_ladd_the_reporting_system_that_sexual_assault_survivors_want', '2016'], ['/talks/wes_moore_how_to_talk_to_veterans_about_war', '2014'], ['/talks/rodin_lyasoff_how_autonomous_flying_taxis_could_change_the_way_you_travel', '2018'], ['/talks/zeynep_tufekci_machine_intelligence_makes_human_morals_more_important', '2016'], ['/talks/larry_page_where_s_google_going_next', '2014'], ['/talks/minda_dentler_what_i_learned_when_i_conquered_the_world_s_toughest_triathlon', '2018'], ['/talks/jack_conte_how_artists_can_finally_get_paid_in_the_digital_age', '2017'], ['/talks/zachary_r_wood_why_it_s_worth_listening_to_people_you_disagree_with', '2018'], ['/talks/aspen_baker_a_better_way_to_talk_about_abortion', '2015'], ['/talks/jessica_mccabe_this_is_what_it_s_really_like_to_live_with_adhd_jan_2017', '2017'], ['/talks/jason_shen_looking_for_a_job_highlight_your_ability_not_your_experience', '2018'], ['/talks/luhan_yang_how_to_create_a_world_where_no_one_dies_waiting_for_a_transplant', '2018'], ['/talks/lizzie_velasquez_how_do_you_define_yourself', '2018'], ['/talks/haley_van_dyck_how_a_start_up_in_the_white_house_is_changing_business_as_usual', '2016'], ['/talks/james_a_white_sr_the_little_problem_i_had_renting_a_house', '2015'], ['/talks/luma_mufleh_don_t_feel_sorry_for_refugees_believe_in_them', '2017']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=she+couldn+t+wait+to+get+out+of+her+parents++house+to+prove+to+them+that+she+s+an+adult+and+to+prove+to+her+new+friends+that+she+belongs
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=she+heads+to+a+campus+party+where+she+sees+a+guy+that+she+has+a+crush+on++let+s+call+him+mike
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+next+day+hannah+wakes+up+with+a+pounding+headache
found 1 videos: [['/talks/jessica_ladd_the_reporting_system_that_sexual_assault_survivors_want', '2016']]
selected: /talks/jessica_ladd_the_reporting_system_that_sexual_assault_survivors_want
sleep 3 seconds to avoid blocking
------<1029>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JessicaShortall_2015X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=working+mother+look+like+if+you+ask+the+internet++this+is+what+you+ll+be+told+never+mind+that+this+is+what+you+ll+actually+produce
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+attempt+to+work+at+a+computer+with+a+baby+on+your+lap
found 2 videos: [['/talks/jessica_shortall_the_us_needs_paid_family_leave_for_the_sake_of_its_future', '2015'], ['/talks/caleb_barlow_where_is_cybercrime_really_coming_from', '2017']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ll+notice+a+theme+in+these+photos+we+ll+look+at+a+lot+of+them+that+theme+is+amazing+natural+lighting++which
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+we+all+know+is+the+hallmark+of+every+american+workplace
found 1 videos: [['/talks/jessica_shortall_the_us_needs_paid_family_leave_for_the_sake_of_its_future', '2015']]
selected: /talks/jessica_shortall_the_us_needs_paid_family_leave_for_the_sake_of_its_future
sleep 5 seconds to avoid blocking
------<1030>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JiaJiang_2015X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+was+six+years+old++i+received+my+gifts
found 7 videos: [['/talks/jia_jiang_what_i_learned_from_100_days_of_rejection', '2016'], ['/talks/aala_el_khani_what_it_s_like_to_be_a_parent_in_a_war_zone', '2017'], ['/talks/sarah_gray_how_my_son_s_short_life_made_a_lasting_difference', '2016'], ['/talks/joshua_prager_in_search_of_the_man_who_broke_my_neck', '2013'], ['/talks/miguel_nicolelis_brain_to_brain_communication_has_arrived_how_we_did_it', '2015'], ['/talks/oded_shoseyov_how_we_re_harnessing_nature_s_hidden_superpowers', '2016'], ['/talks/dave_isay_everyone_around_you_has_a_story_the_world_needs_to_hear', '2015']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+first+grade+teacher+had+this+brilliant+idea
found 8 videos: [['/talks/seema_bansal_how_to_fix_a_broken_education_system_without_any_more_money', '2016'], ['/talks/thomas_hellum_the_world_s_most_boring_television_and_why_it_s_hilariously_addictive', '2014'], ['/talks/jia_jiang_what_i_learned_from_100_days_of_rejection', '2016'], ['/talks/adam_spencer_why_i_fell_in_love_with_monster_prime_numbers', '2013'], ['/talks/chimamanda_ngozi_adichie_we_should_all_be_feminists', '2017'], ['/talks/john_green_the_nerd_s_guide_to_learning_everything_online', '2015'], ['/talks/jim_yong_kim_doesn_t_everyone_deserve_a_chance_at_a_good_life', '2017'], ['/talks/gretchen_carlson_david_brooks_political_common_ground_in_a_polarized_united_states', '2017']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=she+wanted+us+to+experience+receiving+gifts+but+also+learning+the+virtue+of
found 1 videos: [['/talks/jia_jiang_what_i_learned_from_100_days_of_rejection', '2016']]
selected: /talks/jia_jiang_what_i_learned_from_100_days_of_rejection
sleep 1 seconds to avoid blocking
------<1031>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JiHaePark_2013.stm
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+little+bit+of+me+playing+my+life
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+might+look+successful+and+happy+being+in+front+of+you+today
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+once+suffered+from+severe+depression+and+was+in+total+despair
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+violin++which+meant+everything+to+me+became+a+grave+burden+on+me
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=although+many+people+tried+to+comfort+and+encourage+me++their+words+sounded+like
error: request timeout
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+was+just+about+to+give+everything+up+after+years+of+suffering
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+started+to+rediscover+the+true+power+of+music
error: request timeout
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+comfort+the+music+gave+me+was+just+indescribable+and+it+was+a+real++eye+opening+experience+for+me+too
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+totally+changed+my+perspective+on+life+and+set+me+free+from+the+pressure
error: request timeout
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=do+you+feel+like+you+are+all+alone
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hope+that+this+piece+will+touch+and+heal+your+heart+as+it+did+for+me
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+use+my+music+to+reach+people+s+hearts+and+have+found+there+are+no+boundaries+my+audience
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+anyone+who+is+here+to+listen++even+those+who+are+not
error: request timeout
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+not+only+play+at+the+prestigious+classical+concert+halls+like+carnegie+hall+and+kennedy+center++but+also+hospitals++churches++prisons+and+restricted+facilities
found 1 videos: [['/talks/ji_hae_park_the_violin_and_my_dark_night_of_the_soul', '2013']]
selected: /talks/ji_hae_park_the_violin_and_my_dark_night_of_the_soul
sleep 1 seconds to avoid blocking
------<1032>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JillBolteTaylor_2008.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+grew+up+to+study+the+brain+because+i+have+a+brother+who+has+been+diagnosed+with+a+brain+disorder+schizophrenia
found 1 videos: [['/talks/jill_bolte_taylor_my_stroke_of_insight', '2008']]
selected: /talks/jill_bolte_taylor_my_stroke_of_insight
sleep 4 seconds to avoid blocking
------<1033>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JillFarrant_2015G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+believe+that+the+secret+to+producing+extremely+drought+tolerant+crops++which+should+go+some+way+to+providing+food+security+in+the+world+lies+in
found 1 videos: [['/talks/jill_farrant_how_we_can_make_crops_survive_without_water', '2016']]
selected: /talks/jill_farrant_how_we_can_make_crops_survive_without_water
sleep 1 seconds to avoid blocking
------<1034>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JillHeinerth_2015Y.stm
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+wanted+to+be+an+astronaut+when+i+was+a+little+kid+but+growing+up+in+canada+as+a+young+girl+that+wasn+t+really+available+to+me
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+it+turns+out+we+know+a+lot+more+about+space
found 19 videos: [['/talks/russell_foster_why_do_we_sleep', '2013'], ['/talks/dan_berkenstock_the_world_is_one_big_dataset_now_how_to_photograph_it', '2014'], ['/talks/kate_marvel_can_clouds_buy_us_more_time_to_solve_climate_change', '2017'], ['/talks/lisa_nip_how_humans_could_evolve_to_survive_in_space', '2016'], ['/talks/johann_hari_everything_you_think_you_know_about_addiction_is_wrong', '2015'], ['/talks/grace_kim_how_cohousing_can_make_us_happier_and_live_longer', '2017'], ['/talks/elizabeth_lev_the_unheard_story_of_the_sistine_chapel', '2016'], ['/talks/travis_kalanick_uber_s_plan_to_get_more_people_into_fewer_cars', '2016'], ['/talks/mona_chalabi_3_ways_to_spot_a_bad_statistic', '2017'], ['/talks/julia_bacha_how_women_wage_conflict_without_violence', '2016'], ['/talks/nick_bostrom_what_happens_when_our_computers_get_smarter_than_we_are', '2015'], ['/talks/david_eagleman_can_we_create_new_senses_for_humans', '2015'], ['/talks/donald_hoffman_do_we_see_reality_as_it_is', '2015'], ['/talks/ben_wellington_how_we_found_the_worst_place_to_park_in_new_york_city_using_big_data', '2015'], ['/talks/larry_page_where_s_google_going_next', '2014'], ['/talks/andrew_solomon_depression_the_secret_we_share', '2013'], ['/talks/marc_raibert_meet_spot_the_robot_dog_that_can_run_hop_and_open_doors', '2017'], ['/talks/juan_enriquez_what_will_humans_look_like_in_100_years', '2016'], ['/talks/juno_mac_the_laws_that_sex_workers_really_want', '2016']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=than+we+do+about+the+underground+waterways+coursing+through+our+planet+the+very+lifeblood+of+mother+earth
found 1 videos: [['/talks/jill_heinerth_the_mysterious_world_of_underwater_caves', '2016']]
selected: /talks/jill_heinerth_the_mysterious_world_of_underwater_caves
sleep 4 seconds to avoid blocking
------<1035>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JillShargaa_2014S.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+many+times+have+you+used+the+word+awesome+today++once+twice++seventeen+times
found 1 videos: [['/talks/jill_shargaa_please_please_people_let_s_put_the_awe_back_in_awesome', '2014']]
selected: /talks/jill_shargaa_please_please_people_let_s_put_the_awe_back_in_awesome
sleep 4 seconds to avoid blocking
------<1036>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JillSobuleandJuliaSweeneySHOW_2007.stm
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+made+a+beeline+for+you+and+told+you+what+a+huge+fan+i+was+ever+since+i+was+writing+that+pilot+for+fox+and+wendy+and+i+wanted+you+to+do+the+theme+song+and+then+the+pilot+didn+t+go+and+i+was+so+sad
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+kept+remaining+a+fan+of+yours+and+then+when+i+went+through+that+big+horrible+breakup+with+carl+and+i+couldn+t+get+off+the+couch+i+listened+to+your+song
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+can+t+believe+that+you+re+here+and+i+m+meeting+you+here+at+ted+and+also+i+can+t+believe+that+we+re+eating+sushi+in+front+of+the+fish+tank+which+personally+i+think+is+really+inappropriate
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=oprah+was+never+necessarily+a+big+hero+of+mine+i+mean+i+watch+oprah+mostly+when+i+m+home+in+spokane+visiting+my+mother+and+to+my+mother+oprah+is+a+greater+moral+authority
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=than+the+pope+which+is+actually+saying+something+because+she+s+a+devout+catholic+anyway+i+like+oprah+i+like+her+girl+friendly+ness+i+like+her+weight+issues+i+like+how+she+s+transformed
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=talk+television+i+like+how+she+s+brought+reading+back+to+america
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+there+was+something+that+happened+the+last+two+weeks+that+was+i+call+it+the+soon+yi+moment+it+is+the+moment+when
found 1 videos: [['/talks/jill_sobule_julia_sweeney_the_jill_and_julia_show', '2008']]
selected: /talks/jill_sobule_julia_sweeney_the_jill_and_julia_show
sleep 2 seconds to avoid blocking
------<1037>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JillSobuleandJuliaSweeney_TheJillandJuliaShow_2007.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=little+did+i+know+that+one+year+later+we+d+be+doing+this+show
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+made+a+beeline+for+you+and+told+you+what+a+huge+fan+i+was+ever+since+i+was+writing+that+pilot+for+fox+and+wendy+and+i+wanted+you+to+do+the+theme+song+and+then+the+pilot+didn+t+go+and+i+was+so+sad
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+kept+remaining+a+fan+of+yours+and+then+when+i+went+through+that+big+horrible+breakup+with+carl+and+i+couldn+t+get+off+the+couch++i+listened+to+your+song
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+can+t+believe+you+re+here+and+that+i+m+meeting+you+here+at+ted++and+also+i+can+t+believe+that+we+re+eating+sushi+in+front+of+the+fish+tank+which+personally+i+think+is+really+inappropriate
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+little+did+i+know+that+one+year+later+we+d+be+doing+this+show
found 7 videos: [['/talks/caleb_chung_playtime_with_pleo_your_robotic_dinosaur_friend', '2008'], ['/talks/mike_rowe_learning_from_dirty_jobs', '2009'], ['/talks/eames_demetrios_the_design_genius_of_charles_ray_eames', '2009'], ['/talks/steven_levitt_the_freakonomics_of_crack_dealing', '2006'], ['/talks/marcus_du_sautoy_symmetry_reality_s_riddle', '2009'], ['/talks/zach_kaplan_keith_schacht_toys_and_materials_from_the_future', '2008'], ['/talks/samantha_power_a_complicated_hero_in_the_war_on_dictatorship', '2008']]
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=oprah+was+never+necessarily+a+big+hero+of+mine+i+mean+i+watch+oprah+mostly+when+i+m+home+in+spokane+visiting+my+mother+and+to+my+mother+oprah+is+a+greater+moral+authority+than
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+pope+which+is+actually+saying+something+because+she+s+a+devout+catholic+anyway++i+like+oprah+i+like+her
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+like+her+weight+issues+i+like+how+she+s+transformed
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=talk+television++i+like+how+she+s+brought+reading+back+to+america+but+there+was+something+that+happened+the+last+two+weeks+that+was+i+call+it
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+soon+yi+moment+it+is+the+moment+when+i+cannot
found 1 videos: [['/talks/jill_sobule_julia_sweeney_the_jill_and_julia_show', '2008']]
selected: /talks/jill_sobule_julia_sweeney_the_jill_and_julia_show
sleep 5 seconds to avoid blocking
------<1038>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JillTarter_2009.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+question+are+we+alone+the+story+of+humans+is+the+story+of+ideas
found 15 videos: [['/talks/his_holiness_the_karmapa_the_technology_of_the_heart', '2010'], ['/talks/elaine_morgan_i_believe_we_evolved_from_aquatic_apes', '2009'], ['/talks/elizabeth_gilbert_your_elusive_creative_genius', '2009'], ['/talks/jill_tarter_join_the_seti_search', '2009'], ['/talks/sheena_iyengar_the_art_of_choosing', '2010'], ['/talks/mark_pagel_how_language_transformed_humanity', '2011'], ['/talks/garrett_lisi_an_8_dimensional_model_of_the_universe', '2008'], ['/talks/michael_nielsen_open_science_now', '2011'], ['/talks/spencer_wells_a_family_tree_for_humanity', '2008'], ['/talks/jacqueline_novogratz_patient_capitalism', '2007'], ['/talks/bruce_feiler_the_council_of_dads', '2011'], ['/talks/chris_abani_telling_stories_from_africa', '2007'], ['/talks/natasha_tsakos_a_multimedia_theatrical_adventure', '2009'], ['/talks/steven_johnson_where_good_ideas_come_from', '2010'], ['/talks/kevin_kelly_technology_s_epic_story', '2010']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=scientific+ideas+that+shine+light+into+dark
found 3 videos: [['/talks/chris_anderson_how_web_video_powers_global_innovation', '2010'], ['/talks/jill_tarter_join_the_seti_search', '2009'], ['/talks/brian_cox_why_we_need_the_explorers', '2010']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+we+embrace+rationally+and+irrationally+ideas+for+which+we+ve
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=lived+and+died+and+killed+and+been+killed+ideas+that+have+vanished+in+history+and+ideas+that+have+been+set+in+dogma
found 1 videos: [['/talks/jill_tarter_join_the_seti_search', '2009']]
selected: /talks/jill_tarter_join_the_seti_search
sleep 2 seconds to avoid blocking
------<1039>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JimAlKhalili_2015G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+to+introduce+you+to+an+emerging+area+of+science+one+that+is+still+speculative
found 1 videos: [['/talks/jim_al_khalili_how_quantum_biology_might_explain_life_s_biggest_questions', '2015']]
selected: /talks/jim_al_khalili_how_quantum_biology_might_explain_life_s_biggest_questions
sleep 3 seconds to avoid blocking
------<1040>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JimFallon_2009.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+studied+behavior+on+the+basis+of+everything+from+genes+through+neurotransmitters+dopamine
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=things+like+that+all+the+way+through+circuit+analysis+so+that+s+what+i+normally+do++but+then+for+some+reason
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+got+into+something+else++just+recently++and+it+all+grew+out+of+one+of+my+colleagues+asking+me+to+analyze+a+bunch+of+brains+of+psychopathic+killers
found 1 videos: [['/talks/jim_fallon_exploring_the_mind_of_a_killer', '2009']]
selected: /talks/jim_fallon_exploring_the_mind_of_a_killer
sleep 3 seconds to avoid blocking
------<1041>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JimHemerling_2016S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+you+ever+noticed+when+you+ask+someone+to+talk+about+a+change+they+re+making+for+the+better+in+their+personal+lives+they+re+often+really+energetic
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=whether+it+s+training+for+a+marathon++picking+up+an+old+hobby+or+learning+a+new+skill+for+most+people
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=occupy+a+very+positive+emotional+space
found 1 videos: [['/talks/jim_hemerling_5_ways_to_lead_in_an_era_of_constant_change', '2016']]
selected: /talks/jim_hemerling_5_ways_to_lead_in_an_era_of_constant_change
sleep 5 seconds to avoid blocking
------<1042>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JimHolt_2014.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+a+cosmic+mystery+be+solemn++why+is+there+a+world+why+are+we+in+it+and
found 1 videos: [['/talks/jim_holt_why_does_the_universe_exist', '2014']]
selected: /talks/jim_holt_why_does_the_universe_exist
sleep 1 seconds to avoid blocking
------<1043>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JimmyCarter_2015W.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+trying+to+think+about+my+career+since+i+left+the+white+house+and+the+best
found 11 videos: [['/talks/jimmy_carter_why_i_believe_the_mistreatment_of_women_is_the_number_one_human_rights_abuse', '2015'], ['/talks/ruth_chang_how_to_make_hard_choices', '2014'], ['/talks/carol_fishman_cohen_how_to_get_back_to_work_after_a_career_break', '2016'], ['/talks/courtney_e_martin_the_new_american_dream', '2016'], ['/talks/julio_gil_future_tech_will_give_you_the_benefits_of_city_life_anywhere', '2017'], ['/talks/gabby_giffords_and_mark_kelly_be_passionate_be_courageous_be_your_best', '2014'], ['/talks/jonathan_haidt_how_common_threats_can_make_common_political_ground', '2013'], ['/talks/jarrett_j_krosoczka_how_a_boy_became_an_artist', '2013'], ['/talks/gary_haugen_the_hidden_reason_for_poverty_the_world_needs_to_address_now', '2015'], ['/talks/antonio_donato_nobre_the_magic_of_the_amazon_a_river_that_flows_invisibly_all_around_us', '2014'], ['/talks/chimamanda_ngozi_adichie_we_should_all_be_feminists', '2017']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=example+i+have+is+a+cartoon+in+the+new+yorker+a+couple+of+years+ago+this+little+boy+is+looking+up+at+his+father+and+he+says+daddy+when+i+grow+up+i+want+to+be+a+former+president
found 1 videos: [['/talks/jimmy_carter_why_i_believe_the_mistreatment_of_women_is_the_number_one_human_rights_abuse', '2015']]
selected: /talks/jimmy_carter_why_i_believe_the_mistreatment_of_women_is_the_number_one_human_rights_abuse
sleep 2 seconds to avoid blocking
------<1044>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JimmyNelson_2014G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=been+making+pictures+for+quite+a+long+time+and+normally+speaking+a+picture+like+this+for+me+should+be+straightforward++i+m+in+southern+ethiopia+i
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=m+with+the++daasanach+there+s+a+big+family+there+s+a+very+beautiful
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+make+these+pictures+with+this+very+large+extremely+cumbersome+very+awkward+technical+plate+film+camera+does+anybody+know
found 1 videos: [['/talks/jimmy_nelson_gorgeous_portraits_of_the_world_s_vanishing_people', '2015']]
selected: /talks/jimmy_nelson_gorgeous_portraits_of_the_world_s_vanishing_people
sleep 1 seconds to avoid blocking
------<1045>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JimmyWales_2005G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=charles+van+doren+who+was+later+a+senior+editor+of+britannica+said
found 1 videos: [['/talks/jimmy_wales_the_birth_of_wikipedia', '2006']]
selected: /talks/jimmy_wales_the_birth_of_wikipedia
sleep 3 seconds to avoid blocking
------<1046>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JimSimons_2015.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=were+something+of+a+mathematical+phenom++you+had+already+taught+at+harvard+and+mit+at+a+young+age++and+then+the+nsa+came+calling++what+was+that+about+jim+simons
found 1 videos: [['/talks/jim_simons_the_mathematician_who_cracked_wall_street', '2015']]
selected: /talks/jim_simons_the_mathematician_who_cracked_wall_street
sleep 3 seconds to avoid blocking
------<1047>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JimToomey_2010Z.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=cartoons+are+basically+short+stories+i+tried+to+find+one+that+didn+t+have+a+whole+lot+of+words
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+happy+endings+so+how+did+i+get+started+cartooning+i+doodled+a+lot+as+a+kid
found 1 videos: [['/talks/jim_toomey_learning_from_sherman_the_shark', '2010']]
selected: /talks/jim_toomey_learning_from_sherman_the_shark
sleep 5 seconds to avoid blocking
------<1048>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JinhaLee_2013.stm
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+ve+been+striving+to+shorten+the+gap+between+us+and+digital+information+the+gap+between+our+physical+world+and+the+world+in+the+screen+where+our+imagination
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+gap+has+become+shorter
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=shorter+and+even+shorter+and+now+this+gap+is+shortened+down+to+less+than+a+millimeter+the+thickness+of+a+touch+screen+glass+and+the+power+of+computing+has+become+accessible+to+everyone
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+wondered+what+if+there+could+be+no+boundary+at+all
found 2 videos: [['/talks/leonard_susskind_my_friend_richard_feynman', '2011'], ['/talks/jinha_lee_reach_into_the_computer_and_grab_a_pixel', '2013']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+started+to+imagine+what+this+would+look+like
found 16 videos: [['/talks/andrew_mcafee_what_will_future_jobs_look_like', '2013'], ['/talks/alessandro_acquisti_what_will_a_future_without_secrets_look_like', '2013'], ['/talks/rishi_manchanda_what_makes_us_get_sick_look_upstream', '2014'], ['/talks/vincent_cochetel_i_was_held_hostage_for_317_days_here_s_what_i_thought_about', '2015'], ['/talks/martin_pistorius_how_my_mind_came_back_to_life_and_no_one_knew', '2015'], ['/talks/yassmin_abdel_magied_what_does_my_headscarf_mean_to_you', '2015'], ['/talks/scott_dinsmore_how_to_find_work_you_love', '2015'], ['/talks/andrew_solomon_love_no_matter_what', '2013'], ['/talks/toni_griffin_a_new_vision_for_rebuilding_detroit', '2013'], ['/talks/justin_hall_tipping_freeing_energy_from_the_grid', '2011'], ['/talks/beth_noveck_demand_a_more_open_source_government', '2012'], ['/talks/jeremy_heimans_what_new_power_looks_like', '2014'], ['/talks/regina_dugan_from_mach_20_glider_to_hummingbird_drone', '2012'], ['/talks/david_mackay_a_reality_check_on_renewables', '2012'], ['/talks/jenni_chang_and_lisa_dazols_this_is_what_lgbt_life_is_like_around_the_world', '2015'], ['/talks/george_papandreou_imagine_a_european_democracy_without_borders', '2013']]
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=created+this+tool+which+penetrates+into+the+digital+space+so+when+you+press+it+hard+on+the+screen+it+transfers+its+physical+body+into+pixels
found 1 videos: [['/talks/jinha_lee_reach_into_the_computer_and_grab_a_pixel', '2013']]
selected: /talks/jinha_lee_reach_into_the_computer_and_grab_a_pixel
sleep 5 seconds to avoid blocking
------<1049>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JinsopLee_2013.stm
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=global+strife+and+climate+change++i+m+here+to+answer+the+all+important+question+why+is+sex+so+damn+good+if
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+re+laughing+you+know+what+i+mean+now+before+we+get
found 1 videos: [['/talks/bruce_feiler_the_council_of_dads', '2011']]
selected: /talks/bruce_feiler_the_council_of_dads
sleep 2 seconds to avoid blocking
------<1050>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JJAbrams_2007.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+wanna+start+today+talk+about+the+structure+of+a+polypeptide
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=why+so+many+mysteries+what+is+it+about+mystery+that+that+i+seem+to+be+drawn+to
found 2 videos: [['/talks/j_j_abrams_the_mystery_box', '2008'], ['/talks/garrett_lisi_an_8_dimensional_model_of_the_universe', '2008']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+was+thinking+about+this+what+to+talk+about+at+ted+when+i+talked+to+the+the+kind+rep
found 14 videos: [['/talks/j_j_abrams_the_mystery_box', '2008'], ['/talks/stefan_sagmeister_the_power_of_time_off', '2009'], ['/talks/richard_baraniuk_the_birth_of_the_open_source_learning_revolution', '2006'], ['/talks/malcolm_gladwell_choice_happiness_and_spaghetti_sauce', '2006'], ['/talks/emily_levine_a_theory_of_everything', '2009'], ['/talks/barry_schwartz_our_loss_of_wisdom', '2009'], ['/talks/mena_trott_meet_the_founder_of_the_blog_revolution', '2006'], ['/talks/paul_bennett_design_is_in_the_details', '2007'], ['/talks/eve_ensler_happiness_in_body_and_soul', '2006'], ['/talks/peter_hirshberg_the_web_is_more_than_better_tv', '2008'], ['/talks/bono_my_wish_three_actions_for_africa', '2006'], ['/talks/franco_sacchi_a_tour_of_nollywood_nigeria_s_booming_film_industry', '2008'], ['/talks/nicholas_negroponte_5_predictions_from_1984', '2008'], ['/talks/nate_silver_does_racism_affect_how_you_vote', '2009']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=from+ted+and+i+said+listen+you+know++what+should+i+talk+about+he+said+don+t+worry+about+it+just+be+profound
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+took+enormous+comfort+in+that+so+thank+you+if+you+re+here
found 3 videos: [['/talks/david_rockwell_a_memorial_at_ground_zero', '2007'], ['/talks/ed_ulbrich_how_benjamin_button_got_his_face', '2009'], ['/talks/norman_foster_my_green_agenda_for_architecture', '2008']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+trying+to+think+what+do+i+talk+about+it+s+a+good+question
found 11 videos: [['/talks/elaine_morgan_i_believe_we_evolved_from_aquatic_apes', '2009'], ['/talks/emily_levine_a_theory_of_everything', '2009'], ['/talks/alan_russell_the_potential_of_regenerative_medicine', '2007'], ['/talks/margaret_wertheim_the_beautiful_math_of_coral', '2009'], ['/talks/dan_gilbert_why_we_make_bad_decisions', '2008'], ['/talks/bjorn_lomborg_global_priorities_bigger_than_climate_change', '2007'], ['/talks/bill_strickland_rebuilding_a_neighborhood_with_beauty_dignity_hope', '2008'], ['/talks/jacqueline_novogratz_patient_capitalism', '2007'], ['/talks/reed_kroloff_a_tour_of_modern_architecture', '2008'], ['/talks/ben_saunders_why_did_i_ski_to_the_north_pole', '2006'], ['/talks/juan_enriquez_the_life_code_that_will_reshape_the_future', '2007']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=why+do+i+do+so+much+stuff+that+involves+mystery+and+i+started+trying+to+figure+it+out+and+i+started+thinking+about+why+do+i+do+any+of+what+i+do+and+i+started+thinking+about+my+grandfather
found 1 videos: [['/talks/j_j_abrams_the_mystery_box', '2008']]
selected: /talks/j_j_abrams_the_mystery_box
sleep 3 seconds to avoid blocking
------<1051>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JoachimdePosada_2009U.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+here+because+i+have+a+very+important+message+i+think+we+have+found+the+most+important+factor+for+success++and+it+was+found
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=close+to+here+stanford+psychology+professor+took+kids+that+were+four+years+old+and
found 1 videos: [['/talks/joachim_de_posada_don_t_eat_the_marshmallow', '2009']]
selected: /talks/joachim_de_posada_don_t_eat_the_marshmallow
sleep 5 seconds to avoid blocking
------<1052>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JoanHalifax_2010W.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+address+the+issue+of+compassion
found 4 videos: [['/talks/joan_halifax_compassion_and_the_true_meaning_of_empathy', '2011'], ['/talks/josette_sheeran_ending_hunger_now', '2011'], ['/talks/a_j_jacobs_my_year_of_living_biblically', '2008'], ['/talks/thulasiraj_ravilla_how_low_cost_eye_care_can_be_world_class', '2009']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=compassion+has+many+faces++some+of+them+are+fierce+some+of+them+are+wrathful++some+of+them+are+tender++some+of+them+are+wise+a
found 1 videos: [['/talks/joan_halifax_compassion_and_the_true_meaning_of_empathy', '2011']]
selected: /talks/joan_halifax_compassion_and_the_true_meaning_of_empathy
sleep 4 seconds to avoid blocking
------<1053>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JoAnnKucheraMorin_2009.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+allosphere+it+s+a+three+story+metal+sphere+in+an+echo+free+chamber++think+of+the+allosphere+as+a+large+dynamically+varying+digital+microscope
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+connected+to+a+supercomputer++twenty+researchers+can+stand+on+a+bridge+suspended+inside+of+the+sphere+and+be+completely+immersed+in
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=their+data++imagine+if+a+team+of+physicists+could+stand+inside+of+an+atom+and+watch+and+hear+electrons+spin
found 1 videos: [['/talks/joann_kuchera_morin_stunning_data_visualization_in_the_allosphere', '2009']]
selected: /talks/joann_kuchera_morin_stunning_data_visualization_in_the_allosphere
sleep 3 seconds to avoid blocking
------<1054>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JocelyneBloch_2015G.stm
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+like+most+of+my+colleagues+i+have+to+deal++every+day+with+human+tragedies
found 1 videos: [['/talks/jocelyne_bloch_the_brain_may_be_able_to_repair_itself_with_help', '2016']]
selected: /talks/jocelyne_bloch_the_brain_may_be_able_to_repair_itself_with_help
sleep 1 seconds to avoid blocking
------<1055>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JodyWilliams_2010W.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+make+a+challenge+to+people+i+know+there+have+been+many+challenges+made+to+people+the+one+i+m+going+to+make+is+that+it+is+time+for+us+to+reclaim+what+peace
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+dove+and+the+rainbow+as+lovely+as+they+are
found 2 videos: [['/talks/jody_williams_a_realistic_vision_for_world_peace', '2011'], ['/talks/robert_thurman_expanding_your_circle_of_compassion', '2008']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+see+the+symbols+of+the+rainbow+and+the+dove++i+think+of+personal+serenity
found 1 videos: [['/talks/jody_williams_a_realistic_vision_for_world_peace', '2011']]
selected: /talks/jody_williams_a_realistic_vision_for_world_peace
sleep 2 seconds to avoid blocking
------<1056>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JoeDeRisi_2006.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+can+we+investigate+this+flora+of+viruses+that+surround+us+and+aid+medicine
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+can+we+turn+our+cumulative+knowledge+of+virology
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+turn+everything+we+know+right+now+about+detecting+viruses+and+the+spectrum+of+viruses+that+are+out+there+into+let+s+say+a+small+chip++when+we+started+thinking+about+this+project
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+we+would+make+a+single+diagnostic+assay+to+screen+for+all+pathogens+simultaneously
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=evolving+very+fast+this+is+a+picornavirus+picornaviruses+these+are+things+that+include+the+common+cold+and+polio+things+like+this+you+re+looking+at+the+outside+shell+of+the+virus
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+yellow+color+here+are+those+parts+of+the+virus+that+are+evolving+very+very+fast+and+the+blue+parts+are+not+evolving+very+fast+when+people+think+about+making+pan+viral+detection+reagents+usually
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=problem+that+s+an+issue+because+how+can+we+detect+things+if+they+re+always+changing+but+evolution+is+a+balance
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=where+you+have+fast+change++you+also+have
found 3 videos: [['/talks/bjorn_lomborg_global_priorities_bigger_than_climate_change', '2007'], ['/talks/jeff_hawkins_how_brain_science_will_change_computing', '2007'], ['/talks/dan_gilbert_why_we_make_bad_decisions', '2008']]
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+we+looked+into+this+a+little+more+carefully++and+i+m+going+to+show+you+data+now+this+is+just+some+stuff+you+can+do+on+the+computer+from+the+desktop+i+took+a+bunch+of+these+small+picornaviruses+like+the+common+cold+like+polio+and+so+on
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+just+broke+them+down+into+small
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+took+this+first+example+which+is+called+coxsackievirus++and+just+break+it+into+small+windows++and+i+m+coloring+these+small+windows+blue+if+another+virus+shares+an+identical+sequence+in+its+genome+to+that+virus
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+sequences+right+up+here+which+don+t+even+code+for+protein+by+the+way+are+almost+absolutely+identical+across+all+of+these+so+i+could+use+this+sequence+as
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+marker+to+detect+a+wide+spectrum+of+viruses++without+having+to+make+something+individual+now+over
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+there+s+great+diversity++that+s+where+things+are+evolving+fast+down+here+you+can+see+slower+evolution+less+diversity++now+by+the+time+we+get+out+here+to+let+s+say++acute+bee+paralysis+virus+probably+a+bad+one+to+have+if+you+re+a+bee
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+virus+shares+almost+no+similarity+to+coxsackievirus++but+i+can+guarantee+you+that+the+sequences+that+are+most+conserved+among+these+viruses+on+the
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=screen+are+in+identical+regions+right+up+here++and+so+we+can+encapsulate+these+regions+of
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=through+evolution+how+these+viruses+evolved
found 2 videos: [['/talks/martin_rees_is_this_our_final_century', '2007'], ['/talks/e_o_wilson_my_wish_build_the_encyclopedia_of_life', '2007']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+just+choosing+dna+elements+or+rna+elements+in+these+regions+to+represent+on+our+chip+as+detection+reagents
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ok+so+that+s+what+we+did+but+how+are+we+going+to+do+that+well+for+a+long+time+since+i+was+in+graduate+school+i+ve+been+messing+around+making+dna+chips+that+is++printing+dna
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+glass+and+that+s+what+you+see+here+these+little+salt+spots+are+just+dna+tacked+onto+glass++and+so+i+can+put+thousands+of+these+on+our+glass+chip+and+use+them+as+a+detection+reagent++we+took+our
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=chip+over+to+hewlett+packard+and+used+their+atomic+force+microscope+on+one+of+these+spots+and+this+is+what+you+see+you+can+actually+see+the+strands+of+dna+lying+flat+on+the+glass+here+so+what+we+re+doing+is+just+printing+dna+on+glass+little+flat+things+and+these+are+going+to+be+markers+for
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ok++i+make+little+robots+in+lab+to+make+these+chips++and+i+m+really+big+on+disseminating+technology+if+you+ve+got+enough+money+to+buy+just+a+camry+you+can+build+one
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+these+too++and+so+we+put+a+deep+how+to+guide+on+the+web++totally+free+with+basically+order+off+the+shelf+parts+you+can+build+a+dna+array+machine+in+your+garage+here+s+the+section+on+the+all+important+emergency+stop+switch
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=every+important+machine+s+got+to+have+a+big+red+button++but+really+it+s+pretty+robust+you+can+actually+be+making+dna+chips+in+your
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+your+garage+and+decoding+some+genetic+programs+pretty+rapidly+it+s+a+lot+of+fun
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=laughter+and+so+what+we+did++and+this+is++a+really+cool+project+we+just+started+by+making+a+respiratory+virus+chip
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=situation+where+you+go+into+the+clinic+and+you+don+t+get+diagnosed+well+we+just+put+basically+all+the+human+respiratory+viruses+on+one+chip+and+we+threw+in+herpes+virus+for+good+measure+i+mean+why+not+the
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=first+thing+you+do+as+a+scientist+is+you+make+sure+stuff+works++and+so+what+we+did+is+we+take+tissue+culture+cells
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+infect+them+with+various+viruses+and+we+take+the+stuff+and+fluorescently+label+the+nucleic+acid+the+genetic+material+that+comes+out+of+these+tissue+culture+cells+mostly+viral+stuff+and+stick+it+on+the+array+to+see+where
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+sticks+now+if+the+dna+sequences+match+they+ll+stick+together+and+so+we+can+look+at+spots+and+if+spots+light+up+we+know+there+s+a+certain+virus+in+there+that+s+what+one+of+these+chips+really+looks+like+and+these+red+spots+are+in
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fact+signals+coming+from+the+virus++and+each+spot+represents+a+different+family+of+virus+or+species+of+virus
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+we+did+is+we+took+tissue+culture+cells+and+infected+them+with+adenovirus+and+you+can+see+this+little+yellow+barcode+next+to+adenovirus+and+likewise+we+infected+them+with
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+a+paramyxovirus+and+you+see+a+little+barcode+here+and+then+we+did+respiratory+syncytial+virus++that+s+the+scourge+of+daycare+centers+everywhere+it+s+like+boogeremia+basically
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+see+that+this+barcode+is+the+same+family+but+it+s+distinct+from+parainfluenza+3+which+gives+you+a+very+bad+cold+and+so+we+re+getting+unique+signatures+a+fingerprint+for+each+virus
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=polio+and+rhino+they+re+in+the+same+family+very+close+to+each+other+rhino+s+the+common+cold+and+you+all+know+what+polio+is++and+you+can+see+that+these+signatures+are+distinct+and++kaposi+s+sarcoma+associated+herpes+virus+gives+a+nice+signature+down+here++and+so+it+is+not+any+one
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=stripe+or+something+that+tells+me+i+have+a+virus+of+a+particular+type+here++it+s+the+barcode+that+in+bulk+represents+the+whole+thing
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+right+i+can+see+a+rhinovirus+and+here+s+the+blow+up+of+the+rhinovirus+s+little+barcode+but+what+about+different+rhinoviruses+how+do+i+know+which+rhinovirus+i+have+there+re+one+hundred+and+two+known+variants+of+the+common
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=cold+and+there+re+only+one+hundred+and+two+because+people+got+bored+collecting+them+there+are+just+new+ones+every+year++and+so++here+are+four+different+rhinoviruses+and+you+can+see+even+with+your+eye+without+any+fancy
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=algorithms+that+you+can+distinguish+each+one+of+these+barcodes+from+each+other+now+this+is+kind+of+a+cheap+shot+because+i+know+what+the+genetic+sequence+of+all+these+rhinoviruses+is+and+i+in+fact+designed+the+chip
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=expressly+to+be+able+to+tell+them+apart+but+what+about+rhinoviruses+that+have+never+seen+a+genetic+sequencer+we+don+t+know+what+the+sequence+is+just+pull+them+out+of+the+field
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+never+knew+anything+about+no+one+s+ever+sequenced+them+and+you+can+also+see+that+you+get+unique+and+distinguishable+patterns+you+can+imagine+building+up+some+library+whether+real+or+virtual+of+fingerprints+of+essentially+every+virus++but+that+s
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=again++shooting+fish+in+a+barrel+you+know+right+you+have+tissue+culture+cells+there+are+a+ton+of+viruses+what+about+real+people+you+can+t+control+real+people+as+you+probably+know+you+have+no+idea+what+someone+s+going+to+cough+into+a+cup
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+s+probably+really+complex+right
found 1 videos: [['/talks/steven_pinker_human_nature_and_the_blank_slate', '2008']]
selected: /talks/steven_pinker_human_nature_and_the_blank_slate
sleep 3 seconds to avoid blocking
------<1057>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JoeGebbia_2016.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+tell+you+the+story+about+the+time+i+almost+got+kidnapped
found 2 videos: [['/talks/joe_gebbia_how_airbnb_designs_for_trust', '2016'], ['/talks/steven_wise_chimps_have_feelings_and_thoughts_they_should_also_have_rights', '2015']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+trunk+of+a+red+mazda+miata+it+s+the+day+after+graduating+from+design+school
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+m+having+a+yard+sale+and+this+guy+pulls+up+in+this+red+mazda
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+he+starts+looking+through+my+stuff++and+he+buys+a+piece+of+art+that+i+made++and+it+turns+out+he+s+alone+in+town+for+the+night
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=driving+cross+country+on+a+road+trip
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=before+he+goes+into+the+peace+corps++so+i+invite+him+out+for+a+beer
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+he+tells+me+all+about+his+passion+for+making+a+difference+in+the+world
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+it+s+starting+to+get+late+and+i+m+getting+pretty+tired+as+i+motion+for+the+tab++i+make+the+mistake+of+asking+him
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+where+are+you+staying+tonight+and+he+makes+it+worse+by+saying+actually+i+don+t+have+a+place
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+s+going+to+the+peace+corps+but+i+don+t+really+know+if+he+s+going+to+the+peace+corps+and+i+don+t+want+to+end+up+kidnapped+in+the+trunk+of+a+miata+that+s+a+small+trunk
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+then+i+hear+myself+saying+hey+i+have+an+airbed+you+can+stay+on+in+my+living+room
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+voice+in+my+head+goes+wait+what
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+night+i+m+laying+in+bed++i+m+staring+at+the+ceiling+and+thinking
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=oh+my+god++what+have+i+done+there+s+a+complete+stranger+sleeping+in+my+living+room
error: request timeout
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+anxiety+grows+so+much+i+leap+out+of+bed++i+sneak+on+my+tiptoes+to+the+door++and+i+lock+the+bedroom+door
error: request timeout
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+ve+kept+in+touch+ever+since++and+the+piece+of+art+he+bought+at+the+yard+sale+is+hanging+in+his+classroom+he+s+a+teacher+now
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+was+my+first+hosting+experience++and+it+completely+changed+my+perspective
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=maybe+the+people+that+my+childhood+taught+me+to+label+as+strangers
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=were+actually+friends+waiting+to+be+discovered++the+idea
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=gradually+became+natural+to+me+and+when+i+moved+to+san+francisco++i+brought+the+airbed+with+me
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+now+it+s+two+years+later++i+m+unemployed++i+m+almost+broke+my+roommate+moves+out++and+then+the+rent+goes+up
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+i+learn+there+s+a+design+conference+coming+to+town+and+all+the+hotels+are+sold+out+and+i+ve+always+believed+that+turning+fear+into+fun
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+here+s+what+i+pitch+my+best+friend+and+my+new+roommate+brian+chesky
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=brian+thought+of+a+way+to+make+a+few+bucks+turning+our+place+into++designers+bed+and+breakfast++offering+young+designers+who+come+to+town+a+place+to+crash+complete+with+wireless+internet+a+small+desk+space++sleeping+mat+and+breakfast+each+morning
error: request timeout
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+built+a+basic+website+and+airbed+and+breakfast+was+born+three+lucky+guests+got+to+stay+on+a
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=floor+but+they+loved+it++and+so+did+we+i+swear++the+ham+and+swiss+cheese+omelets+we+made+tasted+totally+different+because+we+made+them+for+our+guests
found 1 videos: [['/talks/joe_gebbia_how_airbnb_designs_for_trust', '2016']]
selected: /talks/joe_gebbia_how_airbnb_designs_for_trust
sleep 5 seconds to avoid blocking
------<1058>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JoeKowan_2013S.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+always+had+stage+fright++and+not+just+a+little+bit+it+s+a+big+bit++and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+didn+t+even+matter+until+i+was+twenty+seven+that+s+when+i+started+writing+songs+and+even+then+i+only+played+them+for+myself+just+knowing+my+roommates+were+in+the+same+house+made+me+uncomfortable
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+after+a+couple+of+years+just+writing+songs+wasn+t+enough+i+had+all+these+stories+and+ideas+and+i+wanted+to+share+them+with+people+but+physiologically
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+couldn+t+do+it+i+had+this+irrational+fear
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+the+more+i+wrote++and+the+more+i+practiced+the+more+i+wanted+to+perform+so+on+the+week+of+my+30th+birthday+i+decided+i+was+going+to+go+to+this+local+open
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+put+this+fear+behind+me+well+when+i+got+there+it+was+packed+there+were+like+twenty+people+there
error: request timeout
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+took+a+deep+breath++and+i+signed+up+to+play++and+i+felt+pretty+good++pretty+good
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=until+about+ten+minutes+before+my+turn+when+my+whole+body+rebelled+and+this+wave+of+anxiety+just+washed+over+me
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+when+you+experience+fear+your+sympathetic+nervous+system+kicks+in+so+you+have+a+rush+of
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=your+heart+rate+increases+your+breathing+gets+faster++next+your+non+essential+systems+start+to+shut+down+like+digestion
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+your+mouth+gets+dry+and+blood+is+routed+away+from+your+extremities+so+your+fingers+don+t+work+anymore
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=your+pupils+dilate+your+muscles+contract+your+spidey+sense+tingles+basically
error: request timeout
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+not+conducive+to+performing+folk+music
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+mean++your+nervous+system+is+an+idiot+really+two+hundred+thousand+years+of+human+evolution++and+it+still+can+t+tell+the+difference+between+a+saber+tooth+tiger+and+twenty+folksingers+on+a+tuesday+night+open+mic
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+have+never+been+more+terrified
found 15 videos: [['/talks/amy_cuddy_your_body_language_may_shape_who_you_are', '2012'], ['/talks/joe_kowan_how_i_beat_stage_fright', '2014'], ['/talks/melissa_fleming_a_boat_carrying_500_refugees_sunk_at_sea_the_story_of_two_survivors', '2015'], ['/talks/dyan_denapoli_the_great_penguin_rescue', '2011'], ['/talks/abha_dawesar_life_in_the_digital_now', '2013'], ['/talks/jean_paul_mari_the_chilling_aftershock_of_a_brush_with_death', '2015'], ['/talks/karen_thompson_walker_what_fear_can_teach_us', '2013'], ['/talks/karima_bennoune_when_people_of_muslim_heritage_challenge_fundamentalism', '2014'], ['/talks/matt_kenyon_a_secret_memorial_for_civilian_casualties', '2015'], ['/talks/bruce_aylward_how_we_ll_stop_polio_for_good', '2011'], ['/talks/chelsea_shields_how_i_m_working_for_change_inside_my_church', '2015'], ['/talks/bruce_aylward_humanity_vs_ebola_how_we_could_win_a_terrifying_war', '2015'], ['/talks/gayle_tzemach_lemmon_women_entrepreneurs_example_not_exception', '2012'], ['/talks/georgette_mulheir_the_tragedy_of_orphanages', '2012'], ['/talks/nikolai_begg_a_tool_to_fix_one_of_the_most_dangerous_moments_in_surgery', '2014']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=then+it+was+my+turn++and+somehow+i+get+myself+onto+the+stage++i+start+my+song+i+open+my+mouth+to+sing+the+first+line
found 1 videos: [['/talks/joe_kowan_how_i_beat_stage_fright', '2014']]
selected: /talks/joe_kowan_how_i_beat_stage_fright
sleep 2 seconds to avoid blocking
------<1059>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JoeLandolina_2014U.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+you+guys+to+imagine+that+you+re+a+soldier+running+through+the+battlefield
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+you+re+shot+in+the+leg+with+a+bullet++which+severs+your+femoral+artery+now+this+bleed+is+extremely+traumatic+and+can+kill+you+in+less+than+three+minutes
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=unfortunately+by+the+time+that+a+medic+actually+gets+to+you
found 12 videos: [['/talks/joe_landolina_this_gel_can_make_you_stop_bleeding_instantly', '2014'], ['/talks/wael_ghonim_let_s_design_social_media_that_drives_real_change', '2016'], ['/talks/nicholas_negroponte_a_30_year_history_of_the_future', '2014'], ['/talks/clay_shirky_why_sopa_is_a_bad_idea', '2012'], ['/talks/james_b_glattfelder_who_controls_the_world', '2013'], ['/talks/shaka_senghor_why_your_worst_deeds_don_t_define_you', '2014'], ['/talks/hamish_jolly_a_shark_deterrent_wetsuit_and_it_s_not_what_you_think', '2014'], ['/talks/halla_tomasdottir_it_s_time_for_women_to_run_for_office', '2016'], ['/talks/drew_curtis_how_i_beat_a_patent_troll', '2012'], ['/talks/james_lyne_everyday_cybercrime_and_what_you_can_do_about_it', '2013'], ['/talks/mandy_len_catron_falling_in_love_is_the_easy_part', '2015'], ['/talks/vinay_venkatraman_technology_crafts_for_the_digitally_underserved', '2012']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+the+medic+has+on+his+or+her+belt+can+take+five+minutes+or+more+with+the+application+of+pressure+to+stop+that+type+of+bleed
found 1 videos: [['/talks/joe_landolina_this_gel_can_make_you_stop_bleeding_instantly', '2014']]
selected: /talks/joe_landolina_this_gel_can_make_you_stop_bleeding_instantly
sleep 4 seconds to avoid blocking
------<1060>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JoeLassiter_2016T.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+easy+to+forget+that+last+night+one+billion+people+went+to+sleep+without+access+to+electricity+one+billion+people
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=two+and+a+half+billion+people+did+not+have+access+to+clean+cooking+fuels
found 1 videos: [['/talks/joe_lassiter_we_need_nuclear_power_to_solve_climate_change', '2016']]
selected: /talks/joe_lassiter_we_need_nuclear_power_to_solve_climate_change
sleep 2 seconds to avoid blocking
------<1061>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JoelLevine_2009X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=four+point+six+billion+years+of+history+in+eighteen+minutes
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+three+hundred+million+years+per+minute++let+s+start+with+the+first+photograph
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+new+york+times+wrote+in+its+editorial
found 4 videos: [['/talks/joel_levine_why_we_need_to_go_back_to_mars', '2010'], ['/talks/bruce_mccall_what_is_retro_futurism', '2009'], ['/talks/maira_kalman_the_illustrated_woman', '2007'], ['/talks/jonathan_harris_the_web_s_secret_stories', '2007']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=mars+is+uninteresting+it+s+a+dead+world+nasa+should+not+spend+any+time+or+effort+studying+mars+anymore
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=leaders+in+washington+at+nasa+headquarters+knew+better
found 1 videos: [['/talks/joel_levine_why_we_need_to_go_back_to_mars', '2010']]
selected: /talks/joel_levine_why_we_need_to_go_back_to_mars
sleep 3 seconds to avoid blocking
------<1062>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JoelSelanikio_2013X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+an+old+joke+about+a+cop+who+s+walking+his+beat+in+the+middle+of+the+night++and+he+comes+across+a+guy+under+a+street+lamp+who+s+looking+at+the+ground+and+moving+from+side+to+side+and+the+cop+asks+him
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+he+s+doing+the+guys+says+he+s+looking+for+his+keys++so+the+cop
found 1 videos: [['/talks/david_birch_a_new_way_to_stop_identity_theft', '2012']]
selected: /talks/david_birch_a_new_way_to_stop_identity_theft
sleep 3 seconds to avoid blocking
------<1063>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JoeMadiath_2014G.stm
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+proper+to+speak+about+food+in+all+its+forms+all+its+colors++aromas
found 1 videos: [['/talks/joe_madiath_better_toilets_better_life', '2015']]
selected: /talks/joe_madiath_better_toilets_better_life
sleep 1 seconds to avoid blocking
------<1064>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JoeSabia_2011S.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ladies+and+gentlemen+gather+around+i+would+love+to+share+with+you+a+story
found 1 videos: [['/talks/joe_sabia_the_technology_of_storytelling', '2011']]
selected: /talks/joe_sabia_the_technology_of_storytelling
sleep 5 seconds to avoid blocking
------<1065>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JoeSmith_2012X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=two+hundred+thirty+thousand+pounds+of+paper+towels+are+used+by+americans
found 1 videos: [['/talks/joe_smith_how_to_use_a_paper_towel', '2012']]
selected: /talks/joe_smith_how_to_use_a_paper_towel
sleep 2 seconds to avoid blocking
------<1066>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JohannaBlakley_2009X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+heard+this+amazing+story+about+miuccia+prada+she+s+an+italian+fashion+designer+she+goes+to+this+vintage+store+in+paris+with+a+friend+of+hers+she+s+rooting+around+she+finds+this+one+jacket+by+balenciaga
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=she+s+turning+it+inside+out+she+s+looking+at+the+seams+she+s+looking+at+the+construction+her+friend+says+buy+it+already+she
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=said+i+ll+buy+it+but+i+m+also+going+to+replicate+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+the+academics+in+this+audience+may+think+well+that+sounds+like+plagiarism
found 1 videos: [['/talks/johanna_blakley_lessons_from_fashion_s_free_culture', '2010']]
selected: /talks/johanna_blakley_lessons_from_fashion_s_free_culture
sleep 1 seconds to avoid blocking
------<1067>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JohannaBlakley_2010W.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=make+an+argument+today+that+may+seem+a+little+bit+crazy+social+media+and+the+end+of+gender++let+me+connect+the+dots
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+argue+today+that+the+social+media+applications+that+we+all+know+and+love+or+love+to+hate
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+actually+going+to+help+free+us+from+some+of+the+absurd+assumptions+that+we+have+as+a+society+about+gender
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+that+social+media+is+actually+going+to+help+us+dismantle
found 1 videos: [['/talks/johanna_blakley_social_media_and_the_end_of_gender', '2011']]
selected: /talks/johanna_blakley_social_media_and_the_end_of_gender
sleep 3 seconds to avoid blocking
------<1068>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JohannaBlakley_2010X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+heard+this+amazing+story+about+miuccia+prada+she+s+an+italian+fashion+designer+she+goes+to+this+vintage+store+in+paris+with+a+friend+of+hers++she+s+rooting+around+she+finds+this+one+jacket+by+balenciaga
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=she+loves+it+she+s+turning+it+inside+out
found 1 videos: [['/talks/morgan_spurlock_the_greatest_ted_talk_ever_sold', '2011']]
selected: /talks/morgan_spurlock_the_greatest_ted_talk_ever_sold
sleep 3 seconds to avoid blocking
------<1069>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JohannHari_2015G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+my+earliest+memories+is+of+trying+to+wake+up+one+of+my+relatives+and+not+being+able+to
found 1 videos: [['/talks/johann_hari_everything_you_think_you_know_about_addiction_is_wrong', '2015']]
selected: /talks/johann_hari_everything_you_think_you_know_about_addiction_is_wrong
sleep 5 seconds to avoid blocking
------<1070>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JohanRockstroem_2010G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=unprecedented+pressure+on+the+systems+on+earth
found 2 videos: [['/talks/johan_rockstrom_let_the_environment_guide_our_development', '2010'], ['/talks/john_delaney_wiring_an_interactive_ocean', '2010']]
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+perhaps+surprising+to+you+it+s+also+part+of+the+good+news+we+re+the+first+generation+thanks+to+science+to+be+informed+that+we+may+be+undermining+the+stability+and+the+ability
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ability+of+planet+earth+to+support+human+development+as+we+know+it+it
found 3 videos: [['/talks/johan_rockstrom_let_the_environment_guide_our_development', '2010'], ['/talks/jane_poynter_life_in_biosphere_2', '2009'], ['/talks/penelope_boston_there_might_just_be_life_on_mars', '2008']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+also+good+news+because+the+planetary+risks+we+re+facing+are+so+large+that+business+as+usual+is+not+an+option
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+fact+we+re+in+a+phase+where+transformative+change+is+necessary+which+opens+the+window+for+innovation+for+new+ideas+and+new+paradigms
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+a+scientific+journey+on+the+challenges+facing+humanity+in+the+global+phase+of+sustainability+on+this+journey+i+d+like+to+bring+apart+from+yourselves+a+good+friend
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+stakeholder+who+s+always+absent+when+we+deal+with+the+negotiations+on+environmental+issues++a+stakeholder+who+refuses+to+compromise
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=planet+earth+so+i+thought+i+d+bring+her+with+me+today+on+stage+to+have+her+as+a+witness+of
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+humbly+reminds+us+of+the+period+of+grace+we+ve+had+over+the+past+ten+thousand+years
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+the+living+conditions+on+the+planet+over+the+last+one+hundred+thousand+years+it
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+a+very+important+period+it+s+roughly+half+the+period+when+we+ve+been+fully+modern+humans+on+the+planet+we+ve+had+the+same+roughly+abilities+that+developed+civilizations+as+we+know+it
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+the+environmental+conditions+on+the+planet+here+used+as+a+proxy
found 1 videos: [['/talks/johan_rockstrom_let_the_environment_guide_our_development', '2010']]
selected: /talks/johan_rockstrom_let_the_environment_guide_our_development
sleep 2 seconds to avoid blocking
------<1071>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JohanRockstrom_2010G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+live+on+a+human+dominated+planet+putting+unprecedented+pressure+on+the+systems+on+earth+this+is+bad+news
found 1 videos: [['/talks/johan_rockstrom_let_the_environment_guide_our_development', '2010']]
selected: /talks/johan_rockstrom_let_the_environment_guide_our_development
sleep 5 seconds to avoid blocking
------<1072>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JohnBohannon_2011X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=good+afternoon+as+you+re+all+aware+we+face+difficult+economic+times+i+come+to+you+with+a+modest+proposal
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+easing+the+financial+burden+this+idea+came+to+me+while+talking+to+a+physicist+friend+of+mine+at+mit+he+was+struggling+to+explain
found 1 videos: [['/talks/john_bohannon_dance_vs_powerpoint_a_modest_proposal', '2011']]
selected: /talks/john_bohannon_dance_vs_powerpoint_a_modest_proposal
sleep 5 seconds to avoid blocking
------<1073>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JohnDelaney_2010Z.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+a+moment+what+i+need+to+do+is+project+something+on+the+screen+of+your+imagination
found 4 videos: [['/talks/cynthia_breazeal_the_rise_of_personal_robots', '2011'], ['/talks/john_delaney_wiring_an_interactive_ocean', '2010'], ['/talks/franco_sacchi_a_tour_of_nollywood_nigeria_s_booming_film_industry', '2008'], ['/talks/mark_raymond_victims_of_the_city', '2012']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+re+in+17th+century+japan+on+the+west+coast++and+a+little+wizened
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=midnight+to+the+crest+of+a+small+hill+he+arrives+on+the+small+hill+dripping+with+water
found 1 videos: [['/talks/john_delaney_wiring_an_interactive_ocean', '2010']]
selected: /talks/john_delaney_wiring_an_interactive_ocean
sleep 2 seconds to avoid blocking
------<1074>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JohnDoerr_2007.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+really+scared++i+don+t+think+we+re+going+to+make+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=probably+by+now+most+of+you+have+seen+al+gore+s+amazing+talk+shortly+after+i+saw+that+we+had+some
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=friends+over+for+dinner+with+the+family++the+conversation+turned
found 3 videos: [['/talks/marc_pachter_the_art_of_the_interview', '2009'], ['/talks/richard_branson_life_at_30_000_feet', '2007'], ['/talks/john_doerr_salvation_and_profit_in_greentech', '2007']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+global+warming++and+everybody+agreed
found 5 videos: [['/talks/john_doerr_salvation_and_profit_in_greentech', '2007'], ['/talks/kary_mullis_play_experiment_discover', '2009'], ['/talks/gordon_brown_global_ethic_vs_national_interest', '2009'], ['/talks/al_gore_new_thinking_on_the_climate_crisis', '2008'], ['/talks/dan_dennett_let_s_teach_religion_all_religion_in_schools', '2006']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+a+real+problem+we+ve+got+a+climate+crisis++so+we+went+around+the+table+to+talk+about+what+we+should+do
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+conversation+came+to+my++15+year+old+daughter++mary+she+said+i+agree+with+everything+that+s+been+said
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+scared+and+i+m+angry
found 1 videos: [['/talks/maira_kalman_the_illustrated_woman', '2007']]
selected: /talks/maira_kalman_the_illustrated_woman
sleep 3 seconds to avoid blocking
------<1075>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JohnFrancis_2008.stm
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thank+you+for+being+here+and+i+say+thank+you+for+being+here+because
found 6 videos: [['/talks/laura_trice_remember_to_say_thank_you', '2008'], ['/talks/chris_abani_on_humanity', '2008'], ['/talks/maz_jobrani_did_you_hear_the_one_about_the_iranian_american', '2010'], ['/talks/natalie_merchant_singing_old_poems_to_life', '2010'], ['/talks/john_maeda_designing_for_simplicity', '2007'], ['/talks/zeresenay_alemseged_the_search_for_humanity_s_roots', '2007']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+silent+for+seventeen+years+and+the+first+words+that+i+spoke+were+in
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+earth+day+and+my+family+and+friends+had+gathered+there+to+hear+me+speak++and
found 1 videos: [['/talks/john_francis_walk_the_earth_my_17_year_vow_of_silence', '2008']]
selected: /talks/john_francis_walk_the_earth_my_17_year_vow_of_silence
sleep 4 seconds to avoid blocking
------<1076>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JohnGerzema_2009X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thirteen+trillion+dollars+in+wealth+has+evaporated+over+the+course+of+the+last+two+years
found 1 videos: [['/talks/john_gerzema_the_post_crisis_consumer', '2009']]
selected: /talks/john_gerzema_the_post_crisis_consumer
sleep 3 seconds to avoid blocking
------<1077>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JohnGrahamCumming_2012X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+about+is+what+i+call+the+greatest+machine+that+never+was+it+was+a+machine+that+was+never+built++and+yet++it+will+be+built+it+was+a+machine+that+was+designed
found 1 videos: [['/talks/john_graham_cumming_the_greatest_machine_that_never_was', '2012']]
selected: /talks/john_graham_cumming_the_greatest_machine_that_never_was
sleep 5 seconds to avoid blocking
------<1078>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JohnGreen_2012X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+a+map+of+new+york+state+that+was+made+in+one+thousand
found 12 videos: [['/talks/joel_levine_why_we_need_to_go_back_to_mars', '2010'], ['/talks/noah_wilson_rich_every_city_needs_healthy_honey_bees', '2012'], ['/talks/aaron_koblin_visualizing_ourselves_with_crowd_sourced_data', '2011'], ['/talks/bobby_ghosh_why_global_jihad_is_losing', '2012'], ['/talks/naif_al_mutawa_superheroes_inspired_by_islam', '2010'], ['/talks/adam_ostrow_after_your_final_status_update', '2011'], ['/talks/io_tillett_wright_fifty_shades_of_gay', '2013'], ['/talks/jeremy_gilley_one_day_of_peace', '2011'], ['/talks/edward_snowden_here_s_how_we_take_back_the_internet', '2014'], ['/talks/neil_macgregor_2600_years_of_history_in_one_object', '2012'], ['/talks/rachel_botsman_the_currency_of_the_new_economy_is_trust', '2012'], ['/talks/bran_ferren_to_create_for_the_ages_let_s_combine_art_and_engineering', '2014']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=nine+hundred+and+thirty+seven+by+the+general+drafting+company+it+s+an+extremely+famous+map+among+cartography+nerds+because+down+here+at+the+bottom+of+the+catskill+mountains+there+is+a+little+town+called+roscoe+actually+this+will+go+easier+if+i+just+put+it+up+here
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+right+above+roscoe+is+rockland+new+york
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+right+above+that+is+the+tiny+town+of+agloe+new+york+agloe+new+york+is+very+famous+to+cartographers+because+it+s+a+paper+town+it+s+also
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=known+as+a+copyright+trap++mapmakers+because+my+map+of+new+york+and+your+map+of+new+york+are+going+to+look+very+similar+on+account+of+the+shape+of
error: request timeout
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=often+mapmakers+will+insert+fake+places
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=onto+their+maps+in+order+to+protect+their+copyright+because+then+if+my+fake+place+shows+up+on+your+map+i+can+be+well+and+truly+sure+that+you+have+robbed+me
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+a+scrabblization+of+the+initials+of+the+two+guys+who+made+this+map+ernest
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+it+at+the+same+exact+intersection+of+two+dirt+roads+in+the+middle+of+nowhere+well
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+imagine+the+delight+over+at+general+drafting
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+immediately+call+rand+mcnally++and+they+say+we+ve+caught+you+we+made+agloe+new+york+up+it+is+a+fake+place+it+s+a+paper+town+we+re+going+to+sue+your+pants
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+that+intersection+of+two+dirt+roads
found 2 videos: [['/talks/jonathan_foley_the_other_inconvenient_truth', '2012'], ['/talks/natalie_jeremijenko_the_art_of_the_eco_mindshift', '2010']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+middle+of+nowhere++expecting+there+to+be+a+place+called+agloe+someone+built+a+place+called+agloe+new+york+it
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=had+a+gas+station+a+general+store+two+houses+at+its+peak
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+is+of+course+a+completely+irresistible+metaphor+to+a+novelist+because+we+would+all+like+to+believe+that+the+stuff+that+we+write+down+on+paper
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=can+change+the+actual+world+in+which+we+re+actually+living+which+is+why+my+third+book+is+called+paper+towns+but+what+interests+me+ultimately+more
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=than+the+medium+in+which+this+happened+is+the+phenomenon+itself
found 2 videos: [['/talks/paddy_ashdown_the_global_power_shift', '2012'], ['/talks/jonas_eliasson_how_to_solve_traffic_jams', '2012']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+easy+enough+to+say+that+the+world+shapes+our+maps+of+the+world+right+like+the+overall+shape+of+the
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=world+is+obviously+going+to+affect+our+maps+but+what+i+find+a+lot+more+interesting+is+the+way
found 5 videos: [['/talks/allan_jones_a_map_of_the_brain', '2011'], ['/talks/elon_musk_the_mind_behind_tesla_spacex_solarcity', '2013'], ['/talks/simon_lewis_don_t_take_consciousness_for_granted', '2011'], ['/talks/larry_page_where_s_google_going_next', '2014'], ['/talks/lauren_hodge_shree_bose_naomi_shah_award_winning_teenage_science_in_action', '2012']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+the+manner+in+which+we+map+the+world+changes+the+world+because+the+world+would+truly+be+a+different+place+if+north+were+down+and+the+world+would+be+a+truly
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=different+place+if+alaska+and+russia+weren+t+on+opposite+sides+of+the+map+and+the+world+would+be+a+different+place+if+we+projected+europe+to+show+it+in+its+actual
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=size+the+world+is+changed+by+our+maps+of+the+world+the+way+that+we+choose
found 12 videos: [['/talks/roz_savage_why_i_m_rowing_across_the_pacific', '2010'], ['/talks/mick_cornett_how_an_obese_town_lost_a_million_pounds', '2014'], ['/talks/aris_venetikidis_making_sense_of_maps', '2012'], ['/talks/rives_reinventing_the_encyclopedia_game', '2012'], ['/talks/rose_george_inside_the_secret_shipping_industry', '2013'], ['/talks/charles_robertson_africa_s_next_boom', '2013'], ['/talks/suzana_herculano_houzel_what_is_so_special_about_the_human_brain', '2013'], ['/talks/aaron_koblin_visualizing_ourselves_with_crowd_sourced_data', '2011'], ['/talks/nancy_duarte_the_secret_structure_of_great_talks', '2012'], ['/talks/hannah_fry_is_life_really_that_complex', '2012'], ['/talks/marcel_dicke_why_not_eat_insects', '2010'], ['/talks/naomi_oreskes_why_we_should_trust_scientists', '2014']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sort+of+our+personal+cartographic+enterprise+also+shapes+the+map+of+our+lives++and+that+in+turn+shapes+our+lives++i+believe+that+what+we+map+changes+the+life
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+do+believe+that+while+maps+don+t+show+you+where+you+will+go+in+your+life
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+show+you+where+you+might+go+you+very+rarely+go+to+a+place+that+isn+t+on+your+personal+map++so+i+was+a+really+terrible+student+when+i+was+a+kid
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+consistently+in+the+low+2s
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+think+the+reason+that+i+was+such+a+terrible+student+is+that+i+felt+like+education+was+just+a+series+of+hurdles+that+had+been+erected+before+me+and+i+had+to+jump+over
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+order+to+achieve+adulthood++and+i+didn+t+really+want+to+jump+over+these+hurdles+because+they+seemed+completely+arbitrary+so+i+often+wouldn+t+and+then+people+would+threaten+me+you+know+they+d+threaten+me+with+this+going+on+[+my+]+permanent+record
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=never+get+a+good+job+i+didn+t+want+a+good+job
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+far+as+i+could+tell+at+eleven+or+twelve+years+old+like+people+with+good+jobs+woke+up+very+early+in+the+morning
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+men+who+had+good+jobs+one+of+the+first+things+they+did
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+tie+a+strangulation+item+of+clothing+around+their+necks+they+literally+put+nooses+on+themselves+and+then+they+went+off+to+their+jobs+whatever+they+were
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+not+a+recipe+for+a+happy+life
found 1 videos: [['/talks/danny_hillis_back_to_the_future_of_1994', '2012']]
selected: /talks/danny_hillis_back_to_the_future_of_1994
sleep 1 seconds to avoid blocking
------<1079>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JohnHardy_2010G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+grew+up+in+a+very+small+village+in+canada++and+i+m+an+undiagnosed
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+had+a+really+hard+time+in+school+in+fact+my+mother+told+me+eventually+that+i+was+the+little+kid+in+the+village+who+cried
found 1 videos: [['/talks/john_hardy_my_green_school_dream', '2010']]
selected: /talks/john_hardy_my_green_school_dream
sleep 5 seconds to avoid blocking
------<1080>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JohnHockenberry_2012.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+dad+was+which+is+kind+of+an+interesting+way+to+grow+up+i+had+to+figure+out+what+it+is+my+dad
found 19 videos: [['/talks/bill_ford_a_future_beyond_traffic_gridlock', '2011'], ['/talks/verna_myers_how_to_overcome_our_biases_walk_boldly_toward_them', '2014'], ['/talks/andrew_stanton_the_clues_to_a_great_story', '2012'], ['/talks/bill_and_melinda_gates_why_giving_away_our_wealth_has_been_the_most_satisfying_thing_we_ve_done', '2014'], ['/talks/john_hockenberry_we_are_all_designers', '2012'], ['/talks/ken_goldberg_4_lessons_from_robots_about_being_human', '2012'], ['/talks/roger_doiron_my_subversive_garden_plot', '2011'], ['/talks/molly_stevens_a_new_way_to_grow_bone', '2014'], ['/talks/ethan_zuckerman_listening_to_global_voices', '2010'], ['/talks/roz_savage_why_i_m_rowing_across_the_pacific', '2010'], ['/talks/simon_lewis_don_t_take_consciousness_for_granted', '2011'], ['/talks/stuart_firestein_the_pursuit_of_ignorance', '2013'], ['/talks/kwame_anthony_appiah_is_religion_good_or_bad_this_is_a_trick_question', '2014'], ['/talks/aaron_koblin_visualizing_ourselves_with_crowd_sourced_data', '2011'], ['/talks/shea_hembrey_how_i_became_100_artists', '2011'], ['/talks/thandiwe_newton_embracing_otherness_embracing_myself', '2011'], ['/talks/charles_hazlewood_trusting_the_ensemble', '2011'], ['/talks/sarah_kay_if_i_should_have_a_daughter', '2011'], ['/talks/danny_hillis_back_to_the_future_of_1994', '2012']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=did+and+why+it+was+important++dad+talked+a+lot+about+bad+design+when+we+were+growing
found 3 videos: [['/talks/john_hockenberry_we_are_all_designers', '2012'], ['/talks/naif_al_mutawa_superheroes_inspired_by_islam', '2010'], ['/talks/bruce_schneier_the_security_mirage', '2011']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=up+you+know+bad+design+is+is+just+people+not+thinking+john+he+would+say
found 10 videos: [['/talks/john_maeda_how_art_technology_and_design_inform_creative_leaders', '2012'], ['/talks/john_hockenberry_we_are_all_designers', '2012'], ['/talks/bran_ferren_to_create_for_the_ages_let_s_combine_art_and_engineering', '2014'], ['/talks/geoffrey_canada_our_failing_schools_enough_is_enough', '2013'], ['/talks/naif_al_mutawa_superheroes_inspired_by_islam', '2010'], ['/talks/danny_hillis_understanding_cancer_through_proteomics', '2011'], ['/talks/david_kelley_how_to_build_your_creative_confidence', '2012'], ['/talks/shekhar_kapur_we_are_the_stories_we_tell_ourselves', '2010'], ['/talks/scott_summit_beautiful_artificial_limbs', '2012'], ['/talks/andrew_stanton_the_clues_to_a_great_story', '2012']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=whenever+a+kid+would+be+injured+by+a+rotary+lawn+mower+or+say+a+typewriter+ribbon+would+get+tangled+or+an+eggbeater+would+get+jammed+in+the+kitchen++you+know
found 1 videos: [['/talks/john_hockenberry_we_are_all_designers', '2012']]
selected: /talks/john_hockenberry_we_are_all_designers
sleep 4 seconds to avoid blocking
------<1081>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JohnHodgman_2008.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=went+to+lunch+at+los+alamos+national+laboratory+and+joined+some+colleagues+there+and+asked+them+a+question
found 1 videos: [['/talks/john_hodgman_aliens_love_where_are_they', '2008']]
selected: /talks/john_hodgman_aliens_love_where_are_they
sleep 1 seconds to avoid blocking
------<1082>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JohnHodgman_2012.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+unpack+for+you+three+examples+of+iconic
found 2 videos: [['/talks/john_hodgman_design_explained', '2012'], ['/talks/vikram_patel_mental_health_for_all_by_involving_all', '2012']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=design+and+it+makes+perfect+sense+that+i+should+be+the+one+to+do+it+because+i+have+a+bachelor+s+degree+in+literature
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+m+also+a+famous+minor+television+personality
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+an+avid+collector+of+design+within+reach+catalogs+so
found 1 videos: [['/talks/john_hodgman_design_explained', '2012']]
selected: /talks/john_hodgman_design_explained
sleep 4 seconds to avoid blocking
------<1083>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JohnHunter_2011.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=very+fortunate+to+be+here+i+feel+so+fortunate
found 16 videos: [['/talks/annie_lennox_why_i_am_an_hiv_aids_activist', '2010'], ['/talks/leonard_susskind_my_friend_richard_feynman', '2011'], ['/talks/matt_killingsworth_want_to_be_happier_stay_in_the_moment', '2012'], ['/talks/his_holiness_the_karmapa_the_technology_of_the_heart', '2010'], ['/talks/susan_lim_transplant_cells_not_organs', '2011'], ['/talks/shimon_schocken_what_a_bike_ride_can_teach_you', '2010'], ['/talks/roger_ebert_remaking_my_voice', '2011'], ['/talks/simon_lewis_don_t_take_consciousness_for_granted', '2011'], ['/talks/yang_lan_the_generation_that_s_remaking_china', '2011'], ['/talks/lisa_kristine_photos_that_bear_witness_to_modern_slavery', '2012'], ['/talks/ron_mccallum_how_technology_allowed_me_to_read', '2013'], ['/talks/raghava_kk_my_5_lives_as_an_artist', '2010'], ['/talks/nancy_etcoff_happiness_and_its_surprises', '2009'], ['/talks/boghuma_kabisen_titanji_ethical_riddles_in_hiv_research', '2013'], ['/talks/emily_pilloton_teaching_design_for_change', '2010'], ['/talks/david_damberger_what_happens_when_an_ngo_admits_failure', '2011']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+been+so+impressed+by+the+kindness+expressed+to+me
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+called+my+wife+leslie+and+i+said+you+know++there+s+so+many+good+people+trying+to+do+so+much+good+it+feels+like+i+ve+landed+in+a+colony+of+angels
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+a+true+feeling+but
found 4 videos: [['/talks/margaret_wertheim_the_beautiful_math_of_coral', '2009'], ['/talks/regina_dugan_from_mach_20_glider_to_hummingbird_drone', '2012'], ['/talks/bruce_feiler_the_council_of_dads', '2011'], ['/talks/jason_pontin_can_technology_solve_our_big_problems', '2013']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+me+get+to+the+talk+i+see+the+clock+is+running
found 11 videos: [['/talks/fiorenzo_omenetto_silk_the_ancient_material_of_the_future', '2011'], ['/talks/john_hunter_teaching_with_the_world_peace_game', '2011'], ['/talks/erica_frenkel_the_universal_anesthesia_machine', '2012'], ['/talks/bruce_feiler_the_council_of_dads', '2011'], ['/talks/srdja_popovic_how_to_topple_a_dictator', '2011'], ['/talks/charles_fleischer_all_things_are_moleeds', '2010'], ['/talks/ethan_zuckerman_listening_to_global_voices', '2010'], ['/talks/leslie_t_chang_the_voices_of_china_s_workers', '2012'], ['/talks/jake_barton_the_museum_of_you', '2013'], ['/talks/courtney_e_martin_this_isn_t_her_mother_s_feminism', '2011'], ['/talks/tim_jackson_an_economic_reality_check', '2010']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+a+public+school+teacher
found 1 videos: [['/talks/raghava_kk_what_s_your_200_year_plan', '2012']]
selected: /talks/raghava_kk_what_s_your_200_year_plan
sleep 1 seconds to avoid blocking
------<1084>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JohnKasaona_2010.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=god+gave+the+white+man+a+watch+and+gave+the+black+man+time
found 14 videos: [['/talks/mallika_sarabhai_dance_to_change_the_world', '2009'], ['/talks/john_kasaona_how_poachers_became_caretakers', '2010'], ['/talks/elif_shafak_the_politics_of_fiction', '2010'], ['/talks/peter_hirshberg_the_web_is_more_than_better_tv', '2008'], ['/talks/beeban_kidron_the_shared_wonder_of_film', '2012'], ['/talks/bernie_dunlap_the_life_long_learner', '2008'], ['/talks/natalie_warne_being_young_and_making_an_impact', '2011'], ['/talks/morgan_spurlock_the_greatest_ted_talk_ever_sold', '2011'], ['/talks/john_hunter_teaching_with_the_world_peace_game', '2011'], ['/talks/bruce_bueno_de_mesquita_a_prediction_for_the_future_of_iran', '2009'], ['/talks/martin_hanczyc_the_line_between_life_and_not_life', '2011'], ['/talks/evgeny_morozov_how_the_net_aids_dictatorships', '2009'], ['/talks/markham_nolan_how_to_separate_fact_and_fiction_online', '2012'], ['/talks/david_blaine_how_i_held_my_breath_for_17_minutes', '2010']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+how+is+it+possible+for+a+man+with+so+much+time+to+tell+his+story+in+eighteen+minutes
found 1 videos: [['/talks/nancy_duarte_the_secret_structure_of_great_talks', '2012']]
selected: /talks/nancy_duarte_the_secret_structure_of_great_talks
sleep 1 seconds to avoid blocking
------<1085>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JohnKoenig_2016X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=today+i+want+to+talk+about+the+the+meaning+of+words
found 15 videos: [['/talks/john_koenig_beautiful_new_words_to_describe_obscure_emotions', '2017'], ['/talks/vincent_cochetel_i_was_held_hostage_for_317_days_here_s_what_i_thought_about', '2015'], ['/talks/julian_treasure_how_to_speak_so_that_people_want_to_listen', '2014'], ['/talks/anne_curzan_what_makes_a_word_real', '2014'], ['/talks/fei_fei_li_how_we_re_teaching_computers_to_understand_pictures', '2015'], ['/talks/debra_jarvis_yes_i_survived_cancer_but_that_doesn_t_define_me', '2014'], ['/talks/oscar_schwartz_can_a_computer_write_poetry', '2016'], ['/talks/rutger_bregman_poverty_isn_t_a_lack_of_character_it_s_a_lack_of_cash', '2017'], ['/talks/luma_mufleh_don_t_feel_sorry_for_refugees_believe_in_them', '2017'], ['/talks/jakob_magolan_a_crash_course_in_organic_chemistry', '2018'], ['/talks/esther_perel_rethinking_infidelity_a_talk_for_anyone_who_has_ever_loved', '2015'], ['/talks/adam_carroll_what_playing_monopoly_with_real_money_taught_me_about_my_kids_and_humanity', '2018'], ['/talks/genevieve_von_petzinger_why_are_these_32_symbols_found_in_ancient_caves_all_over_europe', '2015'], ['/talks/courtney_e_martin_the_new_american_dream', '2016'], ['/talks/helen_fisher_technology_hasn_t_changed_love_here_s_why', '2016']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+we+define+them+and+how+they++almost+as+revenge
found 5 videos: [['/talks/john_koenig_beautiful_new_words_to_describe_obscure_emotions', '2017'], ['/talks/robyn_stein_deluca_the_good_news_about_pms', '2015'], ['/talks/kai_fu_lee_how_ai_can_save_our_humanity', '2018'], ['/talks/ione_wells_how_we_talk_about_sexual_assault_online', '2016'], ['/talks/deeyah_khan_what_we_don_t_know_about_europe_s_muslim_kids', '2017']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=define+us+the+english+language+is+a+magnificent+sponge++i+love+the+english+language+i+m+glad+that+i+speak+it++but+for+all+that+it+has+a+lot+of+holes
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+greek+there+s+a+word+lachesism+which+is+the+hunger+for
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+you+see+a+a+thunderstorm+on+the+horizon
found 1 videos: [['/talks/john_koenig_beautiful_new_words_to_describe_obscure_emotions', '2017']]
selected: /talks/john_koenig_beautiful_new_words_to_describe_obscure_emotions
sleep 2 seconds to avoid blocking
------<1086>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JohnLaGrou_2009.stm
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=has+saved+perhaps+hundreds+of+thousands+of+lives+worldwide+but+smoke+alarms+don+t+prevent+fires+every+year+in+the+usa
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=over+twenty+thousand+are+killed+or+injured+with+three+hundred+and+fifty+thousand+home+fires+and+one+of+the+main+causes+of+all+these+fires+is+electricity
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+if+we+could+prevent+electrical+fires+before+they+start+well+a+couple+of+friends+and+i+figured+out+how+to+do+this
found 1 videos: [['/talks/john_la_grou_a_plug_for_smart_power_outlets', '2009']]
selected: /talks/john_la_grou_a_plug_for_smart_power_outlets
sleep 4 seconds to avoid blocking
------<1087>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JohnLegend_2016.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+free+america+we+ve+done+a+listening+and+learning+tour++we+visited
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+only+with+prosecutors+but+with+legislators+with+inmates+in+our
found 2 videos: [['/talks/john_legend_redemption_song', '2016'], ['/talks/eve_abrams_the_human_stories_behind_mass_incarceration', '2018']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=state+and+local+prisons++we+ve+gone+to+immigration+detention+centers
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+ve+met+a+lot+of+people+and
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=can+happen+in+our+prisons+our+jails
found 12 videos: [['/talks/john_legend_redemption_song', '2016'], ['/talks/salil_dudani_how_jails_extort_the_poor', '2017'], ['/talks/deanna_van_buren_what_a_world_without_prisons_could_look_like', '2018'], ['/talks/anne_milgram_why_smart_statistics_are_the_key_to_fighting_crime', '2014'], ['/talks/adam_foss_a_prosecutor_s_vision_for_a_better_justice_system', '2016'], ['/talks/will_potter_the_secret_us_prisons_you_ve_never_heard_of_before', '2015'], ['/talks/eve_abrams_the_human_stories_behind_mass_incarceration', '2018'], ['/talks/robin_steinberg_what_if_we_ended_the_injustice_of_bail', '2018'], ['/talks/ronald_sullivan_how_i_help_free_innocent_people_from_prison', '2017'], ['/talks/hubertus_knabe_the_dark_secrets_of_a_surveillance_state', '2014'], ['/talks/jessica_ladd_the_reporting_system_that_sexual_assault_survivors_want', '2016'], ['/talks/lindsay_malloy_why_teens_confess_to_crimes_they_didn_t_commit', '2018']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+our+immigration+detention+centers++giving+hope+to+those+who+want+to+create+a+better+life+after+serving+their+time
found 1 videos: [['/talks/john_legend_redemption_song', '2016']]
selected: /talks/john_legend_redemption_song
sleep 5 seconds to avoid blocking
------<1088>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JohnLloyd_2009G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=more+of+it+than+you+think+actually++everything+i+would+say+everything+that+matters+except+every+thing
found 18 videos: [['/talks/laurie_garrett_lessons_from_the_1918_flu', '2009'], ['/talks/liz_coleman_a_call_to_reinvent_liberal_arts_education', '2009'], ['/talks/beau_lotto_optical_illusions_show_how_we_see', '2009'], ['/talks/john_lloyd_an_inventory_of_the_invisible', '2009'], ['/talks/robert_lang_the_math_and_magic_of_origami', '2008'], ['/talks/david_deutsch_a_new_way_to_explain_explanation', '2009'], ['/talks/mark_bittman_what_s_wrong_with_what_we_eat', '2008'], ['/talks/isaac_mizrahi_fashion_and_creativity', '2008'], ['/talks/luca_turin_the_science_of_scent', '2008'], ['/talks/george_smoot_the_design_of_the_universe', '2008'], ['/talks/dean_kamen_to_invent_is_to_give', '2007'], ['/talks/scott_mccloud_the_visual_magic_of_comics', '2009'], ['/talks/neil_pasricha_the_3_a_s_of_awesome', '2011'], ['/talks/michael_pollan_a_plant_s_eye_view', '2008'], ['/talks/paula_scher_great_design_is_serious_not_solemn', '2009'], ['/talks/anil_ananthaswamy_what_it_takes_to_do_extreme_astrophysics', '2011'], ['/talks/dave_eggers_my_wish_once_upon_a_school', '2008'], ['/talks/courtney_e_martin_this_isn_t_her_mother_s_feminism', '2011']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+can+see+matter++but+we+can+t+see+what+s+the+matter++as+in+this+cryptic+sentence+i+found+in+the+guardian+recently
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+marriage+suffered+a+setback+in+one+thousand+nine+hundred+and+sixty+five+when+the+husband+was+killed+by+the+wife
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+a+world+of+invisibility+there+isn+t+there
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+can+see+the+stars+and+the+planets+but+we+can+t+see+what+holds+them+apart+or+what+draws+them+together
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+matter+as+with+people+we+see+only+the+skin+of+things+we+can+t+see+into+the+engine+room+we+can+t+see+what+makes+people+tick
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+least+not+without+difficulty++and+the+closer+we+look+at+anything
error: request timeout
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+fact+if+you+look+really+closely+at+stuff+if+you+look+at+the+basic+substructure+of+matter++there+isn+t+anything+there+electrons+disappear+in+a+kind+of+fuzz+and+there+is+only+energy
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+everything+that+matters+that+s+important+is+invisible
found 1 videos: [['/talks/tom_shannon_john_hockenberry_the_painter_and_the_pendulum', '2010']]
selected: /talks/tom_shannon_john_hockenberry_the_painter_and_the_pendulum
sleep 4 seconds to avoid blocking
------<1089>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JohnMaeda_2007.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+a+great+way+to+start++first+of+all+i+ve+been+watching+this+trend+where+we+have+these+books+like+such+and+such+for+dummies
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+other+books+like+this+you+know+there+s+also+something+called+the+complete+idiot+s+guide+there
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+a+sort+of+business+model+around+being+stupid+in+some+sense++we+like+to+have+technology+make+us+feel+bad+for+some+strange+reason++but
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+really+like+that+so+i+wrote+a+book+called+the+laws+of+simplicity+i+was+in+milan+last+week+for+the+italian+launch+it+s+kind+of+a+book+about+questions++questions+about+simplicity
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=very+few+answers+i+m+also+wondering+myself+what+is+simplicity+is+it+good+is+it+bad+is+complexity+better+i+m+not+sure
found 1 videos: [['/talks/john_maeda_designing_for_simplicity', '2007']]
selected: /talks/john_maeda_designing_for_simplicity
sleep 3 seconds to avoid blocking
------<1090>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JohnMaeda_2008P.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+like+go+through+some+slides+from+way+back+when+and+walk+through+them+to+give+you+a+sense+of+how+i+end+up+here++so++basically+it+all+began+with
found 1 videos: [['/talks/john_maeda_my_journey_in_design', '2009']]
selected: /talks/john_maeda_my_journey_in_design
sleep 5 seconds to avoid blocking
------<1091>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JohnMaeda_2012G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+have+to+say+that+i+m+very+glad+to+be+here+i+understand+we+have
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=over+eighty+countries+here+so+that+s+a+whole+new+paradigm+for+me+to+speak+to+all+of+these+countries+in+each+country+i+m+sure+you+have+this+thing+called+the+parent+teacher
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+the+ones+for+your+kids+but+the+one+you+had+as+a+child+where+your+parents+come+to+school+and+your+teacher+talks+to+your+parents+and+it+s+a+little+bit+awkward
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+i+remember+in+third+grade+i+had+this+moment+where+my+father+who+never+takes+off+from+work+he+s+a+classical+blue+collar
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+working+class+immigrant+person+going+to+school+to+see+his+son+how+he+s+doing+and+the+teacher+said
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+good+at+math+and+art+and+he+kind+of+nodded++you+know
found 1 videos: [['/talks/john_maeda_how_art_technology_and_design_inform_creative_leaders', '2012']]
selected: /talks/john_maeda_how_art_technology_and_design_inform_creative_leaders
sleep 3 seconds to avoid blocking
------<1092>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JohnMcWhorter_2013.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+always+hear+that+texting+is+a+scourge
found 1 videos: [['/talks/john_mcwhorter_txtng_is_killing_language_jk', '2013']]
selected: /talks/john_mcwhorter_txtng_is_killing_language_jk
sleep 1 seconds to avoid blocking
------<1093>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JohnMcWhorter_2016.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+language+i+m+speaking+right+now+is+on+its+way+to+becoming+the+world+s+universal+language+for+better+or+for+worse++let+s+face+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+the+language+of+the+internet++it+s+the+language+of+finance++it+s+the+language+of+air+traffic+control
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=popular+music++diplomacy+english+is+everywhere
found 1 videos: [['/talks/john_mcwhorter_4_reasons_to_learn_a_new_language', '2016']]
selected: /talks/john_mcwhorter_4_reasons_to_learn_a_new_language
sleep 4 seconds to avoid blocking
------<1094>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JohnnyLee_2008.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=something+that+we+often+do+is+use+immense+resources+to+achieve+certain+capabilities+or+achieve+certain+goals
found 1 videos: [['/talks/johnny_lee_free_or_cheap_wii_remote_hacks', '2008']]
selected: /talks/johnny_lee_free_or_cheap_wii_remote_hacks
sleep 2 seconds to avoid blocking
------<1095>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JohnSearle_2013.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=m+going+to+talk+about+consciousness
found 1 videos: [['/talks/lauren_zalaznick_the_conscience_of_television', '2011']]
selected: /talks/lauren_zalaznick_the_conscience_of_television
sleep 4 seconds to avoid blocking
------<1096>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JohnUnderkoffler_2010.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=years+after+the+advent+of+the+macintosh+which+was+an+astoundingly+seminal+event+in+in
found 1 videos: [['/talks/john_underkoffler_pointing_to_the_future_of_ui', '2010']]
selected: /talks/john_underkoffler_pointing_to_the_future_of_ui
sleep 5 seconds to avoid blocking
------<1097>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JohnWalker_2007P.stm
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+the+dream+of+listeners+not+being+the+musicians+the+listeners+right
found 1 videos: [['/talks/john_q_walker_great_piano_performances_recreated', '2008']]
selected: /talks/john_q_walker_great_piano_performances_recreated
sleep 3 seconds to avoid blocking
------<1098>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JohnWilbanks_2012G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+have+bad+news++i+have+good+news++and+i+have+a+task
found 10 videos: [['/talks/daphne_bavelier_your_brain_on_video_games', '2012'], ['/talks/dan_ariely_what_makes_us_feel_good_about_our_work', '2013'], ['/talks/john_wilbanks_let_s_pool_our_medical_data', '2012'], ['/talks/jeff_hancock_the_future_of_lying', '2012'], ['/talks/lorrie_faith_cranor_what_s_wrong_with_your_pa_w0rd', '2014'], ['/talks/tali_sharot_the_optimism_bias', '2012'], ['/talks/pawan_sinha_how_brains_learn_to_see', '2010'], ['/talks/jason_clay_how_big_brands_can_help_save_biodiversity', '2010'], ['/talks/guy_hoffman_robots_with_soul', '2014'], ['/talks/ronny_edry_israel_and_iran_a_love_story', '2012']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+the+bad+news+is+that+we+all+get+sick++i+get+sick++you+get+sick
found 12 videos: [['/talks/elizabeth_pisani_sex_drugs_and_hiv_let_s_get_rational', '2010'], ['/talks/paul_nicklen_animal_tales_from_icy_wonderlands', '2011'], ['/talks/kelly_mcgonigal_how_to_make_stress_your_friend', '2013'], ['/talks/ethan_zuckerman_listening_to_global_voices', '2010'], ['/talks/anas_aremeyaw_anas_how_i_named_shamed_and_jailed', '2013'], ['/talks/ruby_wax_what_s_so_funny_about_mental_illness', '2012'], ['/talks/john_wilbanks_let_s_pool_our_medical_data', '2012'], ['/talks/david_mccandless_the_beauty_of_data_visualization', '2010'], ['/talks/michael_anti_behind_the_great_firewall_of_china', '2012'], ['/talks/steve_keil_a_manifesto_for_play_for_bulgaria_and_beyond', '2011'], ['/talks/jamie_oliver_teach_every_child_about_food', '2010'], ['/talks/peter_singer_the_why_and_how_of_effective_altruism', '2013']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+every+one+of+us+gets+sick+and+the+question+really+is+how+sick+do+we+get+is+it+something+that+kills+us+is+it+something+that+we+survive+is+it+something+that+we+can
found 6 videos: [['/talks/john_wilbanks_let_s_pool_our_medical_data', '2012'], ['/talks/sonia_shah_3_reasons_we_still_haven_t_gotten_rid_of_malaria', '2013'], ['/talks/peter_singer_the_why_and_how_of_effective_altruism', '2013'], ['/talks/jason_mccue_terrorism_is_a_failed_brand', '2012'], ['/talks/enric_sala_glimpses_of_a_pristine_ocean', '2010'], ['/talks/danny_hillis_back_to_the_future_of_1994', '2012']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=treat++and+we+ve+gotten+sick+as+long+as+we+ve+been+people++and+so+we+ve+always+looked+for+reasons+to+explain+why+we+get+sick
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+for+a+long+time+it+was+the+gods+right+the+gods+are+angry+with+me+or+the+gods+are+testing+me+right
found 2 videos: [['/talks/john_wilbanks_let_s_pool_our_medical_data', '2012'], ['/talks/caroline_casey_looking_past_limits', '2011']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+god++singular+more+recently+is+punishing+me+or+judging+me
found 1 videos: [['/talks/john_wilbanks_let_s_pool_our_medical_data', '2012']]
selected: /talks/john_wilbanks_let_s_pool_our_medical_data
sleep 1 seconds to avoid blocking
------<1099>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JohnWooden_2001.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+coined+my+own+definition+definition+of+success+in+one+thousand+nine+hundred+and+thirty+four+when+i+was+teaching+at+a+high+school+in+south+bend+indiana++being+a+little+bit
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=disappointed+and+[+disillusioned+]+perhaps+by+the+way+parents+of+the+youngsters+in+my+english+classes+expected+their+youngsters
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=get+an+a+or+a++b+they+thought+a+c+was+all+right+for+the+neighbors++children+because+they+were+all+average
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+they+weren+t+satisfied+when+their+own+it+would+make+the+teacher+feel+that+they+had
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=failed+or+the+youngster+had+failed+and+that+s+not+right+the+good+lord+in+his+infinite+wisdom+didn+t+create+us+all+equal+as+far+as+intelligence+is+concerned+any+more+than+we+re+equal+for+size
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+everybody+could+earn+an+a+or+a+b+and+i+didn+t+like+that+way+of+judging+and+i+did+know+how
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+alumni+of+various+schools+back+in+the++30s+judged+coaches+and+athletic+teams++if+you+won+them+all+you+were+considered+to+be+reasonably+successful
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+completely++because+i+found+out
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+had+a+number+of+years+at+ucla+where+we+didn+t+lose+a+game++but+it+seemed+that+we+didn+t+win+each+individual+game+by+the+margin+that+some+of+our+alumni+had+predicted
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=quite+frequently+i+really+felt+that+they+had+backed+up+their+predictions+in+a+more+materialistic
error: request timeout
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+was+true+back+in+the+30s+so+i+understood+that+but+i+didn+t+like+it+i+didn+t+agree+with+it+i+wanted+to+come+up+with+something+i+hoped+could+make+me+a+better+teacher
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+give+the+youngsters+under+my+supervision+be+it+in+athletics+or+the+english+classroom
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=aspire+other+than+just+a+higher+mark+in+the+classroom+or+more+points+in+some+athletic+contest+i+thought+about+that+for+quite+a+spell+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+wanted+to+come+up+with+my+own+definition+i+thought+that+might+help++and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+knew+how+mr+webster+defined+it+as+the+accumulation+of+material+possessions+or+the+attainment+of+a+position+of+power+or+prestige+or+something
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+that+sort+worthy+accomplishments+perhaps+but+in+my
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=opinion+not+necessarily+indicative+of+success++so+i+wanted+to+come+up+with+something+of+my+own+and+i+recalled
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+raised+on+a+small+farm+in+southern+indiana+and+dad+tried+to+teach+me+and+my+brothers+that+you+should+never+try+to+be+better+than+someone+else
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+sure+at+the+time
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+did+that+i+didn+t+it+didn+t+well+somewhere+i+guess+in+the+hidden+recesses+of+the+mind+it+popped+out+years+later+never+try+to+be+better+than+someone+else
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=never+cease+trying+to+be+the+best+you+can+be+that+s+under+your+control
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+get+too+engrossed+and+involved+and+concerned+in+regard+to+the+things+over+which+you+have+no+control++it+will+adversely+affect+the+things+over+which+you+have+control
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=then+i+ran+across+this+simple+verse+that+said+at+god+s+footstool+to+confess+a+poor+soul+knelt+and+bowed+his+head++i+failed++he+cried++the+master+said++thou+didst+thy+best
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+is+success++from+those+things+and+one+other+perhaps++i+coined+my+own+definition+of+success+which+is+peace+of+mind+attained+only+through
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+knowing+you+made+the+effort+to+do+the+best+of+which+you+re+capable++i+believe+that+s+true
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+make+the+effort+to+do+the+best+of+which+you+re+capable+trying+to+improve+the+situation+that+exists+for+you+i+think+that+s+success+and+i+don+t+think+others+can+judge+that+it+s+like+character
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=your+reputation+is+what+you+re+perceived+to+be
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=your+character+is+what+you+really+are+and+i+think+that+character+is+much+more+important+than+what+you+are+perceived+to+be+you+d+hope+they+d+both+be
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=good+but+they+won+t+necessarily+be+the+same
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+that+was+my+idea+that+i+was+going+to+try+to+get+across+to+the+youngsters+i+ran+across+other+things+i+love+to+teach+and+it+was+mentioned
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=speaker+that+that+i+enjoy+poetry+and+i+dabble+in+it+a+bit+and+love+it+there+are+some+things+that+helped+me+i+think+be+better+than+i+would+have+been+i+know+i+m+not+what+i+ought+to+be++what+i+should+be+but+i+think+i+m+better+than+i+would+have+been+if+i+hadn+t+run+across+certain+things
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+was+just+a+little+verse+that+said
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=no+written+word+no+spoken+plea+can+teach+our+youth+what+they+should+be
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=nor+all+the+books+on+all+the+shelves+it+s+what+the+teachers+are+themselves+that+made+an+impression+on+me
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+tried+to+use+that+more+or+less+in+my+teaching+whether+it+be+in+sports+or+whether+it+be+in+the+english+classroom
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+love+poetry+and+always+had+an+interest+in+that+somehow+maybe+it+s+because+dad+used
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+read+to+us+at+night+by+coal+oil+lamp+we+didn+t+have+electricity
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+our+farm+home+and+dad+would+read+poetry+to+us+so+i+always+liked+it+and+about+the+same+time++i+ran+across+this+one+verse+i+ran+across+another+one
error: request timeout
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+lady+teacher+why+she+taught+and+after+some+time+she+said+she+wanted+to+think+about+that+then+she+came+up+and+said
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+ask+me+why+i+teach+and+i+reply
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=where+could+i+find+such+splendid+company++there+sits+a+statesman+strong++unbiased+wise+another+daniel+webster+silver+tongued
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+doctor+sits+beside+him+whose+quick+steady+hand+may+mend+a+bone+or+stem+the+life+blood+s+flow
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+there+a+builder++upward+rise+the+arch+of+a+church+he+builds+wherein+that+minister+may+speak+the
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=word+of+god+and+lead+a+stumbling+soul+to+touch+the+christ+and+all+about+a+gathering+of+teachers+farmers+merchants+laborers
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=those+who+work+and+vote+and+build+and+plan+and+pray+into+a+great+tomorrow++and+i+may+say
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+may+not+see+the+church+or+hear+the+word+or+eat+the+food+their+hands+may+grow+but+yet+again+i+may
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+later+i+may+say+i+knew+him+once++and+he+was+weak+or+strong+or+bold+or+proud+or+gay+i+knew+him+once+but+then+he+was+a+boy
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+ask+me+why+i+teach+and+i+reply++where+could+i+find+such
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=splendid+company++and+i+believe+the+teaching+profession+it+s+true+you+have+so+many+youngsters+and+i+ve+got+to+think+of+my+youngsters
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=attorneys++eleven+dentists+and+doctors++many+many+teachers+and+other+professions+and+that+that
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=gives+you+a+great+deal+of+pleasure+to+see+them+go+on+i+always+tried+to+make+the+youngsters+feel+that+they+re+there+to+get+an
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=education+number+one+basketball+was+second+because+it+was+paying+their+way++and+they+do+need+a+little+time+for+social+activities+but+you+let+social+activities+take+a
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=little+precedence+over+the+other+two+and+you+re+not+going+to+have+any
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=very+long+so+that+was+the+idea+that+i+tried
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+the+youngsters+under+my+supervision++i+had+three+rules+pretty+much+that+i+stuck+with+practically+all+the+time+i+d+learned+these+prior+to+coming
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+ucla+and+i+decided+they+were+very+important+one+was+never+be+late
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=later+on+i+said+certain+things
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+players+if+we+were+leaving+for+somewhere+had+to+be+neat+and+clean+there+was+a+time+when+i+i+made+them+wear+jackets+and
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=then+i+saw+our+chancellor+coming+to+school+in
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=denims+and+turtlenecks+and+thought+it+s+not+right+for+me+to+keep+this+other+[+rule+]+so+i+let+them+just+they+had+to+be+neat+and+clean
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+had+one+of+my+greatest+players+that+you+probably+heard+of+bill+walton
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+came+to+catch+the+bus+we+were+leaving+for+somewhere+to+play+and+he+wasn+t+clean+and+neat++so
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+wouldn+t+let+him+go+he+couldn+t+get+on+the+bus+he+had+to+go+home+and+and+get+cleaned+up+to+get+to+the+airport
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+a+stickler+for+that+i+believed+in+that+i+believe+in+time+very+important
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+believe+you+should+be+on+time++but+i+felt+at+practice+for+example+we+start+on+time+we+close+on+time+the+youngsters+didn+t+have+to
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=feel+that+we+were+going+to+keep+them+over+when+i+speak+at+coaching+clinics+i+often+tell+young+coaches+and+at+coaching+clinics+more+or+less+they+ll+be+the+younger+coaches+getting+in
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=tell+them+don+t+run+practices+late
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+you+ll+go+home+in+a+bad+mood++and+that+s+not+good+for+a+young+married+man+to+go+home+in+a+bad+mood++when+you+get+older
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+doesn+t+make+any+difference+but
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+did+believe+on+time+i+believe+starting+on+time+and+i+believe+closing+on+time
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+another+one+i+had+was+not+one+word+of+profanity+one+word+of+profanity+and+you
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+out+of+here+for+the+day+if+i+see+it+in+a+game+you+re+going+to+come+out+and+sit+on+the+bench++and+the+third+one+was+never+criticize+a+teammate
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+didn+t+want+that+i+used+to+tell+them+i+was+paid+to+do+that+that+s+my+job+i+m+paid+to+do+it++pitifully+poor++but+i+am+paid+to+do+it+not+like+the+coaches+today+for+gracious+sakes+no
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+a+little+different+than
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=working+hard+and+enjoying+what+you+re+doing+coming+up+to+the+apex
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=according+to+my+definition+of+success+and+right+at+the+top++faith+and+patience+and+i+say+to+you+in+whatever+you+re+doing
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+must+be+patient++you+have+to+have+patience+to
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+want+things+to+happen+we+talk
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+our+youth+being+impatient+a+lot
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+are+they+want+to+change+everything+they+think+all+change+is+progress+and+we+get+a+little+older+we+sort+of
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+things+go+and+we+forget+there+is+no+progress+without+change++so+you+must+have+patience+and+i+believe+that+we+must+have+faith++i+believe+that+we+must+believe+truly+believe
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+just+give+it+word+service+believe+that+things+will+work+out+as+they+should++providing+we+do+what+we+should+i+think+our+tendency+is+to+hope
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=things+will+turn+out+the+way+we+want+them+to+much+of+the+time+but+we+don+t+do+the+things+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+necessary+to+make+those+things
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=become+reality++i+worked+on+this+for+some+fourteen+years+and+i+think+it+helped+me+become
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+better+teacher+but+it+all+revolved+around+that+original+definition
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+success++you+know+a+number+of+years+ago+there+was+a+major+league+baseball+umpire+by+the+name+of+george+moriarty+he+spelled+moriarty+with+only+one++i++i+d+never+seen+that+before+but+he
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=did+big+league+baseball+players+they+re+very+perceptive+about+those+things+and+they+noticed+he+had+only+one++i++in+his+name++you+d+be+surprised+how+many
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=also+told+him+that++that+was+one+more+than+he+had+in+his+head+at+various+times
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+he+wrote+something+where+i+think+he+did+what+i+tried+to+do+in+this+pyramid+he+called
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+road+ahead+or+the+road+behind+he+said+sometimes+i+think+the+fates+must+grin+as+we+denounce+them+and+insist+the+only+reason+we+can+t+win+is
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+fates+themselves+have+missed++yet+there+lives+on+the+ancient+claim+we+win+or+lose+within+ourselves+the+shining+trophies+on+our+shelves
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=can+never+win+tomorrow+s+game+you+and+i+know+deeper+down+there+s+always+a+chance+to+win+the+crown+but+when+we+fail+to+give+our+best+we+simply+haven+t+met+the+test+of+giving+all+and+saving+none+until+the+game+is+really+won
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+showing+what+is+meant+by+grit
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=playing+through+not+letting+up+it+s+bearing+down+that+wins+the+cup+of+dreaming+there+s+a+goal+ahead+of+hoping+when+our+dreams+are+dead+of+praying+when+our+hopes+have+fled+yet+losing
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+afraid+to+fall+if+bravely+we+have+given+all+for+who+can+ask+more+of+a+man
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=than+giving+all+within+his+span+giving+all+it+seems+to+me+is+not+so+far+from+victory++and+so+the+fates+are+seldom+wrong+no+matter+how+they+twist+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=wind+it+s+you+and+i+who+make+our+fates
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+open+up+or+close+the+gates+on+the+road+ahead+or+the+road+behind
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=reminds+me+of+another+set+of+threes+that+my+dad+tried+to+get+across+to+us+don+t+whine+don+t+complain+don+t+make+excuses+just+get+out+there+and+whatever+you+re+doing+do+it+to+the+best+of+your+ability+and
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=more+than+that+i+tried+to+get+across+too+that+my+opponents+will+tell+you+you+never+heard+me+mention+winning
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=never+mention+winning+my+idea+is+that
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+lose+when+you+outscore+somebody+in+a+game
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+can+win+when+you+re+outscored+i+ve+felt+that+way+on+certain+occasions+at+various+times++and+i+just+wanted+them+to
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=be+able+to+hold+their+head+up+after+a+game+i+used+to+say+that+when+when+a+game+is+over+and+you+see+somebody+that+didn+t+know+the+outcome+i+hope+they
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=couldn+t+tell+by+your+actions
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=whether+you+outscored+an+opponent+or+the+opponent+outscored+you
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+what+really+matters+if+you+make+an+effort+to+do+the+best+you+can+regularly
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+results+will+be+about+what+they+should+be+not+necessarily+what+you+d+want+them+to+be+but+they+ll+be+about+what+they+should+only+you+will+know+whether+you+can+do+that+and+that+s+what+i+wanted+from+them
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=else+and+as+time+went+by+and+i+learned+more+about+other+things+i+think+it+worked+a+little+better+as+far+as+the+results+but+i+wanted
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+score+of+a+game+to+be+the+byproduct
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+these+other+things+and+not+the+end+itself++i+believe+it+was
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+like+that+i+think+that+it+is+it+s+getting+there++sometimes+when+you+get+there+there+s+almost+a+let+down++but+it+s+the+getting+there+that+s+the+fun+as+a+basketball+coach+at+ucla+i+liked+our+practices+to+be+the+journey
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+game+would+be+the+end+the+end+result+i+liked+to+go+up+and+sit+in+the+stands+and+watch+the+players+play+and+see+whether+i+d+done+a+decent+job
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=during+the+week++there+again+it+s+getting+the+players+to+get+that+self+satisfaction+in+knowing+that+they+d+made+the+effort+to+do+the+best
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sometimes+i+m+asked+who+was+the+best+player+i+had+or+the+best+teams+i+can+never+answer+that
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+far+as+the+individuals+are+concerned+i
error: request timeout
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+that+and+they+said+suppose+that+you+in+some+way+could
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=make+the+perfect+player+what+would+you+want
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+said+well+i+d+want+one+that+knew+why+he+was+at+ucla+to+get+an+education+he+was+a+good+student+really+knew+why+he+was+there+in+the+first+place++but+i+d+want+one
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+d+want+one+to+realize+that+that+defense+usually+wins+championships
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=work+hard+on+defense++but+i+d+want+one+who+would+play+offense+too+i+d+want+him+to+be+unselfish+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=look+for+the+pass+first+and+not+shoot+all+the+time++and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+d+want+one+that+could+pass+and+would+pass+i+ve+had+some+that+could+and+wouldn+t+and+i+ve+had+some+that+would+and+could
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+wanted+them+to+be+able+to+shoot+from+the+outside++i+wanted+them+to+be+good+inside+too+i+d
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=be+able+to+rebound+well+at+both+ends+too+why+not+just+take+someone+like
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=keith+wilkes+and+let+it+go+at+that+he+had+the+qualifications+not+the+only+one+but+he+was+one+that+i+used+in+that+particular+category+because+i+think+he
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+made+the+effort+to+become+the+best+there+was+a+couple+i+mention+in+my+book+they+call+me+coach
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=two+players+that+gave+me+great+satisfaction+that+came+as+close+as+i+think+anyone+i+ever+had+to+reach+their+full+potential+one+was+conrad+burke++and+one+was+doug+mcintosh+when+i+saw+them
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+freshmen+on+our+freshmen+team+freshmen+couldn+t+play+varsity+when+i+taught
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+thought+oh+gracious+if+these+two+players+either+one+of+them+they+were+different+years+but+i+thought+about+each+one+at+the+time+he+was+there+oh+if+he+ever+makes
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=our+varsity+must+be+pretty+miserable++if+he+s+good+enough+to+make+it+and+you+know+one+of+them+was+a+starting+player+for+a
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=season+and+a+half+the+other+one
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=his+next+year+played+thirty+two+minutes+in+a+national+championship+game+did+a+tremendous+job+for+us+the+next+year+he+was+a+starting
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+starting+player+on+the+national+championship
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+here+i+thought+he+d+never+play+a+minute++when+he+was+so+those+are+the+things+that+give+you
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=great+joy++and+great+satisfaction+to+see+neither+one+of+those+youngsters+could+shoot+very+well
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+they+had+outstanding+shooting+percentages+because+they+didn+t+force+it
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+neither+one+could+jump+very+well
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+they+kept+good+position++and+so+they+did+well+rebounding+they+remembered+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+every+shot+that+s+taken+they+assumed+would+be+missed+i+ve+had+too+many+stand+around+and+wait+to+see+if+it+s+missed
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=then+they+go+and+it+s+too+late+somebody+else+is+in+there+ahead++of+them+they+weren+t+very+quick+but+they+played+good+position+kept+in+good+balance
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+they+they+played+pretty+good+defense+for+us+so+they+had+qualities+that+they+came+close+to
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+close+to+reaching+possibly+their+full+potential+as+any+players+i+ever+had+so+i+consider+them+to+be+as+successful+as
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+bill+walton++or+many+of+the+others+that+we+had+there+were+some+outstanding
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=players+have+i+rambled+enough+i+was+told+that+when+he+makes+his+appearance
found 0 videos: []
error: no video is found.
sleep 3 seconds to avoid blocking
------<1100>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JoiIto_2014.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+in+cambridge+at+the+mit+media+lab
found 2 videos: [['/talks/joi_ito_want_to_innovate_become_a_now_ist', '2014'], ['/talks/john_maeda_how_art_technology_and_design_inform_creative_leaders', '2012']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=meeting+with+faculty++students+and+staff++and+we+were+trying+to+figure+out+whether+i+should+be+the+next+director
found 1 videos: [['/talks/joi_ito_want_to_innovate_become_a_now_ist', '2014']]
selected: /talks/joi_ito_want_to_innovate_become_a_now_ist
sleep 2 seconds to avoid blocking
------<1101>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JokChurch_2007.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=probably+america+s+most+widely+read+children+s+author+in+fact+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+always+tell+people+that+i+don+t+want+to+show+up+looking+like+a+scientist+you+can+have+me+as+a+farmer+or+in+leathers+and+no+one+has+ever+chose+farmer
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+here+today+to+talk+to+you+about+circles+and+epiphanies
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+know+an+epiphany+is+usually+something+you+find+that+you+dropped+someplace+you+ve+just+got+to+go+around+the+block+to+see+it+as+an+epiphany
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+a+painting+of+a+circle+a+friend+of+mine+did+that+richard+bollingbroke+it+s
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+kind+of+complicated+circle+that+i+m+going+to+tell+you+about+my+circle+began+back+in+the
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=where+i+was+the+class+queer+i+was+the+guy+beaten+up+bloody+every+week+in+the+boys++room+until+one+teacher
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=saved+my+life++she+saved+my+life+by+letting+me+go+to+the+bathroom+in+the+teachers++lounge+she+did+it+in+secret++she+did+it+for+three+years+and+i+had+to+get+out+of+town
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thumb+i+had+eighty+five+dollars+and+i+ended+up+in+san+francisco+california
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+back+in+the++80s+found+it+necessary+to+begin+work+on+aids+organizations+about
found 1 videos: [['/talks/james_nachtwey_my_wish_let_my_photographs_bear_witness', '2007']]
selected: /talks/james_nachtwey_my_wish_let_my_photographs_bear_witness
sleep 4 seconds to avoid blocking
------<1102>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JonasEliasson_2012X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+to+talk+about+congestion++namely+road+congestion+road+congestion+is+a+pervasive+phenomenon+it+exists+in+basically+all+of+the+cities+all+around+the+world+which+is+a+little+bit+surprising+when+you+think
found 1 videos: [['/talks/jonas_eliasson_how_to_solve_traffic_jams', '2012']]
selected: /talks/jonas_eliasson_how_to_solve_traffic_jams
sleep 1 seconds to avoid blocking
------<1103>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JonasGahrStore_2011X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=amongst+all+the+troubling+deficits+we+struggle+with+today+we+think+of+financial+and+economic+primarily+the+ones+that+concern+me+most+is+the+deficit+of+political+dialogue
found 1 videos: [['/talks/jonas_gahr_store_in_defense_of_dialogue', '2012']]
selected: /talks/jonas_gahr_store_in_defense_of_dialogue
sleep 5 seconds to avoid blocking
------<1104>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JonathanDrori_2007U.stm
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=explain+why+it+is+that+perhaps+we+don+t+understand+as+much+as+we+think+we+do
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+d+like+to+begin+with+four+questions++this+is+not+some+sort+of+cultural+thing+for+the+time+of+year+that+s+an+in+joke+by+the+way
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+even+know+quite+a+lot+about+science+find+quite+hard+and+they+re+questions+that+i+ve+asked+of+science+television+producers+of+audiences+of
error: request timeout
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+also+of+seven+year+olds+and+i+find+that+the+seven+year+olds+do+marginally+better+than+the+other+audiences+which+is+somewhat+surprising
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+the+first+question+and+you+might+want+to+write+this+down++either+on+a+bit+of+paper
found 4 videos: [['/talks/jonathan_drori_what_we_think_we_know', '2008'], ['/talks/bjorn_lomborg_global_priorities_bigger_than_climate_change', '2007'], ['/talks/j_j_abrams_the_mystery_box', '2008'], ['/talks/tim_ferriss_smash_fear_learn_anything', '2009']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+virtual+piece+of+paper+in+your+head+and+for+viewers+at+home+you+can+try+this+as+well
found 2 videos: [['/talks/jonathan_drori_what_we_think_we_know', '2008'], ['/talks/scott_mccloud_the_visual_magic_of_comics', '2009']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+little+seed+weighs+next+to+nothing+and+a+tree+weighs+a+lot+right++i+think+we+agree+on+that+where+does+the+tree+get+the+stuff+that+makes+up
found 3 videos: [['/talks/jonathan_drori_what_we_think_we_know', '2008'], ['/talks/jimmy_wales_the_birth_of_wikipedia', '2006'], ['/talks/aubrey_de_grey_a_roadmap_to_end_aging', '2006']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+chair+right+where+does+all+this+stuff+come+from+and+your+next+question
found 6 videos: [['/talks/nicholas_negroponte_5_predictions_from_1984', '2008'], ['/talks/jonathan_drori_what_we_think_we_know', '2008'], ['/talks/ian_dunbar_dog_friendly_dog_training', '2008'], ['/talks/stephen_petranek_10_ways_the_world_could_end', '2007'], ['/talks/aubrey_de_grey_a_roadmap_to_end_aging', '2006'], ['/talks/carl_honore_in_praise_of_slowness', '2007']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+can+you+light+a+little
found 2 videos: [['/talks/kwabena_boahen_a_computer_that_works_like_the_brain', '2008'], ['/talks/patricia_burchat_shedding_light_on_dark_matter', '2008']]
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+would+you+be+able+to+kind+of+draw+a+you+don+t+have+to+draw+the+diagram+but+would+you+be+able+to+draw+the+diagram+if+you+had+to+do+it+or+would+you+just+say+that+s+actually+not+possible
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+third+question+is+why+is+it+hotter+in+summer+than+in+winter++i+think+we+can+probably+agree
found 1 videos: [['/talks/jonathan_drori_what_we_think_we_know', '2008']]
selected: /talks/jonathan_drori_what_we_think_we_know
sleep 5 seconds to avoid blocking
------<1105>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JonathanDrori_2009U.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+life+depends+on+plants++let+me+try+to+convince+you+of+that+in+a+few+seconds
found 1 videos: [['/talks/jonathan_drori_why_we_re_storing_billions_of_seeds', '2009']]
selected: /talks/jonathan_drori_why_we_re_storing_billions_of_seeds
sleep 1 seconds to avoid blocking
------<1106>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JonathanDrori_2010U.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+two+missions+here+today+the+first+is+to
found 13 videos: [['/talks/stephen_coleman_non_lethal_weapons_a_moral_hazard', '2012'], ['/talks/regina_dugan_from_mach_20_glider_to_hummingbird_drone', '2012'], ['/talks/jane_mcgonigal_the_game_that_can_give_you_10_extra_years_of_life', '2012'], ['/talks/gary_greenberg_the_beautiful_nano_details_of_our_world', '2012'], ['/talks/charles_elachi_the_story_behind_the_mars_rovers', '2008'], ['/talks/jane_mcgonigal_gaming_can_make_a_better_world', '2010'], ['/talks/jonathan_drori_every_pollen_grain_has_a_story', '2010'], ['/talks/peter_diamandis_our_next_giant_leap', '2008'], ['/talks/martin_seligman_the_new_era_of_positive_psychology', '2008'], ['/talks/joel_levine_why_we_need_to_go_back_to_mars', '2010'], ['/talks/charles_hazlewood_british_paraorchestra_the_debut_of_the_british_paraorchestra', '2012'], ['/talks/peter_reinhart_the_art_and_craft_of_bread', '2009'], ['/talks/eve_ensler_what_security_means_to_me', '2008']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=tell+you+something+about+pollen+i+hope++and+to+convince+you+that+it+s+more+than+just+something+that+gets+up+your+nose+and+secondly+to+convince+you+that+every+home+really+ought+to+have+a+scanning+electron+microscope
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+a+flower+s+way+of+making+more+flowers
found 2 videos: [['/talks/bill_strickland_rebuilding_a_neighborhood_with_beauty_dignity_hope', '2008'], ['/talks/emily_levine_a_theory_of_everything', '2009']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+carries+male+sex+cells+from+one+flower+to+another+this+gives+us+genetic+diversity+or+at+least+it+gives+the+plants+genetic+diversity
found 1 videos: [['/talks/jonathan_drori_every_pollen_grain_has_a_story', '2010']]
selected: /talks/jonathan_drori_every_pollen_grain_has_a_story
sleep 2 seconds to avoid blocking
------<1107>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JonathanDrori_2011S.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+many+species+of+flowering+plants+there+are+there+are
found 3 videos: [['/talks/jonathan_drori_the_beautiful_tricks_of_flowers', '2011'], ['/talks/marla_spivak_why_bees_are_disappearing', '2013'], ['/talks/stefano_mancuso_the_roots_of_plant_intelligence', '2010']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+quarter+of+a+million+at+least+those+are+the+ones+we+know+about+a+quarter+of+a+million+species+of+flowering+plants
found 1 videos: [['/talks/jonathan_drori_the_beautiful_tricks_of_flowers', '2011']]
selected: /talks/jonathan_drori_the_beautiful_tricks_of_flowers
sleep 5 seconds to avoid blocking
------<1108>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JonathanEisen_2012P.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+grew+up+in+this+neighborhood+when+i+was+fifteen+years+old+i+went+from+being+what+i+think+was+a+strapping+young+athlete
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=over+four+months++slowly+wasting+away+until+i+was+basically+a+famine+victim
found 1 videos: [['/talks/jonathan_eisen_meet_your_microbes', '2012']]
selected: /talks/jonathan_eisen_meet_your_microbes
sleep 1 seconds to avoid blocking
------<1109>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JonathanFoley_2010X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+a+conversation+about+this+incredible+global+issue+that+s+at+the+intersection+of+land+use+food+and+environment+something
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+can+all+relate+to+and+what+i+ve+been+calling+the+other+inconvenient+truth+but+first+i+want+to+take+you+on+a+little+journey
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+s+first+visit+our+planet+but+at+night+and+from+space
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+what+our+planet+looks+like+from+outer+space+at+nighttime+if+you+were+to+take+a+satellite+and+travel+around+the+planet
found 1 videos: [['/talks/jonathan_foley_the_other_inconvenient_truth', '2012']]
selected: /talks/jonathan_foley_the_other_inconvenient_truth
sleep 2 seconds to avoid blocking
------<1110>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JonathanHaidt_2008.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=two+american+friends+are+traveling+together+in+italy++they+go+to+see+michelangelo+s+david+and+when+they+finally+come+face+to+face+with+the+statue+they+both+freeze+dead+in+their+tracks
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+first+guy+we+ll+call+him+adam
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+transfixed+by+the+beauty+of+the+perfect+human+form+the+second+guy+we+ll+call+him+bill+is+transfixed
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+embarrassment+at+staring+at+the+thing+there+in+the+in+the+center
found 1 videos: [['/talks/jonathan_haidt_the_moral_roots_of_liberals_and_conservatives', '2008']]
selected: /talks/jonathan_haidt_the_moral_roots_of_liberals_and_conservatives
sleep 5 seconds to avoid blocking
------<1111>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JonathanHaidt_2012.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+a+question+for+you+are+you+religious++please+raise+your+hand+right+now+if+you+think+of+yourself+as+a+religious+person
found 1 videos: [['/talks/jonathan_haidt_religion_evolution_and_the_ecstasy_of_self_transcendence', '2012']]
selected: /talks/jonathan_haidt_religion_evolution_and_the_ecstasy_of_self_transcendence
sleep 5 seconds to avoid blocking
------<1112>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JonathanHaidt_2012S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+ve+heard+that+there+s+a+pack+of+giant+asteroids+headed+for+the+united+states+all+scheduled+to+strike+within+the+next+fifty+years
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+i+don+t+mean+actual+asteroids+made+of+rock+and+metal+that+actually+wouldn+t+be+such+a+problem+because+if+we+were+really+all+going+to+die++we+would+put+aside+our+differences
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+d+spend+whatever+it+took+and+we+d+find+a+way+to+deflect+them
found 1 videos: [['/talks/peter_singer_the_why_and_how_of_effective_altruism', '2013']]
selected: /talks/peter_singer_the_why_and_how_of_effective_altruism
sleep 5 seconds to avoid blocking
------<1113>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JonathanHaidt_2016S.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+feels+like+the+world+is+in+a+place+that+we+haven+t+seen+for+a+long+time+people+don+t+just+disagree+in+the+way+that+we+re+familiar+with+on+the
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=political+divide+there+are+much+deeper+differences+afoot+what+on+earth+is+going+on+and+how+did+we+get+here+++jh+this+is+different
found 1 videos: [['/talks/jonathan_haidt_can_a_divided_america_heal', '2016']]
selected: /talks/jonathan_haidt_can_a_divided_america_heal
sleep 3 seconds to avoid blocking
------<1114>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JonathanHarris_2007.stm
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+don+t+really+tell+stories+in+the+usual+way+in+the+sense+that+i+don
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=t+usually+tell+my+own+stories++instead+i+m+really+interested+in+building+tools+that+allow+large+numbers+of+other+people+to+tell+their+stories
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+do+this+because+i+think+that+people+actually+have+a+lot+in+common+i+think+people+are+very+similar++but+i+also+think+that+we+have+trouble+seeing+that
found 1 videos: [['/talks/jonathan_harris_the_web_s_secret_stories', '2007']]
selected: /talks/jonathan_harris_the_web_s_secret_stories
sleep 2 seconds to avoid blocking
------<1115>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JonathanHarris_2007P.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+might+enjoy+the+awkwardly+tight+cut+off+pajama
found 1 videos: [['/talks/jonathan_harris_the_web_as_art', '2008']]
selected: /talks/jonathan_harris_the_web_as_art
sleep 4 seconds to avoid blocking
------<1116>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JonathanKlein_2010U.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+my+industry++we+believe+that+images+can+change+the+world++okay++we+re+naive+we+re
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=bright+eyed+and+bushy+tailed+the+truth+is+that+we+know+that+the+images+themselves+don+t+change+the+world++but+we+re+also+aware
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=since+the+beginning+of+photography+images+have+provoked+reactions+in+people+and+those+reactions+have+caused+change+to+happen
found 1 videos: [['/talks/jonathan_klein_photos_that_changed_the_world', '2010']]
selected: /talks/jonathan_klein_photos_that_changed_the_world
sleep 5 seconds to avoid blocking
------<1117>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JonathanMarks_2017X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=twenty+years+ago++when+i+was+a+barrister+and+human+rights+lawyer+in+full+time+legal+practice+in+london
found 1 videos: [['/talks/jonathan_marks_in_praise_of_conflict', '2017']]
selected: /talks/jonathan_marks_in_praise_of_conflict
sleep 3 seconds to avoid blocking
------<1118>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JonathanRossiter_2016X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=know+what+a+robot+is+right++if+you+don+t+you+d+probably+go+to+google+and+you+d+ask+google+what+a+robot+is++so+let+s+do+that
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+ll+go+to+google+and+this+is+what+we+get+now++you+can+see
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=lots+of+different+types+of+robots++but+they+re+predominantly+humanoid+in+structure
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+look+pretty+conventional+because+they+ve+got+plastic+they+ve+got+metal+they+ve+got+motors+and+gears+and+so+on
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+of+them+look+quite+friendly++and+you+could+go+up+and+you+could+hug+them
found 10 videos: [['/talks/jonathan_rossiter_a_robot_that_eats_pollution', '2017'], ['/talks/linus_torvalds_the_mind_behind_linux', '2016'], ['/talks/nina_fedoroff_a_secret_weapon_against_zika_and_other_mosquito_borne_diseases', '2017'], ['/talks/sophie_andrews_the_best_way_to_help_is_often_just_to_listen', '2018'], ['/talks/pico_iyer_the_art_of_stillness', '2014'], ['/talks/elon_musk_the_future_we_re_building_and_boring', '2017'], ['/talks/marco_alvera_the_surprising_ingredient_that_makes_businesses_work_better', '2018'], ['/talks/erin_marie_saltman_how_young_people_join_violent_extremist_groups_and_how_to_stop_them', '2017'], ['/talks/giulia_enders_the_surprisingly_charming_science_of_your_gut', '2017'], ['/talks/jamie_bartlett_how_the_mysterious_dark_net_is_going_mainstream', '2015']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+of+them+not+so+friendly++they+look+like+they+re+straight+out+of+terminator+in+fact+they+may+well+be+straight+out+of
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+do+lots+of+really+cool+things+with+these+robots+you+can+do+really+exciting+stuff
found 5 videos: [['/talks/jonathan_rossiter_a_robot_that_eats_pollution', '2017'], ['/talks/maurice_conti_the_incredible_inventions_of_intuitive_ai', '2017'], ['/talks/giada_gerboni_the_incredible_potential_of_flexible_soft_robots', '2018'], ['/talks/shonda_rhimes_and_cyndi_stivers_the_future_of_storytelling', '2017'], ['/talks/stewart_brand_and_chris_anderson_mammoths_resurrected_geoengineering_and_other_thoughts_from_a_futurist', '2018']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+d+like+to+look+at+different+kinds+of+robots+i+want+to+make+different+kinds+of+robots
found 2 videos: [['/talks/marc_raibert_meet_spot_the_robot_dog_that_can_run_hop_and_open_doors', '2017'], ['/talks/ian_firth_bridges_should_be_beautiful', '2018']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+take+inspiration+from+the+things+that+don+t+look+like+us++but+look+like+these
found 1 videos: [['/talks/salil_dudani_how_jails_extort_the_poor', '2017']]
selected: /talks/salil_dudani_how_jails_extort_the_poor
sleep 4 seconds to avoid blocking
------<1119>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JonathanTepperman_2016T.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+conventional+wisdom+about+our+world+today+is+that+this+is+a+time+of+terrible+decline
found 1 videos: [['/talks/jonathan_tepperman_the_risky_politics_of_progress', '2016']]
selected: /talks/jonathan_tepperman_the_risky_politics_of_progress
sleep 5 seconds to avoid blocking
------<1120>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JonathanTrent_2012G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+years+ago+i+set+out+to+try+to+understand+if+there+was+a+possibility+to+develop+biofuels
found 1 videos: [['/talks/jonathan_trent_energy_from_floating_algae_pods', '2012']]
selected: /talks/jonathan_trent_energy_from_floating_algae_pods
sleep 2 seconds to avoid blocking
------<1121>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JonathanZittrain_2009G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+name+is+jonathan+zittrain++and+in+my+recent+work+i+ve+been+a+bit+of+a+pessimist+so+i+thought+this+morning+i+would+try+to+be+the+optimist+and+give+reason+to+hope+for+the+future+of+the+internet+by+drawing+upon+its+present
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+it+may+seem+like+there
found 6 videos: [['/talks/rory_sutherland_sweat_the_small_stuff', '2010'], ['/talks/steven_pinker_the_surprising_decline_in_violence', '2007'], ['/talks/ze_frank_my_web_playroom', '2010'], ['/talks/benoit_mandelbrot_fractals_and_the_art_of_roughness', '2010'], ['/talks/john_doerr_salvation_and_profit_in_greentech', '2007'], ['/talks/lee_cronin_making_matter_come_alive', '2011']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+less+hope+today+than+there+was+before+people+are+less+kind+there+is+less+trust+around+i+don+t+know+as+a
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=simple+example+we+could+run+a+test+here+how+many+people+have+ever+hitchhiked
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+know++how+many+people+have+hitchhiked+within+the+past+ten+years
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=right++so+what+has+changed+it+s+not+better+public+transportation
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+that+s+one+reason+to+think+that+we+might+be+declensionists+going+in+the+wrong+direction
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+want+to+give+you+three+examples+to+try+to+say+that+the+trend+line+is+in+fact+in+the+other+direction++and+it+s+the+internet+helping+it+along
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+example+number+one+the+internet
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=itself+these+are+three+of+the+founders+of+the+internet++they+were+actually+high+school+classmates+together+at+the+same+high+school+in+suburban+los+angles+in+the
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+might+have+had+a+french+club+or+a+debate+club+they+had+a+let+s+build+a+global+network+club+and+it+worked+out+very+well++they+are+pictured
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=anniversary+newsweek+retrospective+on+the+internet+and+as+you+can+tell+they+are+basically+goof+balls
found 1 videos: [['/talks/jonathan_zittrain_the_web_as_random_acts_of_kindness', '2009']]
selected: /talks/jonathan_zittrain_the_web_as_random_acts_of_kindness
sleep 1 seconds to avoid blocking
------<1122>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JonGosier_2014U.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+a+software+developer+and+technologist+i+ve+worked+on+a+number+of+civic+technology+projects+over+the+years
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=civic+tech+is+sometimes+referred+to+as+tech+for+good+using+technology+to+solve+humanitarian+problems+this+is+in+two+thousand+and+ten+in+uganda+working
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+a+solution+that+allowed+local+populations+to+avoid+government+surveillance+on+their+mobile+phones
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+expressing+dissent+that+same+technology+was+deployed+later+in+north+africa+for+similar+purposes+to+help+activists
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=stay+connected+when+governments+were+deliberately+shutting+off+connectivity+as+a+means+of+population+control
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+over+the+years+as+i+have+thought+about+these+technologies+and+the+things+that+i+work+on
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+question+kind+of+nags+in+the+back+of+my+mind+which+is
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+if+we+re+wrong+about+the+virtues+of+technology+and+if+it+sometimes+actively+hurts+the+communities+that+we+re+intending+to+help
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+tech+industry+around+the+world+tends+to+operate+under+similar+assumptions+that
found 1 videos: [['/talks/jon_gosier_the_problem_with_trickle_down_techonomics', '2015']]
selected: /talks/jon_gosier_the_problem_with_trickle_down_techonomics
sleep 4 seconds to avoid blocking
------<1123>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JonMooallem_2014.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=president+theodore+roosevelt+needed+a+little+break+from+the+white+house+so+he+took+a+train+to+mississippi+to+do+a+little+black+bear+hunting+outside+of+a+town+called
found 1 videos: [['/talks/jon_mooallem_how_the_teddy_bear_taught_us_compassion', '2014']]
selected: /talks/jon_mooallem_how_the_teddy_bear_taught_us_compassion
sleep 5 seconds to avoid blocking
------<1124>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JonNguyen_2011X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+a+kid++i+was+fascinated+with+all+things+air+and+space+i+would+watch+nova+on+pbs+our+school+would+show+bill+nye+the+science+guy
found 1 videos: [['/talks/jon_nguyen_tour_the_solar_system_from_home', '2012']]
selected: /talks/jon_nguyen_tour_the_solar_system_from_home
sleep 2 seconds to avoid blocking
------<1125>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JonRonson_2012.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=friend+s+house+and+she+had+on+her+shelf+a+copy+of+the+dsm+manual++which+is+the+manual+of+mental+disorders+it+lists+every+known+mental
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+used+to+be+back+in+the++50s+a+very+slim+pamphlet+and+then+it+got
found 1 videos: [['/talks/jon_ronson_strange_answers_to_the_psychopath_test', '2012']]
selected: /talks/jon_ronson_strange_answers_to_the_psychopath_test
sleep 2 seconds to avoid blocking
------<1126>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JonRonson_2015G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=early+days+of+twitter+it+was+like+a+place+of+radical
found 2 videos: [['/talks/jon_ronson_when_online_shaming_goes_too_far', '2015'], ['/talks/haley_van_dyck_how_a_start_up_in_the_white_house_is_changing_business_as_usual', '2016']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+would+admit+shameful+secrets+about+themselves++and+other+people+would+say+oh+my+god++i+m+exactly+the+same
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=voiceless+people+realized+that+they+had+a+voice+and+it+was+powerful+and+eloquent
found 1 videos: [['/talks/jon_ronson_when_online_shaming_goes_too_far', '2015']]
selected: /talks/jon_ronson_when_online_shaming_goes_too_far
sleep 3 seconds to avoid blocking
------<1127>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JorgeSoto_2014G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=almost+a+year+ago+my+aunt+started+suffering+back+pains+she+went+to+see+the+doctor
found 1 videos: [['/talks/jorge_soto_the_future_of_early_cancer_detection', '2014']]
selected: /talks/jorge_soto_the_future_of_early_cancer_detection
sleep 3 seconds to avoid blocking
------<1128>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JoseAntonioAbreu_2009.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+extraordinary+speech+that+we+captured+a+couple+weeks+ago
found 1 videos: [['/talks/jose_antonio_abreu_the_el_sistema_music_revolution', '2009']]
selected: /talks/jose_antonio_abreu_the_el_sistema_music_revolution
sleep 4 seconds to avoid blocking
------<1129>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JoseMiguelSokoloff_2014G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+thought+a+lot+about+the+first+word+i+d+say+today+and+i+decided+to+say+colombia
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+reason+i+don+t+know+how+many+of+you+have+visited+colombia+but+colombia+is+just+north+of+the+border+with+brazil
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+a+beautiful+country+with+extraordinary+people+like+me+and+others
error: request timeout
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+populated+with+incredible+fauna+flora+it+s+got+water+it+s+got+everything+to+be+the+perfect+place
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+we+have+a+few+problems+you+may+have+heard+of+some+of+them+we+have+the+oldest
found 12 videos: [['/talks/jose_miguel_sokoloff_how_christmas_lights_helped_guerrillas_put_down_their_guns', '2014'], ['/talks/martin_reeves_how_to_build_a_business_that_lasts_100_years', '2016'], ['/talks/gregory_heyworth_how_i_m_discovering_the_secrets_of_ancient_texts', '2016'], ['/talks/anand_giridharadas_a_tale_of_two_americas_and_the_mini_mart_where_they_collided', '2015'], ['/talks/mariano_sigman_your_words_may_predict_your_future_mental_health', '2016'], ['/talks/martine_rothblatt_my_daughter_my_wife_our_robot_and_the_quest_for_immortality', '2015'], ['/talks/tony_wyss_coray_how_young_blood_might_help_reverse_aging_yes_really', '2015'], ['/talks/jared_diamond_how_societies_can_grow_old_better', '2013'], ['/talks/jennifer_senior_for_parents_happiness_is_a_very_high_bar', '2014'], ['/talks/genevieve_von_petzinger_why_are_these_32_symbols_found_in_ancient_caves_all_over_europe', '2015'], ['/talks/andrew_mcafee_what_will_future_jobs_look_like', '2013'], ['/talks/chris_urmson_how_a_driverless_car_sees_the_road', '2015']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=standing+guerrilla+in+the+world++it+s+been+around+for+over+fifty+years+which+means
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+in+my+lifetime+i+have+never+lived+one+day+of+peace+in+my+country
found 3 videos: [['/talks/jose_miguel_sokoloff_how_christmas_lights_helped_guerrillas_put_down_their_guns', '2014'], ['/talks/lisa_kristine_photos_that_bear_witness_to_modern_slavery', '2012'], ['/talks/alexander_betts_why_brexit_happened_and_what_to_do_next', '2016']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+guerrilla+and+the+main+group+is+the+farc+guerrillas+revolutionary+armed+forces+of+colombia
found 1 videos: [['/talks/jose_miguel_sokoloff_how_christmas_lights_helped_guerrillas_put_down_their_guns', '2014']]
selected: /talks/jose_miguel_sokoloff_how_christmas_lights_helped_guerrillas_put_down_their_guns
sleep 3 seconds to avoid blocking
------<1130>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JosephDeSimone_2015.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+thrilled+to+be+here+tonight+to+share+with+you+something+we+ve+been+working+on+for+over+two+years
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+s+in+the+area+of+additive+manufacturing+also+known+as+3d+printing
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+see+this+object+here+it+looks+fairly+simple+but+it+s+quite+complex+at+the+same+time
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+a+set+of+concentric+geodesic+structures
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+its+context++it+is+not+manufacturable+by+traditional+manufacturing+techniques
found 1 videos: [['/talks/joseph_desimone_what_if_3d_printing_was_100x_faster', '2015']]
selected: /talks/joseph_desimone_what_if_3d_printing_was_100x_faster
sleep 5 seconds to avoid blocking
------<1131>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JosephKim_2013G.stm
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=although+my+family+constantly+struggled+against+poverty++i+was+always+loved+and+cared+for+first
found 1 videos: [['/talks/joseph_kim_the_family_i_lost_in_north_korea_and_the_family_i_gained', '2013']]
selected: /talks/joseph_kim_the_family_i_lost_in_north_korea_and_the_family_i_gained
sleep 5 seconds to avoid blocking
------<1132>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JosephLekuton_2007G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+name+is+joseph+a+member+of+parliament+in+kenya++picture+a+maasai+village+and+one+evening
found 1 videos: [['/talks/joseph_lekuton_a_parable_for_kenya', '2008']]
selected: /talks/joseph_lekuton_a_parable_for_kenya
sleep 2 seconds to avoid blocking
------<1133>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JosephNye_2010G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+talk+to+you+about+power+in+this+21st+century++and+basically+what+i+d+like+to+tell+you
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+that+power+is+changing++and+there+are+two+types+of+changes+i+want+to
found 16 videos: [['/talks/joseph_nye_global_power_shifts', '2010'], ['/talks/seth_berkley_hiv_and_flu_the_vaccine_strategy', '2010'], ['/talks/paul_root_wolpe_it_s_time_to_question_bio_engineering', '2011'], ['/talks/jennifer_pahlka_coding_a_better_government', '2012'], ['/talks/aaron_koblin_visualizing_ourselves_with_crowd_sourced_data', '2011'], ['/talks/danny_hillis_back_to_the_future_of_1994', '2012'], ['/talks/carlo_ratti_architecture_that_senses_and_responds', '2011'], ['/talks/michael_pawlyn_using_nature_s_genius_in_architecture', '2011'], ['/talks/dennis_hong_my_seven_species_of_robot_and_how_we_created_them', '2010'], ['/talks/srdja_popovic_how_to_topple_a_dictator', '2011'], ['/talks/mark_raymond_victims_of_the_city', '2012'], ['/talks/tod_machover_dan_ellsey_inventing_instruments_that_unlock_new_music', '2008'], ['/talks/a_j_jacobs_my_year_of_living_biblically', '2008'], ['/talks/david_pogue_cool_tricks_your_phone_can_do', '2009'], ['/talks/amory_lovins_a_40_year_plan_for_energy', '2012'], ['/talks/paul_conneally_how_mobile_phones_power_disaster_relief', '2012']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+is+change+of+power+amongst+states+and+there+the+simple+version+of+the+message+is+it+s+moving+from+west+to+east+the+other
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+power+diffusion+the+way+power+is+moving+from+all+states+west+or+east+to+non+state+actors
found 1 videos: [['/talks/joseph_nye_global_power_shifts', '2010']]
selected: /talks/joseph_nye_global_power_shifts
sleep 5 seconds to avoid blocking
------<1134>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JosephPine_2004.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=talk+about+a+very+fundamental+change+that+is+going+on
found 1 videos: [['/talks/david_deutsch_chemical_scum_that_dream_of_distant_quasars', '2006']]
selected: /talks/david_deutsch_chemical_scum_that_dream_of_distant_quasars
sleep 2 seconds to avoid blocking
------<1135>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JosephRavenell_2016.stm
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=most+of+you+see+a+barbershop
found 5 videos: [['/talks/joseph_ravenell_how_barbershops_can_keep_men_healthy', '2016'], ['/talks/alvin_irby_how_to_inspire_every_child_to_be_a_lifelong_reader', '2018'], ['/talks/jeanne_gang_buildings_that_blend_nature_and_city', '2017'], ['/talks/christopher_emdin_teach_teachers_how_to_create_magic', '2014'], ['/talks/howard_c_stevenson_how_to_resolve_racially_stressful_situations', '2018']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+see+an+opportunity+an+opportunity+for+health
found 13 videos: [['/talks/raj_panjabi_community_health_heroes', '2018'], ['/talks/devita_davison_how_urban_agriculture_is_transforming_detroit', '2017'], ['/talks/shameem_akhtar_to_learn_is_to_be_free', '2018'], ['/talks/amar_inamdar_the_thrilling_potential_for_off_grid_solar_energy', '2018'], ['/talks/anjali_kumar_my_failed_mission_to_find_god_and_what_i_found_instead', '2018'], ['/talks/adam_foss_a_prosecutor_s_vision_for_a_better_justice_system', '2016'], ['/talks/jim_yong_kim_doesn_t_everyone_deserve_a_chance_at_a_good_life', '2017'], ['/talks/poppy_crum_technology_that_knows_what_you_re_feeling', '2018'], ['/talks/charity_wayua_a_few_ways_to_fix_a_government', '2017'], ['/talks/joshua_smith_new_nanotech_to_detect_cancer_early', '2017'], ['/talks/naoko_ishii_an_economic_case_for_protecting_the_planet', '2018'], ['/talks/benjamin_grant_what_it_feels_like_to_see_earth_from_space', '2017'], ['/talks/lloyd_pendleton_the_housing_first_approach_to_homelessness', '2017']]
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+black+men++the+barbershop+is+not+just+a+place+where+you+get+your+hair+cut+or+your+beard+trimmed+no+it+s+much+more+than+that
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=historically++the+barbershop+has+been+a+safe+haven+for+black+men
found 1 videos: [['/talks/joseph_ravenell_how_barbershops_can_keep_men_healthy', '2016']]
selected: /talks/joseph_ravenell_how_barbershops_can_keep_men_healthy
sleep 5 seconds to avoid blocking
------<1136>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JosetteSheeran_2011G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+after+many+years+working+in+trade+and+economics+four+years+ago+i+found+myself+working+on+the+front+lines+of+human+vulnerability
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+found+myself+in+the+places+where+people+are+fighting+every+day+to+survive+and+can+t+even+obtain+a+meal
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+red+cup+comes+from+rwanda+from+a+child+named+fabian
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+carry+this+around+as+a+symbol+really+of+the+challenge+and+also+the+hope
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+one+cup+of+food+a+day+changes+fabian+s+life+completely
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+what+i+d+like+to+talk+about+today+is+the+fact+that+this+morning+about+a+billion+people+on+earth
error: request timeout
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+every+seven+woke+up+and+didn+t+even+know+how+to+fill+this+cup+one+out+of+every+seven+people
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=first+i+ll+ask+you+why+should+you+care+why+should+we+care+for+most+people
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+they+think+about+hunger+they+don+t+have+to+go+far+back+on+their+own+family
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=maybe+in+their+own+lives+or+their+parents++lives+or+their+grandparents++lives
found 11 videos: [['/talks/beverly_dereck_joubert_life_lessons_from_big_cats', '2010'], ['/talks/jane_fonda_life_s_third_act', '2012'], ['/talks/cynthia_breazeal_the_rise_of_personal_robots', '2011'], ['/talks/beeban_kidron_the_shared_wonder_of_film', '2012'], ['/talks/josette_sheeran_ending_hunger_now', '2011'], ['/talks/alex_tabarrok_how_ideas_trump_crises', '2009'], ['/talks/cameron_herold_let_s_raise_kids_to_be_entrepreneurs', '2010'], ['/talks/michael_specter_the_danger_of_science_denial', '2010'], ['/talks/pico_iyer_where_is_home', '2013'], ['/talks/kevin_kelly_technology_s_epic_story', '2010'], ['/talks/juan_enriquez_the_next_species_of_human', '2009']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+remember+an+experience+of+hunger
found 10 videos: [['/talks/josette_sheeran_ending_hunger_now', '2011'], ['/talks/annie_murphy_paul_what_we_learn_before_we_re_born', '2011'], ['/talks/katherine_fulton_you_are_the_future_of_philanthropy', '2009'], ['/talks/jamie_drummond_let_s_crowdsource_the_world_s_goals', '2012'], ['/talks/lemon_andersen_please_don_t_take_my_air_jordans', '2012'], ['/talks/sir_ken_robinson_bring_on_the_learning_revolution', '2010'], ['/talks/russell_foster_why_do_we_sleep', '2013'], ['/talks/jared_diamond_how_societies_can_grow_old_better', '2013'], ['/talks/john_hunter_teaching_with_the_world_peace_game', '2011'], ['/talks/roger_ebert_remaking_my_voice', '2011']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+rarely+find+an+audience+where+people+can+go+back+very+far+without+that+experience+some+are+driven+by+compassion++feel+it+s+perhaps
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+the+fundamental+acts+of+humanity+as+gandhi+said+to+a+hungry+man+a+piece+of+bread+is+the+face+of+god
found 1 videos: [['/talks/josette_sheeran_ending_hunger_now', '2011']]
selected: /talks/josette_sheeran_ending_hunger_now
sleep 3 seconds to avoid blocking
------<1137>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JoshLuber_2015S.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+the+air+jordan+three+black+cement
found 1 videos: [['/talks/josh_luber_why_sneakers_are_a_great_investment', '2015']]
selected: /talks/josh_luber_why_sneakers_are_a_great_investment
sleep 3 seconds to avoid blocking
------<1138>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JoshPrager_2015A.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+going+to+be+a+very+good+year+a+year+of+fulfillment++realization
found 1 videos: [['/talks/joshua_prager_wisdom_from_great_writers_on_every_year_of_life', '2016']]
selected: /talks/joshua_prager_wisdom_from_great_writers_on_every_year_of_life
sleep 4 seconds to avoid blocking
------<1139>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JoshSilver_2009G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+tell+you+about+one+of+the+world+s+largest+problems+and+how+it+can+be+solved++i+d+like+to+start
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+a+little+experiment++could+you+put+your+hand+up+if+you+wear+glasses+or+contact
found 1 videos: [['/talks/joshua_silver_adjustable_liquid_filled_eyeglasses', '2009']]
selected: /talks/joshua_silver_adjustable_liquid_filled_eyeglasses
sleep 3 seconds to avoid blocking
------<1140>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JoshuaFoer_2012.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+d+like+to+invite+you+to+close+your+eyes++imagine+yourself+standing
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=outside+the+front+door+of+your+home+i+d+like+you+to+notice+the+color+of+the+door++the+material+that+it+s+made+out+of
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+visualize+a+pack+of+overweight+nudists+on+bicycles
found 1 videos: [['/talks/joshua_foer_feats_of_memory_anyone_can_do', '2012']]
selected: /talks/joshua_foer_feats_of_memory_anyone_can_do
sleep 4 seconds to avoid blocking
------<1141>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JoshuaKlein_2008.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=any+of+you+get+really+freaked+out+by+that+you+might+want+to+leave+now+so+this+is+a+vending+machine+for+crows+over+the+past+few+days+many+of+you+have+been+asking
found 1 videos: [['/talks/joshua_klein_a_thought_experiment_on_the_intelligence_of_crows', '2008']]
selected: /talks/joshua_klein_a_thought_experiment_on_the_intelligence_of_crows
sleep 2 seconds to avoid blocking
------<1142>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JoshuaPrager_2013.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+year+ago++i+rented+a+car+in+jerusalem+to+go+find+a+man+i+d+never+met+but+who+had+changed+my+life
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+didn+t+have+a+phone+number+to+call+to+say+i+was+coming
found 2 videos: [['/talks/matthew_carter_my_life_in_typefaces', '2014'], ['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+didn+t+have+an+exact+address++but+i+knew+his+name+abed
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+knew+that+he+lived+in+a+town+of+fifteen+thousand+kfar+kara++and+i+knew+that+twenty+one+years+before+just+outside+this+holy+city
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+on+an+overcast+morning+in+january+i+headed+north
found 1 videos: [['/talks/joshua_prager_in_search_of_the_man_who_broke_my_neck', '2013']]
selected: /talks/joshua_prager_in_search_of_the_man_who_broke_my_neck
sleep 5 seconds to avoid blocking
------<1143>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JoshuaPrinceRamus_2006.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+present+three+projects+in+rapid+fire+i+don+t+have+much+time+to+do+it
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+want+to+reinforce+three+ideas+with+that+rapid+fire+presentation+the+first+is+what+i+like+to+call+a+hyper+rational+process+it+s+a+process+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=takes+rationality+almost+to+an+absurd+level+and+it+transcends+all+the
found 1 videos: [['/talks/joshua_prince_ramus_behind_the_design_of_seattle_s_library', '2006']]
selected: /talks/joshua_prince_ramus_behind_the_design_of_seattle_s_library
sleep 2 seconds to avoid blocking
------<1144>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JoshuaPrinceRamus_2009X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+speak+to+you+today+about+architectural+agency
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+i+mean+by+that+is+that+it+s+time+for+architecture+to+do+things+again+not+just+represent+things
found 1 videos: [['/talks/reed_kroloff_a_tour_of_modern_architecture', '2008']]
selected: /talks/reed_kroloff_a_tour_of_modern_architecture
sleep 3 seconds to avoid blocking
------<1145>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JoshuaSmith_2016S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+forty+percent+of+us+will+hear+those+three+words+within+our+lifetime
found 3 videos: [['/talks/robert_muggah_how_to_protect_fast_growing_cities_from_failing', '2015'], ['/talks/graham_allison_is_war_between_china_and_the_us_inevitable', '2018'], ['/talks/bill_and_melinda_gates_why_giving_away_our_wealth_has_been_the_most_satisfying_thing_we_ve_done', '2014']]
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+means+that+two+out+of+five+of+your+closest+friends+and+relatives+will+be+diagnosed+with+some+form+of+cancer
found 1 videos: [['/talks/joshua_smith_new_nanotech_to_detect_cancer_early', '2017']]
selected: /talks/joshua_smith_new_nanotech_to_detect_cancer_early
sleep 1 seconds to avoid blocking
------<1146>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JoshuaWalters_2011S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+name+is+joshua+walters+i+m+a+performer
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+as+far+as+being+a+performer++i+m+also+diagnosed+bipolar
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+reframe+that+as+a+positive+because+the+crazier+i+get+onstage
found 1 videos: [['/talks/joshua_walters_on_being_just_crazy_enough', '2011']]
selected: /talks/joshua_walters_on_being_just_crazy_enough
sleep 5 seconds to avoid blocking
------<1147>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JoyBuolamwini_2016X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+joy++a+poet+of+code+on+a+mission
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+stop+an+unseen+force+that+s+rising+a+force+that+i+called+the+coded+gaze+my+term+for+algorithmic+bias
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=results+in+unfairness++however++algorithms+like+viruses+can+spread+bias+on+a+massive+scale+at+a+rapid+pace
found 1 videos: [['/talks/joy_buolamwini_how_i_m_fighting_bias_in_algorithms', '2017']]
selected: /talks/joy_buolamwini_how_i_m_fighting_bias_in_algorithms
sleep 1 seconds to avoid blocking
------<1148>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JoySun_2014S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+suspect+that+every+aid+worker+in+africa+comes+to+a+time+in+her+career+when+she+wants+to+take
found 1 videos: [['/talks/joy_sun_should_you_donate_differently', '2014']]
selected: /talks/joy_sun_should_you_donate_differently
sleep 4 seconds to avoid blocking
------<1149>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JPRangaswami_2012S.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+love+my+food+and+i+love+information
found 11 videos: [['/talks/jp_rangaswami_information_is_food', '2012'], ['/talks/amy_webb_how_i_hacked_online_dating', '2013'], ['/talks/mechai_viravaidya_how_mr_condom_made_thailand_a_better_place_for_life_and_love', '2010'], ['/talks/jamie_oliver_teach_every_child_about_food', '2010'], ['/talks/thomas_goetz_it_s_time_to_redesign_medical_data', '2011'], ['/talks/markham_nolan_how_to_separate_fact_and_fiction_online', '2012'], ['/talks/jenna_mccarthy_what_you_don_t_know_about_marriage', '2012'], ['/talks/bill_ford_a_future_beyond_traffic_gridlock', '2011'], ['/talks/paul_bloom_can_prejudice_ever_be_a_good_thing', '2014'], ['/talks/johanna_blakley_lessons_from_fashion_s_free_culture', '2010'], ['/talks/jonathan_drori_the_beautiful_tricks_of_flowers', '2011']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+children+usually+tell+me+that+one+of+those+passions+is+a+little+more+apparent+than+the+other
found 1 videos: [['/talks/jp_rangaswami_information_is_food', '2012']]
selected: /talks/jp_rangaswami_information_is_food
sleep 5 seconds to avoid blocking
------<1150>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JR_2011.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+studio+in+paris++and+the+phone+rang
found 4 videos: [['/talks/jr_my_wish_use_art_to_turn_the_world_inside_out', '2011'], ['/talks/jake_barton_the_museum_of_you', '2013'], ['/talks/john_maeda_my_journey_in_design', '2009'], ['/talks/ellen_dunham_jones_retrofitting_suburbia', '2010']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+heard+hey+jr++you+won+the+ted+prize+two+thousand+and+eleven++you+have+to+make+a+wish+to+save+the+world
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+lost++i+mean++i+can+t+save+the+world++nobody+can
found 10 videos: [['/talks/roger_mcnamee_6_ways_to_save_the_internet', '2011'], ['/talks/david_pogue_cool_tricks_your_phone_can_do', '2009'], ['/talks/jack_horner_where_are_the_baby_dinosaurs', '2012'], ['/talks/laurie_garrett_lessons_from_the_1918_flu', '2009'], ['/talks/ray_anderson_the_business_logic_of_sustainability', '2009'], ['/talks/mallika_sarabhai_dance_to_change_the_world', '2009'], ['/talks/jamie_drummond_let_s_crowdsource_the_world_s_goals', '2012'], ['/talks/richard_resnick_welcome_to_the_genomic_revolution', '2011'], ['/talks/bob_mankoff_anatomy_of_a_new_yorker_cartoon', '2013'], ['/talks/paul_root_wolpe_it_s_time_to_question_bio_engineering', '2011']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=up+come+on+you+have+dictators
found 17 videos: [['/talks/young_ha_kim_be_an_artist_right_now', '2013'], ['/talks/evgeny_morozov_how_the_net_aids_dictatorships', '2009'], ['/talks/charles_hazlewood_trusting_the_ensemble', '2011'], ['/talks/david_damberger_what_happens_when_an_ngo_admits_failure', '2011'], ['/talks/jr_my_wish_use_art_to_turn_the_world_inside_out', '2011'], ['/talks/heather_brooke_my_battle_to_expose_government_corruption', '2012'], ['/talks/jr_one_year_of_turning_the_world_inside_out', '2012'], ['/talks/john_hockenberry_we_are_all_designers', '2012'], ['/talks/leymah_gbowee_unlock_the_intelligence_passion_greatness_of_girls', '2012'], ['/talks/wael_ghonim_inside_the_egyptian_revolution', '2011'], ['/talks/kathryn_schulz_on_being_wrong', '2011'], ['/talks/julian_assange_why_the_world_needs_wikileaks', '2010'], ['/talks/marc_goodman_a_vision_of_crimes_in_the_future', '2012'], ['/talks/tyler_cowen_be_suspicious_of_simple_stories', '2012'], ['/talks/jonathan_haidt_religion_evolution_and_the_ecstasy_of_self_transcendence', '2012'], ['/talks/maajid_nawaz_a_global_culture_to_fight_extremism', '2011'], ['/talks/charmian_gooch_meet_global_corruption_s_hidden_players', '2013']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ruling+the+world++population+is+growing+by+millions++there+s+no+more+fish+in+the+sea++the+north+pole+is+melting
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+as+the+last+ted+prize+winner+said+we+re+all+becoming+fat
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+ted+guys+i+just+won+t+show+up++i+can+t+do+anything+to+save+the+world+she+said+hey+jr+your+wish+is+not+to+save+the+world++but+to+change+the
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+started+when+i+was+fifteen+years+old++and+at+that+time++i+was+not+thinking+about+changing+the+world++i+was+doing+graffiti
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=writing+my+name+everywhere+using+the+city+as+a+canvas
found 1 videos: [['/talks/jr_my_wish_use_art_to_turn_the_world_inside_out', '2011']]
selected: /talks/jr_my_wish_use_art_to_turn_the_world_inside_out
sleep 4 seconds to avoid blocking
------<1151>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JR_2012.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=twelve+years+ago++i+was+in+the+street+writing+my+name+to+say+i+exist+then+i+went+to+taking+photos+of+people
found 1 videos: [['/talks/jr_one_year_of_turning_the_world_inside_out', '2012']]
selected: /talks/jr_one_year_of_turning_the_world_inside_out
sleep 1 seconds to avoid blocking
------<1152>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JuanEnriquez_2003.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+supposed+to+scare+you+because+it+s
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+fear+right++and+you+should+be+really+afraid++but+not+for+the+reasons+why+you+think+you+should+be+you+should+be+really+afraid+that
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+we+stick+up+the+first+slide+on+this+thing
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+we+go+that+you+re+missing+out+because+if+you
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=spend+this+week+thinking+about+iraq+and+thinking+about+bush
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+thinking+about+the+stock+market+you+re+going+to+miss+one+of+the+greatest+adventures+that+we+ve+ever+been+on+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+what+this+adventure+s+really+about
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+crystallized+dna++every+life+form+on+this+planet+every+insect+every+bacteria+every+plant+every+animal
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+coded+in+that+stuff++and+if+you+want+to+take+a+single+crystal+of+dna++it+looks+like+that+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+re+just+beginning+to+understand+this+stuff++and+this+is+the+single+most+exciting+adventure
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+we+have+ever+been+on+it+s+the+single+greatest+mapping+project+we+ve+ever+been+on+if+you+think+that+the+mapping+of+america+s+made+a+difference+or+landing+on+the+moon+or+this+other
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+the+map+of+ourselves+and+the+map+of+every+plant+and+every+insect+and+every+bacteria
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+really+makes+a+difference++and+it+s+beginning+to+tell+us+a+lot+about+evolution
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+this+stuff+is+and+richard+dawkins+has+written+about+this+is+this+is+really+a+river+out+of+eden+so+the+three+point+two+billion+base+pairs+inside+each+of+your+cells
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+really+a+history+of+where+you+ve+been+for+the+past+billion+years++and+we+could+start+dating+things
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=changing+medicine+and+archeology++it+turns+out+that+if+you+take+the+human+species+about+seven+hundred+years+ago
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=white+europeans+diverged+from+black+africans+in+a+very+significant+way
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=white+europeans+were+subject+to+the+plague++and+when+they+were+subject+to+the+plague+most+people+didn+t+survive+but+those+who+survived
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+mutation+was+passed+on+to+their+kids+because+they+re+the+ones+that+survived+so+there+was+a+great+deal+of+population+pressure++in+africa+because+you+didn+t+have+these+cities
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+didn+t+have+that+ccr5+population+pressure+mutation+we+can+date+it+to+seven+hundred+years+ago
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+is+one+of+the+reasons+why+aids+is+raging+across+africa+as+fast+as+it+is+and+not+as+fast+across+europe
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+re+beginning+to+find+these+little+things
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+malaria+for+sickle+cell+for
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=cancers++and+in+the+measure+that+we+map+ourselves+this+is+the+single+greatest+adventure+that+we+ll+ever+be+on++and+this+friday++i+want+you+to+pull+out+a+really+good+bottle+of+wine
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+want+you+to+toast+these+two+people
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+this+friday+fifty+years+ago
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=watson+and+crick+found+the+structure+of+dna
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+is+almost+as+important+a+date+as+the
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+february+when+we+first+mapped+ourselves+but+anyway+we+ll+get+to+that++i+thought+we+d+talk+about+the+new+zoo
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+all+you+guys+have+heard+about+dna+all+the+stuff+that+dna+does+but
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+of+the+stuff+we+re+discovering+is+kind+of+nifty+because
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+turns+out+to+be+the+single+most+abundant+species+on+the+planet
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+think+you+re+successful+or+cockroaches+are+successful+it+turns+out+that+there+s+ten+trillion+trillion+pleurococcus+sitting+out+there
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=project+is+so+important+because+we+re+just+beginning+to+learn+where+we+came+from+and+what+we+are
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+re+finding+amoebas+like+this+this+is+the+amoeba+dubia+and
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+amoeba+dubia+doesn+t+look+like+much++except+that+each+of+you+has+about+three+point+two+billion+letters+which+is+what+makes+you+you+as+far+as+gene+code+inside
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+little+amoeba+which+you+know+sits+in+water+in+hundreds+and+millions+and+billions
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=turns+out+to+have+six+hundred+and+twenty+billion+base+pairs
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+this+little+thingamajig+has+a+genome+that+s+two+hundred+times+the+size+of+yours
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+if+you+re+thinking+of+efficient+information+storage+mechanisms++it+may+not+turn+out+to+be+chips
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+may+turn+out+to+be+something+that+looks+a+little+like+that+amoeba+and+again+we+re+learning+from+life
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+how+life+works+this+funky+little+thing+people+didn+t+used+to+think
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+it+was+worth+taking+samples+out+of+nuclear+reactors+because+it+was+dangerous
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+of+course+nothing+lived+there++and+then+finally+somebody+picked+up+a+microscope+and+looked+at+the+water+that+was+sitting+next+to+the+cores
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+sitting+next+to+that+water+in+the+cores+was+this+little+deinococcus+radiodurans+doing+a+backstroke
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=having+its+chromosomes+blown+apart+every+day++six+seven+times+restitching+them++living+in+about+two+hundred+times+the+radiation+that+would+kill+you
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+by+now+you+should+be+getting+a+hint+as+to+how+diverse+and+how+important+and+how+interesting+this+journey+into+life+is
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+how+many+different+life+forms+there+are+and+how+there+can+be+different+life+forms+living+in+very+different+places
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=maybe+even+outside+of+this+planet++because+if+you+can+live+in+radiation+that+looks+like+this
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+brings+up+a+whole+series+of+interesting+questions+this+little+thingamajig+we+didn+t+know+this+thingamajig+existed
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+should+have+known+that+this+existed+because+this+is+the+only+bacteria+that+you+can+see+to+the+naked+eye
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+this+thing+is+zero+point+seven+five+millimeters+it+lives+in+a+deep+trench+off+the+coast+of+namibia++and+what+you+re+looking+at+with+this+namibiensis
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+the+biggest+bacteria+we+ve+ever+seen+so+it+s+about+the+size+of+a+little
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=period+on+a+sentence++again++we+didn+t+know+this+thing+was+there
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=three+years+ago+we+re+just+beginning+this+journey+of+life+in+the+new+zoo
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+a+really+odd+one+this+is+ferroplasma+the+reason+why+ferroplasma+is+interesting+is+because+it
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=eats+iron+lives+inside+the+equivalent+of+battery+acid
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+when+you+think+of+odd+life+forms+when+you+think+of+what+it+takes+to+live
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+turns+out+this+is+a+very+efficient+life+form+and+they+call+it+an+archaea+archaea+means+the+ancient+ones
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+reason+why+they+re+ancient+is+because+this+thing+came+up+when+this+planet+was+covered+by+things+like+sulfuric+acid+in+batteries
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+the+earth+was+part+of+a+melted+core+so+it+s+not+just+dogs+and+cats+and+whales+and+dolphins+that+you+should+be+aware+of
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+interested+in+on+this+little+journey+your+fear+should+be+that+you+are+not+that+you+re+paying+attention+to+stuff+which+is+temporal+i+mean++george+bush
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+s+going+to+be+gone+alright
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=life+isn+t+whether+the+humans+survive+or+don+t+survive+these+things+are+going+to+be+living+on+this
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=planet+or+other+planets++and+it+s+just+beginning+to+understand+this+code+of+dna+that+s+really+the+most+exciting+intellectual
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=adventure+that+we+ve+ever+been+on
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+can+do+strange+things+with+this+stuff++this+is+a+baby+gaur++conservation+group+gets+together++tries+to+figure+out
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+to+breed+an+animal+that+s+almost+extinct+they+can+t+do+it+naturally+so+what+they+do+with+this+thing+is+they+take
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+spoon+take+some+cells+out+of+an+adult+gaur+s+mouth+code
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=take+the+cells+from+that+and+insert+it+into+a+fertilized+cow+s+egg++reprogram
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=cow+s+egg+different+gene+code++when+you+do+that+the+cow+gives+birth+to+a+gaur
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+australians+bless+their+hearts+are+playing+with+these+things+now+the+last+of+these+things+died+in+september+one+thousand+nine+hundred+and+thirty+six+these+are+tasmanian+tigers
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+last+known+one+died+at+the+hobart+zoo
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+it+turns+out+that+as+we+learn+more+about+gene+code+and+how+to+reprogram+species++we+may+be+able+to+close+the+gene+gaps
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+deteriorate+dna++and+when+we+learn+how+to
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=close+the+gene+gaps+then+we+can+put+a+full+string+of+dna+together++and+if+we+do+that+and+insert+this+into+a+fertilized+wolf+s+egg
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+may+give+birth+to+an+animal+that+hasn+t+walked+the+earth+since+one+thousand+nine+hundred+and+thirty+six
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+you+can+start+going+back+further+and+you+can+start+thinking+about+dodos++and+you+can+think+about+other
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+in+other+places+like+maryland++they+re+trying+to+figure+out+what+the+primordial+ancestor+is
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+each+of+us+contains+our+entire+gene+code+of+where+we+ve+been+for+the+past+billion+years++because+we+ve+evolved+from+that+stuff
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+take+that+tree+of+life+and+collapse+it+back+and+in+the+measure+that+you+learn+to+reprogram+maybe+we+ll+give+birth
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+something+that+is+very+close+to+the+first+primordial+ooze++and+it+s+all+coming+out+of+things+that+look+like+this
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+companies+that+didn+t+exist+five+years+ago++huge+gene+sequencing+facilities+the
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=size+of+football+fields++some+are+public+some+are+private+it+takes+about+five+billion+dollars+to+sequence+a+human+being+the+first+time++takes+about+three+million+dollars+the+second+time
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+will+have+a+1+000+dollar+genome+within+the+next+five+to+eight+years
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+means+each+of+you+will+contain
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+a+cd+your+entire+gene+code++and+it+will+be+really+boring+it+will+read
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+really+neat+thing+about+this+stuff
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+that+s+life+and+laurie+s+going+to+talk+about+this+one+a+little+bit+because+if+you+happen+to+find+this+one+inside+your+body+you+re+in+big+trouble+because+that+s+the+source+code+for+ebola
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+one+of+the+deadliest+diseases+known+to+humans+but+plants+work+the+same+way+and+insects+work+the+same+way+and+this+apple+works+the+same+way+this+apple+is+the+same+thing+as+this+floppy+disk
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+this+thing+codes+ones+and+zeros++and+this+thing+codes+a
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+sits+up+there+absorbing+energy+on+a+tree+and+one+fine+day+it+has+enough+energy+to+say++execute+and+it+goes+[+thump+]+right
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+when+it+does+that++pushes+a+exe+what+it+does+is+it+executes+the+first+line+of+code+which+reads+just+like+that
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+means+make+a+root+next+line+of+code+make+a+stem+next+line+of+code++tacgggg+make+a+flower+that+s+white+that+blooms+in+the+spring+that+smells+like+this
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+measure+that+you+have+the+code+and+the+measure+that+you+read+it+and+by+the+way+the+first+plant+was+read+two+years+ago+the
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=first+human+was+read+two+years+ago+the+first+insect+was+read+two+years+ago+the
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=first+thing+that+we+ever+read+was+in+one+thousand+nine+hundred+and+ninety+five+a+little+bacteria+called+haemophilus+influenzae
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+measure+that+you+have+the+source+code+as+all+of+you+know+you+can+change+the+source+code++and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=can+reprogram+life+forms+so+that+this+little+thingy+becomes+a+vaccine
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+this+little+thingy+starts+producing+biomaterials+which+is+why+dupont+is+now+growing+a+form+of+polyester+that+feels+like+silk+in+corn
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+changes+all+rules++this+is+life++but+we+re+reprogramming+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+what+you+look+like
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+one+of+your+chromosomes++and+what+you+can+do+now+is+you+can+outlay+exactly+what+your+chromosome+is+and+what+the+gene+code+on+that+chromosome+is+right+here
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+what+those+genes+code+for+and+what+animals+they+code+against++and+then+you+can+tie+it+to+the+literature
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+in+the+measure+that+you+can+do+that+you+can+go+home+today
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+get+on+the+internet+and+access+the+world+s+biggest+public+library+which+is+a+library+of+life
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+can+do+some+pretty+strange+things+because+in+the+same+way+as+you+can+reprogram+this+apple+if+you+go+to+cliff+tabin+s+lab+at+the+harvard+medical+school++he+s+reprogramming+chicken
error: request timeout
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=why+would+cliff+be+doing+that+he+doesn+t+have+a+restaurant+the
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=reason+why+he+s+reprogramming+that+animal+to+have+more+wings+is+because+when+you+used+to+play+with+lizards+as+a+little+child
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+picked+up+the+lizard+sometimes+the+tail+fell+off
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+so+in+human+beings++you+cut+off+an+arm++you+cut+off+a+leg+it+doesn+t+regrow++but+because+each+of+your+cells+contains+your+entire+gene+code
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=each+cell+can+be+reprogrammed+if+we+don+t+stop+stem+cell+research
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+if+we+don+t+stop+genomic+research+to+express+different+body+functions
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+in+the+measure+that+we+learn+how+chickens+grow+wings+and+what+the+program+is+for+those+cells+to
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+stop+undifferentiated+cells+which+you+know+as+cancer
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+one+of+the+things+we+re+going+to+learn+how+to+do+is+how+to+reprogram+cells+like+stem+cells+in+such+a+way+that+they+express+bone+stomach
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=skin++pancreas++and+you+are+likely+to+be+wandering+around+and+your+children+on+regrown+body+parts
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+some+places+in+the+world+where+they+don+t+stop+the+research
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+each+of+you+differs+from+the+person+next+to+you+by+one+in+a+thousand+but+only+three+percent+codes+which+means+it+s+only+one+in+a+thousand+times+three+percent+very+small+differences+in+expression+and+punctuation+can+make+a+significant+difference+take+a+simple+declarative+sentence
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=men+read+that+sentence+and+they+look+at+that+sentence+and+they+read+this+okay
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+women+look+at+that+sentence+and+they+say+uh+uh+wrong++this+is+the+way+it+should+be+seen
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+what+your+genes+are+doing+that+s+why+you+differ+from+this+person+over+here
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+one+in+a+thousand++right++but+you+know+he+s+reasonably+good+looking+but+i+won+t+go+there
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+do+this+stuff+even+without+changing+the+punctuation+you+can+look+at
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+right++and+they+look+at+the+world+a+little+differently+they+look+at+the+same+world+and+they+say
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+how+the+same+gene+code+that+s+why+you+have+thirty+thousand+genes++mice+have+thirty+thousand+genes+husbands+have+thirty+thousand+genes
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=mice+and+men+are+the+same+wives+know+that++but+anyway
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+make+very+small+changes+in+gene+code+and+get+really
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=even+with+the+same+string+of+letters
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+what+your+genes+are+doing+every+day++that+s+why+sometimes+a+person+s+genes+don+t+have+to+change+a+lot+to+get+cancer
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+little+chippies+these+things+are+the+size+of+a+credit+card++they+will+test+any+one+of+you+for+sixty+thousand
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+brings+up+questions+of+privacy+and+insurability+and+all+kinds+of+stuff+but+it+also+allows+us+to+start+going+after+diseases+because+if+you+run
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+person+who+has+leukemia+through+something+like+this+it+turns+out+that+three+diseases+with+completely+similar+clinical+syndromes
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+completely+different+diseases+because+in+all+leukemia+that+set+of+genes+over+there+over+expresses+in+mll+it+s+the+middle+set+of+genes++and+in
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+the+bottom+set+of+genes++and+if+one+of+those+particular+things+is+expressing+in+your+body++then+you+take+gleevec+and+you+re+cured
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+it+is+not+expressing+in+your+body+if+you+don+t+have+one+of+those+types+a+particular+one+of+those+types
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=don+t+take+gleevec+it+won+t+do+anything+for+you
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=same+thing+with+receptin+if+you+ve+got+breast+cancer
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=don+t+have+an+her+2+receptor+don+t+take+receptin++changes+the+nature+of+medicine++changes+the+predictions+of+medicine+changes+the+way+medicine+works
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+greatest+repository+of+knowledge+when+most+of+us+went+to+college+was+this+thing
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+turns+out+that+this+is+not+so+important+any+more+the+u+s+library+of+congress
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+terms+of+its+printed+volume+of+data+contains+less+data+than+is+coming+out+of+a+good+genomics+company+every+month
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+a+compound+basis++let+me+say+that+again+a+single+genomics+company+generates+more+data+in+a+month+on+a+compound+basis++than+is+in+the+printed
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=collections+of+the+library+of+congress++this+is+what+s+been+powering+the+u+s+economy++it+s+moore+s+law++so+all+of+you+know
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=halves+every+eighteen+months+and+the+power+doubles+right++except+that+when+you+lay+that+side+by+side
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+the+speed+with+which+gene+data+s+being+deposited+in+genbank+moore+s+law
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+right+here++it+s+the+blue+line
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+on+a+log+scale+and+that+s+what+superexponential+growth+means++this+is+going+to+push+computers
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+have+to+grow+faster+than+they+ve+been+growing+because+so+far+there+haven+t+been+applications+that+have+been+required
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+need+to+go+faster+than+moore+s+law+this+stuff+does
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+here+s+an+interesting+map+this+is+a+map+which+was+finished+at+the+harvard+business+school+one+of+the+really+interesting+questions+is+if+all+this
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=data+s+free+who+s+using+it+this+is+the+greatest+public+library+in+the+world+well+it+turns+out+that+there+s+about+twenty+seven+trillion+bits
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=moving+inside+from+the+united+states+to+the+united+states+about+four+point+six
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=trillion+is+going+over+to+those+european+countries+about+five+point+five+s+going+to+japan+there+s+almost+no+communication+between+japan
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+nobody+else+is+literate+in+this+stuff
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+free++no+one+s+reading
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+they+re+focusing+on+the+war+they+re+focusing+on+bush+they+re+not+interested+in+life++so+this+is+what+a+new+map+of+the+world+looks+like
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+is+the+genomically+literate+world
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+is+a+problem++in+fact+it+s+not+a+genomically+literate+world+you+can+break+this+out+by+states
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+can+watch+states+rise+and+fall+depending+on+their+ability+to+speak+a+language+of+life+and+you+can+watch+new+york
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fall+off+a+cliff+and+you+can+watch+new
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=jersey+fall+off+a+cliff+and+you+can+watch+the+rise
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+the+new+empires+of+intelligence
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+can+break+it+out+by+counties++because+it+s+specific+counties+and+if+you+want+to+get+more+specific+it+s+actually+specific+zip+codes
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+you+want+to+know+where+life+is+happening++well+in+southern+california+it+s+happening+in+ninety+two+thousand+one+hundred
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+s+it+and+that+s+the+triangle+between+salk+scripps+ucsd+and+it+s+called+torrey+pines+road
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+means+you+don+t+need+to+be+a+big+nation+to+be+successful+it+means+you+don+t+need+a+lot+of+people+to+be+successful
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+means+you+can+move+most+of+the+wealth+of+a+country+in+about+three+or+four+carefully+picked+747s
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=same+thing+in+massachusetts+looks+more+spread+out+but+oh+by+the+way+the+ones+that+are+the+same+color+are+contiguous
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+s+the+net+effect+of+this+in+an+agricultural+society+the+difference+between+the+richest+and+the+poorest+the+most+productive+and+the+least+productive+was+five+to+one
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=why+because+in+agriculture+if+you+had+ten+kids+and+you+grow+up+a+little+bit+earlier
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+work+a+little+bit+harder+you+could+produce+about+five+times+more+wealth+on+average+than+your+neighbor+in+a+knowledge
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+number+is+now+four+hundred+and+twenty+seven+to+one
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+really+matters+if+you+re+literate+not+just+in+reading+and+writing+in+english+and+french+and+german++but+in+microsoft+and+linux+and+apple
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+very+soon+it+s+going+to+matter+if+you+re+literate+in+life+code
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+if+there+is+something+you+should+fear+it+s+that+you+re+not+keeping+your+eye+on+the+ball
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+it+really+matters+who+speaks+life
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+why+nations+rise+and+fall
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+turns+out+that+if+you+went+back+to+the
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=productive+nation+on+earth+was+australia
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=per+person+and+new+zealand+was+way+up+there++and+then+the+u+s+came+in+about+one+thousand+nine+hundred+and+fifty+and+then+switzerland+about+one+thousand+nine+hundred+and+seventy+three+and+then+the+u+s+got+back+on+top
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=beat+up+their+chocolates+and+cuckoo+clocks
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+today+of+course+you+all+know+that+the+most+productive+nation+on+earth+is+luxembourg
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=producing+about+one+third+more+wealth+per+person+per+year+than+america
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=no+oil++no+diamonds++no+natural+resources+just+smart+people+moving+bits
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+s+how+many+people+it+takes+to+produce+a+single+u+s+patent
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+about+three+thousand+americans+six+thousand+koreans++fourteen+thousand+brits+seven+hundred+and+ninety+thousand+argentines+you+want+to+know+why+argentina+s+crashing
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+got+nothing+to+do+with+inflation
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=nothing+to+do+with+privatization+you+can+take
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ivy+league+economist+stick+him+in+charge+of+argentina++he+still+crashes+the+country+because+he+doesn+t+understand+how+the+rules+have+changed+oh
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=yeah+and+it+takes+about+five+point+six+million+indians+well+watch+what+happens+to+india+india+and+china+used+to+be+forty+percent+of+the+global+economy
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=just+at+the+industrial+revolution+and+they+are+now+about+four+point+eight+percent
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=two+billion+people+one+third+of+the+global+population+producing+five+percent+of+the+wealth
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+they+didn+t+get+this+change+because+they+kept+treating+their+people+like+serfs+instead+of+like
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+didn+t+keep+the+people+who+were+educated+they+didn+t+foment+the+businesses+they+didn+t+do+the+ipos
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=silicon+valley+did++and+that+s+why+they+say+that+silicon+valley+has+been+powered+by
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+integrated+circuits+indians+and+chinese
found 0 videos: []
error: no video is found.
sleep 1 seconds to avoid blocking
------<1153>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JuanEnriquez_2007S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=bioenergy+is+not+ethanol+bioenergy+isn+t+global+warming
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=bioenergy+is+something+which+seems+counterintuitive+bioenergy+is+oil+it+s+gas
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+coal++and+part+of+building+that+bridge+to+the+future+to+the+point+where+we+can+actually+see+the+oceans+in+a+rational+way+or+put+up+these+geo+spatial+orbits
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+will+twirl+or+do+microwaves+or+stuff+is+going+to+depend+on+how+we+understand+bioenergy+and+manage+it
found 1 videos: [['/talks/juan_enriquez_using_biology_to_rethink_the_energy_challenge', '2007']]
selected: /talks/juan_enriquez_using_biology_to_rethink_the_energy_challenge
sleep 3 seconds to avoid blocking
------<1154>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JuanEnriquez_2009.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+a+great+big+elephant+in+the+room+called+the+economy
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+let+s+start+talking+about+that+i+wanted+to+give+you+a+current+picture+of+the+economy
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+what+i+have+behind+myself
found 6 videos: [['/talks/ben_goldacre_battling_bad_science', '2011'], ['/talks/morgan_spurlock_the_greatest_ted_talk_ever_sold', '2011'], ['/talks/bruce_feiler_the_council_of_dads', '2011'], ['/talks/harsha_bhogle_the_rise_of_cricket_the_rise_of_india', '2010'], ['/talks/nicholas_negroponte_one_laptop_per_child_two_years_on', '2008'], ['/talks/bill_strickland_rebuilding_a_neighborhood_with_beauty_dignity_hope', '2008']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+of+course+what+we+have+to+remember+is+this
found 1 videos: [['/talks/eve_ensler_embrace_your_inner_girl', '2010']]
selected: /talks/eve_ensler_embrace_your_inner_girl
sleep 1 seconds to avoid blocking
------<1155>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JuanEnriquez_2012S.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+good+stories+this+starts+a+long+long+time+ago+when+there+was+basically+nothing++so+here+is+a+complete+picture+of+the+universe+about+14+odd+billion+years+ago
found 1 videos: [['/talks/juan_enriquez_will_our_kids_be_a_different_species', '2012']]
selected: /talks/juan_enriquez_will_our_kids_be_a_different_species
sleep 2 seconds to avoid blocking
------<1156>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JuanEnriquez_2013U.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+right+so+let+s+take+four+subjects+that+obviously+go+together++big+data+tattoos+immortality
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+greeks+right+now+the+issue+about+tattoos
found 2 videos: [['/talks/juan_enriquez_your_online_life_permanent_as_a_tattoo', '2013'], ['/talks/jarrett_j_krosoczka_how_a_boy_became_an_artist', '2013']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+you+don+t+have+to+say+a+lot
found 11 videos: [['/talks/jack_horner_where_are_the_baby_dinosaurs', '2012'], ['/talks/jack_horner_building_a_dinosaur_from_a_chicken', '2011'], ['/talks/geena_rocero_why_i_must_come_out', '2014'], ['/talks/charles_hazlewood_trusting_the_ensemble', '2011'], ['/talks/wayne_mcgregor_a_choreographer_s_creative_process_in_real_time', '2012'], ['/talks/richard_seymour_how_beauty_feels', '2011'], ['/talks/stella_young_i_m_not_your_inspiration_thank_you_very_much', '2014'], ['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013'], ['/talks/david_chalmers_how_do_you_explain_consciousness', '2014'], ['/talks/mick_mountz_what_happens_inside_those_massive_warehouses', '2012'], ['/talks/kakenya_ntaiya_a_girl_who_demanded_school', '2013']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+tattoos+tell+you+a+lot+of+stories+if+i+can+ask+an+indiscreet+question+how+many+of+you+have+tattoos
found 1 videos: [['/talks/juan_enriquez_your_online_life_permanent_as_a_tattoo', '2013']]
selected: /talks/juan_enriquez_your_online_life_permanent_as_a_tattoo
sleep 4 seconds to avoid blocking
------<1157>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JuanEnriquez_2015P.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+an+actor+called+dustin+hoffman+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=years+ago+he+made+this+movie+which+some+of+you+may+have+heard+of+called+the+graduate
found 10 videos: [['/talks/juan_enriquez_we_can_reprogram_life_how_to_do_it_wisely', '2016'], ['/talks/jim_yong_kim_doesn_t_everyone_deserve_a_chance_at_a_good_life', '2017'], ['/talks/rives_the_museum_of_four_in_the_morning', '2014'], ['/talks/adam_driver_my_journey_from_marine_to_actor', '2016'], ['/talks/lloyd_pendleton_the_housing_first_approach_to_homelessness', '2017'], ['/talks/jim_simons_the_mathematician_who_cracked_wall_street', '2015'], ['/talks/joel_selanikio_the_big_data_revolution_in_health_care', '2013'], ['/talks/stuart_firestein_the_pursuit_of_ignorance', '2013'], ['/talks/latif_nasser_the_amazing_story_of_the_man_who_gave_us_modern_pain_relief', '2015'], ['/talks/jarrett_j_krosoczka_how_a_boy_became_an_artist', '2013']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+there+s+two+key+scenes+in+that+movie+the+first+one+is+the+seduction+scene+i+m+not+going+to+talk+about+that+tonight
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+second+scene+is+where+he+s+taken+out+by+the+old+guy+to+the+pool+and+as+a+young+college+graduate+the+old+guy+basically+says+one+word
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+of+course+all+of+you+know+what+that+word+is+it+s+plastics
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=laughter+and+the+only+problem+with+that+is+it+was+completely+the
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+me+tell+you+why+it+was+so+wrong+the+word+should+have+been+silicon
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+reason+it+should+have+been+silicon+is+because+the+basic+patents+for+semiconductors
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=had+already+been+made+had+already+been+filed++and+they+were+already+building+them
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+silicon+valley+was+just+being+built+in+one+thousand+nine+hundred+and+sixty+seven+when+this+movie+was+released++and+the+year+after+the+movie+was+released+intel+was+founded
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+had+the+graduate+heard+the+right+one+word
found 11 videos: [['/talks/pardis_sabeti_how_we_ll_fight_the_next_deadly_virus', '2016'], ['/talks/juan_enriquez_we_can_reprogram_life_how_to_do_it_wisely', '2016'], ['/talks/john_mcwhorter_txtng_is_killing_language_jk', '2013'], ['/talks/nancy_lublin_how_data_from_a_crisis_text_line_is_saving_lives', '2015'], ['/talks/peter_singer_the_why_and_how_of_effective_altruism', '2013'], ['/talks/dave_isay_everyone_around_you_has_a_story_the_world_needs_to_hear', '2015'], ['/talks/meg_jay_why_30_is_not_the_new_20', '2013'], ['/talks/sajay_samuel_how_college_loans_exploit_students_for_profit', '2016'], ['/talks/siddhartha_roy_science_in_service_to_the_public_good', '2017'], ['/talks/jim_yong_kim_doesn_t_everyone_deserve_a_chance_at_a_good_life', '2017'], ['/talks/chimamanda_ngozi_adichie_we_should_all_be_feminists', '2017']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=maybe+he+would+have+ended+up+onstage+oh+i+don+t+know+maybe+with+these+two
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=laughter+so+as+you+re+thinking+of+that
found 14 videos: [['/talks/gregoire_courtine_the_paralyzed_rat_that_walked', '2013'], ['/talks/joan_blades_and_john_gable_free_yourself_from_your_filter_bubbles', '2017'], ['/talks/nicholas_negroponte_a_30_year_history_of_the_future', '2014'], ['/talks/dame_ellen_macarthur_the_surprising_thing_i_learned_sailing_solo_around_the_world', '2015'], ['/talks/adam_driver_my_journey_from_marine_to_actor', '2016'], ['/talks/john_green_the_nerd_s_guide_to_learning_everything_online', '2015'], ['/talks/raffaello_d_andrea_the_astounding_athletic_power_of_quadcopters', '2013'], ['/talks/nagin_cox_what_time_is_it_on_mars', '2017'], ['/talks/hendrik_poinar_bring_back_the_woolly_mammoth', '2013'], ['/talks/moshe_szyf_how_early_life_experience_is_written_into_dna', '2017'], ['/talks/helen_fisher_technology_hasn_t_changed_love_here_s_why', '2016'], ['/talks/alastair_parvin_architecture_for_the_people_by_the_people', '2013'], ['/talks/steve_ramirez_and_xu_liu_a_mouse_a_laser_beam_a_manipulated_memory', '2013'], ['/talks/gautam_bhan_a_bold_plan_to_house_100_million_people', '2017']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+s+see+what+bit+of+advice+we+might+want+to+give+so+that+your+next+graduate+doesn+t+become+a+tupperware+salesman
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=word+of+advice+would+you+give+people+when+you+took+a+college+graduate+out+by+the+pool
found 2 videos: [['/talks/juan_enriquez_we_can_reprogram_life_how_to_do_it_wisely', '2016'], ['/talks/dilip_ratha_the_hidden_force_in_global_economics_sending_money_home', '2014']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+said+one+word+just+one+word+i+think+the+answer+would+be+lifecode+so+what
found 1 videos: [['/talks/juan_enriquez_we_can_reprogram_life_how_to_do_it_wisely', '2016']]
selected: /talks/juan_enriquez_we_can_reprogram_life_how_to_do_it_wisely
sleep 3 seconds to avoid blocking
------<1158>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JuanEnriquez_2016T.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+we+re+beginning+to+get+all+the+tools+together+to+evolve+ourselves++and+we+can+evolve+bacteria+and+we+can+evolve+plants+and+we+can+evolve
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+re+now+reaching+a+point+where+we+really+have+to+ask+is+it+really+ethical+and+do+we+want+to+evolve+human+beings+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+you+re+thinking+about+that+let+me+talk+about+that+in+the+context+of+prosthetics
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+this+is+the+iron+hand+that+belonged+to+one+of+the+german+counts++loved+to+fight
found 1 videos: [['/talks/juan_enriquez_what_will_humans_look_like_in_100_years', '2016']]
selected: /talks/juan_enriquez_what_will_humans_look_like_in_100_years
sleep 1 seconds to avoid blocking
------<1159>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JudeKelly_2016W.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=why+do+we+think+that+stories+by+men+are+deemed+to+be+of+universal+importance+and+stories+by+women
found 1 videos: [['/talks/jude_kelly_why_women_should_tell_the_stories_of_humanity', '2017']]
selected: /talks/jude_kelly_why_women_should_tell_the_stories_of_humanity
sleep 5 seconds to avoid blocking
------<1160>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JudsonBrewer_2015P.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+was+first+learning+to+meditate+the+instruction+was+to+simply+pay+attention+to+my+breath
found 1 videos: [['/talks/judson_brewer_a_simple_way_to_break_a_bad_habit', '2016']]
selected: /talks/judson_brewer_a_simple_way_to_break_a_bad_habit
sleep 4 seconds to avoid blocking
------<1161>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JudyJohnston_2013U.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+would+be+a+good+end+of+life++and+i+m+talking+about+the+very+end+i+m+talking+about+dying
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+all+think+a+lot+about+how+to+live+well
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+d+like+to+talk+about+increasing+our+chances+of+dying+well
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+not+a+geriatrician++i+design+reading+programs+for+preschoolers
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+i+know+about+this+topic+comes+from+a+qualitative+study+with+a+sample+size+of+two
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+last+few+years+i+helped+two+friends+have+the+end+of+life+they+wanted++jim+and+shirley+modini+spent+their+sixty+eight+years+of+marriage+living+off
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+mountains+of+sonoma+county+they+kept+just+enough+livestock+to+make+ends+meet
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+that+the+majority+of+their+ranch+would+remain+a+refuge+for+the+bears+and+lions+and+so+many+other+things+that+lived+there++this+was+their+dream
error: request timeout
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+their+80s+they+were+both+only+children+who+chose+not+to+have+kids
found 5 videos: [['/talks/judy_macdonald_johnston_prepare_for_a_good_end_of_life', '2013'], ['/talks/ethan_nadelmann_why_we_need_to_end_the_war_on_drugs', '2014'], ['/talks/david_brooks_the_social_animal', '2011'], ['/talks/harvey_fineberg_are_we_ready_for_neo_evolution', '2011'], ['/talks/anote_tong_my_country_will_be_underwater_soon_unless_we_work_together', '2015']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+we+became+friends+i+became+their+trustee+and+their+medical+advocate+but+more+importantly
found 1 videos: [['/talks/judy_macdonald_johnston_prepare_for_a_good_end_of_life', '2013']]
selected: /talks/judy_macdonald_johnston_prepare_for_a_good_end_of_life
sleep 4 seconds to avoid blocking
------<1162>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JuliaBacha_2011G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+a+filmmaker+for+the+last+eight+years+i+have+dedicated+my+life
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+documenting+the+work+of+israelis+and+palestinians+who+are+trying+to+end+the+conflict+using+peaceful
found 1 videos: [['/talks/julia_bacha_pay_attention_to_nonviolence', '2011']]
selected: /talks/julia_bacha_pay_attention_to_nonviolence
sleep 5 seconds to avoid blocking
------<1163>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JuliaBacha_2016T.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=twelve+years+ago+i+picked+up+a+camera+for+the+first+time
found 1 videos: [['/talks/julia_bacha_how_women_wage_conflict_without_violence', '2016']]
selected: /talks/julia_bacha_how_women_wage_conflict_without_violence
sleep 3 seconds to avoid blocking
------<1164>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JuliaGalef_2016X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+d+like+you+to+imagine+for+a+moment+that+you+re+a+soldier+in+the+heat+of+battle
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=maybe+you+re+a+roman+foot+soldier+or+a+medieval+archer+or+maybe+you+re+a+zulu+warrior
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=regardless+of+your+time+and+place+there+are+some+things+that+are+constant+your+adrenaline+is+elevated
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+your+actions+are+stemming+from+these+deeply+ingrained+reflexes++reflexes+rooted+in+a+need+to+protect+yourself+and+your+side+and+to+defeat+the+enemy
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+now+i+d+like+you+to+imagine+playing+a+very+different+role+that+of+the+scout
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+scout+s+job+is+not+to+attack+or+defend+the+scout+s+job+is+to+understand
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+the+one+going+out+mapping+the+terrain++identifying+potential+obstacles
found 1 videos: [['/talks/julia_galef_why_you_think_you_re_right_even_if_you_re_wrong', '2016']]
selected: /talks/julia_galef_why_you_think_you_re_right_even_if_you_re_wrong
sleep 1 seconds to avoid blocking
------<1165>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JulianaMachadoFerreira_2010U.stm
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+one+of+the+major+threats+against+our+fauna+especially+birds++and+mainly+to+supply+the+pet+market
found 1 videos: [['/talks/juliana_machado_ferreira_the_fight_to_end_rare_animal_trafficking_in_brazil', '2010']]
selected: /talks/juliana_machado_ferreira_the_fight_to_end_rare_animal_trafficking_in_brazil
sleep 2 seconds to avoid blocking
------<1166>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JulianaRotich_2013G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=living+in+africa+is+to+be+on+the+edge
found 11 videos: [['/talks/juliana_rotich_meet_brck_internet_access_built_for_africa', '2013'], ['/talks/francis_de_los_reyes_sanitation_is_a_basic_human_right', '2014'], ['/talks/greg_asner_ecology_from_the_air', '2013'], ['/talks/andrew_solomon_depression_the_secret_we_share', '2013'], ['/talks/iwan_baan_ingenious_homes_in_unexpected_places', '2013'], ['/talks/jamie_drummond_let_s_crowdsource_the_world_s_goals', '2012'], ['/talks/maryn_mckenna_what_do_we_do_when_antibiotics_don_t_work_any_more', '2015'], ['/talks/niall_ferguson_the_6_killer_apps_of_prosperity', '2011'], ['/talks/john_hunter_teaching_with_the_world_peace_game', '2011'], ['/talks/robert_muggah_how_to_protect_fast_growing_cities_from_failing', '2015'], ['/talks/christopher_mcdougall_are_we_born_to_run', '2011']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=metaphorically+and+quite+literally+when+you+think+about+connectivity+before+two+thousand+and+eight
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=though+many+human+intellectual+and+technological+leaps+had+happened+in+europe+and+the+rest+of+the+world+but+africa+was
found 1 videos: [['/talks/juliana_rotich_meet_brck_internet_access_built_for_africa', '2013']]
selected: /talks/juliana_rotich_meet_brck_internet_access_built_for_africa
sleep 5 seconds to avoid blocking
------<1167>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JulianAssange_2010G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+been+reported+that+wikileaks+your+baby+has
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+last+few+years+has+released+more+classified+documents+than+the+rest+of+the+world+s+media+combined+can+that+possibly+be+true
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+a+worry+isn+t+it++that+the+rest+of+the+world+s+media+is+doing+such+a+bad+job+that+a+little
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=group+of+activists+is+able+to+release+more+of+that+type+of+information
found 1 videos: [['/talks/julian_assange_why_the_world_needs_wikileaks', '2010']]
selected: /talks/julian_assange_why_the_world_needs_wikileaks
sleep 3 seconds to avoid blocking
------<1168>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JulianBaggini_2011X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+real+you+this+might+seem+to+you+like+a+very+odd+question
found 18 videos: [['/talks/julian_baggini_is_there_a_real_you', '2012'], ['/talks/juan_enriquez_will_our_kids_be_a_different_species', '2012'], ['/talks/sam_richards_a_radical_experiment_in_empathy', '2011'], ['/talks/alain_de_botton_a_kinder_gentler_philosophy_of_success', '2009'], ['/talks/brenda_laurel_why_not_make_video_games_for_girls', '2009'], ['/talks/seth_berkley_hiv_and_flu_the_vaccine_strategy', '2010'], ['/talks/sherry_turkle_connected_but_alone', '2012'], ['/talks/mark_changizi_why_do_we_see_illusions', '2013'], ['/talks/david_mccandless_the_beauty_of_data_visualization', '2010'], ['/talks/christien_meindertsma_how_pig_parts_make_the_world_turn', '2010'], ['/talks/morgan_spurlock_the_greatest_ted_talk_ever_sold', '2011'], ['/talks/john_lloyd_an_inventory_of_the_invisible', '2009'], ['/talks/james_stavridis_a_navy_admiral_s_thoughts_on_global_security', '2012'], ['/talks/marco_tempest_a_cyber_magic_card_trick_like_no_other', '2012'], ['/talks/diane_kelly_what_we_didn_t_know_about_penis_anatomy', '2012'], ['/talks/dennis_wildfogel_how_big_is_infinity', '2012'], ['/talks/mary_roach_10_things_you_didn_t_know_about_orgasm', '2009'], ['/talks/hasan_elahi_fbi_here_i_am', '2011']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+you+might+ask+how+do+we+find+the+real+you+how+do+you+know+what+the+real+you+is+and+so+forth++but+the+idea
found 11 videos: [['/talks/julian_baggini_is_there_a_real_you', '2012'], ['/talks/conrad_wolfram_teaching_kids_real_math_with_computers', '2010'], ['/talks/stuart_firestein_the_pursuit_of_ignorance', '2013'], ['/talks/john_underkoffler_pointing_to_the_future_of_ui', '2010'], ['/talks/alison_gopnik_what_do_babies_think', '2011'], ['/talks/aimee_mullins_the_opportunity_of_adversity', '2010'], ['/talks/his_holiness_the_karmapa_the_technology_of_the_heart', '2010'], ['/talks/michael_shermer_the_pattern_behind_self_deception', '2010'], ['/talks/daniel_kahneman_the_riddle_of_experience_vs_memory', '2010'], ['/talks/james_flynn_why_our_iq_levels_are_higher_than_our_grandparents', '2013'], ['/talks/nalini_nadkarni_conserving_the_canopy', '2009']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+must+be+a+real+you++surely+that+s+obvious+if+there+s+anything+real+in+the+world+it+s+you
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well++i+m+not+quite+sure+at+least+we+have+to+understand+a+bit+better+what+that+means+now+certainly+i+think+there+are+lots+of+things+in+our+culture+around+us+which+sort+of+reinforce+the+idea
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+for+each+one+of+us+we+have+a+kind+of+a+core+an+essence+there+is+something+about+what+it+means+to+be+you+which+defines+you+and+it+s+kind+of
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+most+kind+of+crude+way+in+which+we+have+it+are+things+like+horoscopes+you+know+people+are+very+wedded+to+these+actually++people+put+them+on+their+facebook+profile+as+though+they+are+meaningul+you+even+know+your+chinese+horoscope+as+well
found 1 videos: [['/talks/julian_baggini_is_there_a_real_you', '2012']]
selected: /talks/julian_baggini_is_there_a_real_you
sleep 2 seconds to avoid blocking
------<1169>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JulianTreasure_2009G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=over+the+next+five+minutes+my+intention+is+to+transform+your+relationship+with+sound++let+me+start+with+the+observation+that+most+of+the+sound+around+us+is+accidental+much+of+it+is+unpleasant+we
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=stand+on+street+corners+shouting+over+noise
error: request timeout
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=has+meant+that+our+relationship+with+sound+has+become+largely+unconscious
found 1 videos: [['/talks/julian_treasure_the_4_ways_sound_affects_us', '2009']]
selected: /talks/julian_treasure_the_4_ways_sound_affects_us
sleep 2 seconds to avoid blocking
------<1170>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JulianTreasure_2010G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+translation+of+which+is+the+world+is+sound
found 8 videos: [['/talks/julian_treasure_shh_sound_health_in_8_steps', '2010'], ['/talks/michael_merzenich_growing_evidence_of_brain_plasticity', '2009'], ['/talks/mark_pagel_how_language_transformed_humanity', '2011'], ['/talks/james_geary_metaphorically_speaking', '2009'], ['/talks/dan_gilbert_why_we_make_bad_decisions', '2008'], ['/talks/david_pogue_cool_tricks_your_phone_can_do', '2009'], ['/talks/lesley_hazleton_on_reading_the_koran', '2011'], ['/talks/andrew_mcafee_are_droids_taking_our_jobs', '2012']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+in+a+way+that+s+true+because+everything+is+vibrating+in+fact+all+of+you+as+you+sit+here+right+now+are+vibrating+every+part+of+your+body+is+vibrating+at+different+frequencies
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+you+are+in+fact+a+chord+each+of+you+an+individual
found 1 videos: [['/talks/julian_treasure_shh_sound_health_in_8_steps', '2010']]
selected: /talks/julian_treasure_shh_sound_health_in_8_steps
sleep 4 seconds to avoid blocking
------<1171>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JulianTreasure_2010GU.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+hindus+say+nada+brahma+one+translation+of+which+is+the+world+is+sound
found 1 videos: [['/talks/julian_treasure_shh_sound_health_in_8_steps', '2010']]
selected: /talks/julian_treasure_shh_sound_health_in_8_steps
sleep 3 seconds to avoid blocking
------<1172>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JulianTreasure_2011G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+spend+roughly+sixty+percent+of+our+communication+time+listening++but+we+re+not+very+good+at+it++we+retain+just+twenty+five+percent+of+what+we+hear+now+not+you+not+this+talk
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+s+define+listening+as+making+meaning+from+sound+it+s+a+mental+process+and+it+s+a+process+of+extraction
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+use+some+pretty+cool+techniques+to+do+this+one+of+them+is+pattern+recognition+so+in+a+cocktail+party+like+this
found 1 videos: [['/talks/julian_treasure_5_ways_to_listen_better', '2011']]
selected: /talks/julian_treasure_5_ways_to_listen_better
sleep 3 seconds to avoid blocking
------<1173>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JulianTreasure_2012G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+time+to+start+designing+for+our+ears
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=architects+and+designers+tend+to+focus+exclusively+on+these+they+use+these+to+design+with+and+they+design+for+them+which+is+why+we+end+up+sitting
found 1 videos: [['/talks/julian_treasure_why_architects_need_to_use_their_ears', '2012']]
selected: /talks/julian_treasure_why_architects_need_to_use_their_ears
sleep 1 seconds to avoid blocking
------<1174>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JulianTreasure_2013G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+human+voice++it+s+the+instrument+we+all+play
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+the+most+powerful+sound+in+the+world+probably+it+s+the+only+one+that+can+start+a+war+or+say+i+love+you
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+yet+many+people+have+the+experience+that+when+they+speak+people+don+t+listen+to+them+and+why+is+that+how+can+we
error: request timeout
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+make+change+in+the+world
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+i+d+like+to+suggest+there+are+a+number+of+habits+that+we+need+to+move+away+from+i+ve+assembled+for+your+pleasure+here+seven+deadly+sins+of+speaking+i+m+not+pretending+this+is+an+exhaustive+list
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+these+seven+i+think+are+pretty+large
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=habits+that+we+can+all+fall+into++first
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=speaking+ill+of+somebody+who+s+not+present+not+a+nice+habit+and+we+know+perfectly+well+the+person+gossiping+five+minutes+later+will+be+gossiping+about+us
error: request timeout
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+know+people+who+are+like+this+in+conversation+and+it+s+very+hard+to+listen+to+somebody+if+you+know+that+you+re+being+judged+and+found+wanting+at+the+same+time
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=third+negativity++you+can+fall
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=into+this+my+mother+in+the+last+years+of+her+life+became+very+very+negative+and+it+s+hard+to+listen+i+remember+one+day+i+said+to+her
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+october+one+today+and+she+said+i+know+isn+t+it+dreadful+it
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+hard+to+listen+when+somebody+s+that+negative
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=laughter+and+another+form+of+negativity+complaining+well+this+is+the+national+art+of+the+u+k+it+s+our+national+sport+we+complain+about+the+weather
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+politics+about+everything+but+actually+complaining+is+viral+misery++it+s+not+spreading+sunshine+and+lightness+in+the+world
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=excuses++we+ve+all+met+this+guy++maybe+we+ve+all+been+this+guy+some+people+have
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+just+pass+it+on+to+everybody+else+and+don+t+take+responsibility+for+their+actions+and+again+hard+to+listen+to+somebody+who+is+being+like+that
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=penultimate++the+sixth+of+the+seven++embroidery
found 1 videos: [['/talks/julian_treasure_how_to_speak_so_that_people_want_to_listen', '2014']]
selected: /talks/julian_treasure_how_to_speak_so_that_people_want_to_listen
sleep 2 seconds to avoid blocking
------<1175>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JuliaSweeney_2006.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+my+father+smiled+and+said+well+you+know+what+that+means+don+t+you
found 1 videos: [['/talks/james_watson_how_we_discovered_dna', '2007']]
selected: /talks/james_watson_how_we_discovered_dna
sleep 1 seconds to avoid blocking
------<1176>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JuliaSweeney_2010.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+when+she+was+eight+last+year
found 11 videos: [['/talks/julia_sweeney_it_s_time_for_the_talk', '2010'], ['/talks/eric_whitacre_a_virtual_choir_2_000_voices_strong', '2011'], ['/talks/robin_chase_the_idea_behind_zipcar_and_what_comes_next', '2008'], ['/talks/giles_duley_when_a_reporter_becomes_the_story', '2012'], ['/talks/chris_anderson_ted_s_nonprofit_transition', '2008'], ['/talks/diana_nyad_extreme_swimming_with_the_world_s_most_dangerous_jellyfish', '2012'], ['/talks/beau_lotto_amy_o_toole_science_is_for_everyone_kids_included', '2012'], ['/talks/sunitha_krishnan_the_fight_against_sex_slavery', '2009'], ['/talks/eve_ensler_embrace_your_inner_girl', '2010'], ['/talks/aimee_mullins_my_12_pairs_of_legs', '2009'], ['/talks/shukla_bose_teaching_one_child_at_a_time', '2010']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=she+was+doing+a+report+for+school+or+she+had+some+homework+about+frogs++and+we+were+at+this+restaurant++and+she+said+so+basically+frogs
found 1 videos: [['/talks/julia_sweeney_it_s_time_for_the_talk', '2010']]
selected: /talks/julia_sweeney_it_s_time_for_the_talk
sleep 3 seconds to avoid blocking
------<1177>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JulieBurstein_2012.stm
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+small+clay+pot+that+i+made+in+college+it+s+raku+which+is+a+kind+of+pottery
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+began+in+japan+centuries+ago+as+a+way+of+making+bowls+for+the+japanese+tea+ceremony
found 1 videos: [['/talks/julie_burstein_4_lessons_in_creativity', '2012']]
selected: /talks/julie_burstein_4_lessons_in_creativity
sleep 3 seconds to avoid blocking
------<1178>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JulieLythcottHaims_2015P.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know+i+didn+t+set+out+to+be+a+parenting+expert
found 1 videos: [['/talks/riccardo_sabatini_how_to_read_the_genome_and_build_a_human_being', '2016']]
selected: /talks/riccardo_sabatini_how_to_read_the_genome_and_build_a_human_being
sleep 1 seconds to avoid blocking
------<1179>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JulieTaymor_2011.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+a+few+samples+of+the+theater+opera+and+films+that+i+have+done+over+the+last+twenty+years
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+what+i+d+like+to+begin+with+right+now+is+to+take+you+back+to+a+moment+that
found 8 videos: [['/talks/steven_johnson_where_good_ideas_come_from', '2010'], ['/talks/andrew_fitzgerald_adventures_in_twitter_fiction', '2013'], ['/talks/jeffrey_kluger_the_sibling_bond', '2012'], ['/talks/geoff_mulgan_post_crash_investing_in_a_better_world', '2009'], ['/talks/susan_cain_the_power_of_introverts', '2012'], ['/talks/rob_forbes_ways_of_seeing', '2009'], ['/talks/mike_rowe_learning_from_dirty_jobs', '2009'], ['/talks/stephen_wolfram_computing_a_theory_of_all_knowledge', '2010']]
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+is+a+seminal+moment+in+my+life+and+like+all+myths+these+stories+need+to+be+retold+and+told+lest+we+forget+them
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+when+i+m+in+the+turbulent+times+as+we+know+that+i+am+right+now+through+the+crucible+and+the+fire+of+transformation+which+is+what+all
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+of+you+do+actually+anybody+who+creates+knows+there+s+that+point
error: request timeout
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=quite+become+the+phoenix+or+the+burnt+char+laughter
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+am+right+there+on+the+edge+which+i+ll+tell+you+about+another+story+i+want+to+go+back+to+indonesia+where+i+was+about+twenty+one+twenty+two+years+a+long+time+ago+on+a+fellowship
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+found+myself+after+two+years+there+and+performing+and+learning+on+the+island+of+bali
found 1 videos: [['/talks/julie_taymor_spider_man_the_lion_king_and_life_on_the_creative_edge', '2013']]
selected: /talks/julie_taymor_spider_man_the_lion_king_and_life_on_the_creative_edge
sleep 3 seconds to avoid blocking
------<1180>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JunoMac_2016X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+talk+about+sex+for+money
found 15 videos: [['/talks/juno_mac_the_laws_that_sex_workers_really_want', '2016'], ['/talks/nikki_clifton_3_ways_businesses_can_fight_sex_trafficking', '2018'], ['/talks/tristram_wyatt_the_smelly_mystery_of_the_human_pheromone', '2014'], ['/talks/sarah_jones_one_woman_five_characters_and_a_sex_lesson_from_the_future', '2015'], ['/talks/amy_adele_hasinoff_how_to_practice_safe_sexting', '2017'], ['/talks/chimamanda_ngozi_adichie_we_should_all_be_feminists', '2017'], ['/talks/sheryl_sandberg_so_we_leaned_in_now_what', '2014'], ['/talks/monica_lewinsky_the_price_of_shame', '2015'], ['/talks/shah_rukh_khan_thoughts_on_humanity_fame_and_love', '2017'], ['/talks/johann_hari_everything_you_think_you_know_about_addiction_is_wrong', '2015'], ['/talks/scott_dinsmore_how_to_find_work_you_love', '2015'], ['/talks/kym_worthy_what_happened_when_we_tested_thousands_of_abandoned_rape_kits_in_detroit', '2018'], ['/talks/gretchen_carlson_how_we_can_end_sexual_harassment_at_work', '2017'], ['/talks/adam_galinsky_how_to_speak_up_for_yourself', '2016'], ['/talks/ethan_nadelmann_why_we_need_to_end_the_war_on_drugs', '2014']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+not+like+most+of+the+people+you+ll+have+heard+speaking+about+prostitution+before+i+m+not+a+police+officer+or+a+social+worker+i+m+not+an+academic+a+journalist+or+a
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+as+you+ll+probably+have+picked+up+from+maryam+s+blurb++i+m+not+a+nun+either
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=most+of+those+people+would+tell+you+that+selling+sex+is+degrading
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+no+one+would+ever+choose+to+do+it+that+it+s+dangerous+women+get+abused+and+killed++in+fact+most+of+those+people+would+say+there+should+be+a+law+against+it
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=maybe+that+sounds+reasonable+to+you
error: request timeout
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=until+the+closing+months+of+two+thousand+and+nine+when+i+was+working
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=every+month+my+wages+would+just+replenish+my+overdraft++i+was+exhausted+and+my+life+was+going+nowhere
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+many+others+before+me+i+decided+sex+for+money+was+a+better+option
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+don+t+get+me+wrong+i+would+have+loved+to+have+won+the+lottery+instead
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+it+wasn+t+going+to+happen+anytime+soon+and+my+rent+needed+paying+so+i+signed+up+for+my+first+shift+in+a+brothel
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+years+that+have+passed
found 21 videos: [['/talks/steven_wise_chimps_have_feelings_and_thoughts_they_should_also_have_rights', '2015'], ['/talks/nilay_kulkarni_a_life_saving_invention_that_prevents_human_stampedes', '2018'], ['/talks/moshe_szyf_how_early_life_experience_is_written_into_dna', '2017'], ['/talks/samuel_cohen_alzheimer_s_is_not_normal_aging_and_we_can_cure_it', '2015'], ['/talks/judith_heumann_our_fight_for_disability_rights_and_why_we_re_not_done_yet', '2018'], ['/talks/katharine_hayhoe_the_most_important_thing_you_can_do_to_fight_climate_change_talk_about_it', '2018'], ['/talks/rebecca_tarvin_why_don_t_poisonous_animals_poison_themselves', '2018'], ['/talks/mike_kinney_a_pro_wrestler_s_guide_to_confidence', '2017'], ['/talks/andres_ruzo_the_boiling_river_of_the_amazon', '2016'], ['/talks/sara_lewis_the_loves_and_lies_of_fireflies', '2014'], ['/talks/esta_soler_how_we_turned_the_tide_on_domestic_violence_hint_the_polaroid_helped', '2014'], ['/talks/yoruba_richen_what_the_gay_rights_movement_learned_from_the_civil_rights_movement', '2014'], ['/talks/allan_adams_what_the_discovery_of_gravitational_waves_means', '2016'], ['/talks/prosanta_chakrabarty_four_billion_years_of_evolution_in_six_minutes', '2018'], ['/talks/monica_menesini_why_do_our_bodies_age', '2016'], ['/talks/joe_lassiter_we_need_nuclear_power_to_solve_climate_change', '2016'], ['/talks/ingrid_betancourt_what_six_years_in_captivity_taught_me_about_fear_and_faith', '2017'], ['/talks/mehdi_ordikhani_seyedlar_what_happens_in_your_brain_when_you_pay_attention', '2017'], ['/talks/sting_how_i_started_writing_songs_again', '2014'], ['/talks/brittney_cooper_the_racial_politics_of_time', '2017'], ['/talks/amel_karboul_the_global_learning_crisis_and_what_to_do_about_it', '2017']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+had+a+lot+of+time+to+think
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+reconsidered+the+ideas+i+once+had+about+prostitution++i+ve+given+a+lot+of+thought+to+consent+and+the+nature+of+work+under+capitalism
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+thought+about+gender+inequality+and+the+sexual+and+reproductive+labor+of+women
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+experienced+exploitation+and+violence+at+work++i+ve+thought+about+what+s+needed+to+protect+other+sex+workers+from+these+things++maybe+you+ve+thought+about+them
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+this+talk+i+ll+take+you+through+the+four+main+legal+approaches+applied+to+sex+work+throughout+the+world
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+explain+why+they+don+t+work++why+prohibiting+the+sex+industry+actually+exacerbates+every+harm+that+sex+workers+are+vulnerable+to
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=then+i+m+going+tell+you+about+what+we+as+sex+workers+actually+want
found 2 videos: [['/talks/scott_galloway_how_amazon_apple_facebook_and_google_manipulate_our_emotions', '2017'], ['/talks/lindsay_malloy_why_teens_confess_to_crimes_they_didn_t_commit', '2018']]
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=half+the+world+including+russia+south+africa+and+most+of+the+us+regulates+sex+work+by+criminalizing+everyone+involved++so+that+s+seller++buyer+and+third+parties
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=lawmakers+in+these+countries+apparently+hope+that+the+fear+of+getting+arrested+will+deter+people+from+selling+sex
found 1 videos: [['/talks/juno_mac_the_laws_that_sex_workers_really_want', '2016']]
selected: /talks/juno_mac_the_laws_that_sex_workers_really_want
sleep 5 seconds to avoid blocking
------<1181>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JustinDavidson_2017S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=imagine+that+when+you+walked+in+here+this+evening+you+discovered+that+everybody+in+the+room
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=looked+almost+exactly+the+same+ageless+raceless+generically+good+looking+that+person+sitting
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=right+next+to+you+might+have+the+most+idiosyncratic+inner+life+but+you+don+t+have+a+clue+because+we+re+all+wearing+the+same+blank+expression+all+the+time
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+is+the+kind+of+creepy+transformation+that+is+taking+over+cities+only+it+applies+to+buildings+not+people
error: request timeout
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+full+of+roughness+and+shadow+texture+and+color+you+can+still+find
error: request timeout
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hopi+villages+in+arizona++brownstones+in+new+york
found 1 videos: [['/talks/justin_davidson_why_glass_towers_are_bad_for_city_life_and_what_we_need_instead', '2017']]
selected: /talks/justin_davidson_why_glass_towers_are_bad_for_city_life_and_what_we_need_instead
sleep 2 seconds to avoid blocking
------<1182>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/JustinHallTipping_2011G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=why+can+t+we+solve+these+problems
found 11 videos: [['/talks/barry_schuler_genomics_101', '2009'], ['/talks/luis_von_ahn_massive_scale_online_collaboration', '2011'], ['/talks/bill_ford_a_future_beyond_traffic_gridlock', '2011'], ['/talks/ray_anderson_the_business_logic_of_sustainability', '2009'], ['/talks/t_boone_pickens_let_s_transform_energy_with_natural_gas', '2012'], ['/talks/nigel_marsh_how_to_make_work_life_balance_work', '2011'], ['/talks/seth_berkley_hiv_and_flu_the_vaccine_strategy', '2010'], ['/talks/paul_root_wolpe_it_s_time_to_question_bio_engineering', '2011'], ['/talks/rachel_botsman_the_case_for_collaborative_consumption', '2010'], ['/talks/beau_lotto_optical_illusions_show_how_we_see', '2009'], ['/talks/laurie_garrett_lessons_from_the_1918_flu', '2009']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+know+what+they+are+something+always+seems+to+stop+us
found 5 videos: [['/talks/david_birch_a_new_way_to_stop_identity_theft', '2012'], ['/talks/marco_annunziata_welcome_to_the_age_of_the_industrial_internet', '2013'], ['/talks/jonathan_haidt_how_common_threats_can_make_common_political_ground', '2013'], ['/talks/rob_hopkins_transition_to_a_world_without_oil', '2009'], ['/talks/justin_hall_tipping_freeing_energy_from_the_grid', '2011']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=broke+off+the+ross+ice+shelf+in+the+newspaper+it+said+it+was+all+part+of+a+normal+process+a
found 1 videos: [['/talks/justin_hall_tipping_freeing_energy_from_the_grid', '2011']]
selected: /talks/justin_hall_tipping_freeing_energy_from_the_grid
sleep 1 seconds to avoid blocking
------<1183>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KailashSatyarthi_2015.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+was+eleven++seeing+some+of+my+friends+leaving+the+school+because+their+parents+could+not+afford+textbooks
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+was+twenty+seven+hearing+the+plight+of+a+desperate
error: request timeout
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=whose+daughter+was+about+to+be+sold+to+a+brothel
error: request timeout
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+street+in+a+pool+of+blood++along+with+my+own+son
error: request timeout
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+were+taught+anger+is+bad+our+parents++teachers+priests+everyone+taught+us
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+to+control+and+suppress+our+anger
error: request timeout
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=why+can+t+we+convert+our+anger+for+the+larger+good+of+society
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=why+can+t+we+use+our+anger+to+challenge+and+change+the+evils+of+the+world
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=most+of+the+brightest+ideas+came+to+my+mind+out+of+anger++like+when+i+was
found 1 videos: [['/talks/kailash_satyarthi_how_to_make_peace_get_angry', '2015']]
selected: /talks/kailash_satyarthi_how_to_make_peace_get_angry
sleep 4 seconds to avoid blocking
------<1184>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KakenyaNtaiya_2012X.stm
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+go+see+them+these+people+are+tall+they+jump+high++they+wear+red++and+they+kill+lions
found 2 videos: [['/talks/kakenya_ntaiya_a_girl_who_demanded_school', '2013'], ['/talks/dan_phillips_creative_houses_from_reclaimed_stuff', '2010']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=might+be+wondering+who+are+these+people+these+are+the
found 12 videos: [['/talks/molly_crockett_beware_neuro_bunk', '2012'], ['/talks/matt_killingsworth_want_to_be_happier_stay_in_the_moment', '2012'], ['/talks/ron_finley_a_guerrilla_gardener_in_south_central_la', '2013'], ['/talks/christopher_mcdougall_are_we_born_to_run', '2011'], ['/talks/nicholas_christakis_how_social_networks_predict_epidemics', '2010'], ['/talks/jackie_savitz_save_the_oceans_feed_the_world', '2014'], ['/talks/annie_murphy_paul_what_we_learn_before_we_re_born', '2011'], ['/talks/jessica_jackley_poverty_money_and_love', '2010'], ['/talks/vinay_venkatraman_technology_crafts_for_the_digitally_underserved', '2012'], ['/talks/james_flynn_why_our_iq_levels_are_higher_than_our_grandparents', '2013'], ['/talks/ivan_oransky_are_we_over_medicalized', '2012'], ['/talks/elizabeth_loftus_how_reliable_is_your_memory', '2013']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=maasais+and+you+know+what+s+cool++i+m+actually+one+of+them
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+maasais++the+boys+are+brought+up+to+be+warriors+the+girls+are+brought+up+to+be+mothers+when+i+was
found 1 videos: [['/talks/kakenya_ntaiya_a_girl_who_demanded_school', '2013']]
selected: /talks/kakenya_ntaiya_a_girl_who_demanded_school
sleep 5 seconds to avoid blocking
------<1185>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KakiKing_2008.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+thinking+about+my+place+in+the+universe+and+about+my+first+thought+about+what+infinity+might+mean+when+i+was+a+child
found 3 videos: [['/talks/kaki_king_playing_pink_noise_on_guitar', '2009'], ['/talks/tom_honey_why_would_god_create_a_tsunami', '2007'], ['/talks/robert_thurman_expanding_your_circle_of_compassion', '2008']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+time+could+reach+forwards+and+backwards+infinitely+doesn+t+that+mean+that
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+every+point+in+time+is+really+infinitely+small+and+therefore+somewhat+meaningless+so+we+don+t+really+have+a+place+in+the+universe++as+far+as+on+a+time+line+but+nothing+else+does+either+therefore
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=every+moment+really+is+the+most+important+moment+that+s+ever+happened
found 1 videos: [['/talks/dan_gilbert_the_surprising_science_of_happiness', '2006']]
selected: /talks/dan_gilbert_the_surprising_science_of_happiness
sleep 1 seconds to avoid blocking
------<1186>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KamalMeattle_2009U.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+seventeen+years+ago++i+became+allergic+to+delhi+s+air+my+doctors+told+me+that+my+lung+capacity+had+gone+down+to+seventy+percent
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+three+basic+green+plants+common+green+plants+with+which+we+can+grow+all+the+fresh+air+we+need+indoors
found 2 videos: [['/talks/kamal_meattle_how_to_grow_fresh_air', '2009'], ['/talks/william_mcdonough_cradle_to_cradle_design', '2007']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+keep+us+healthy++we+ve+also+found+that+you+can+reduce+the+fresh+air+requirements+into+the+building+while+maintaining+industry+indoor+air+quality+standards
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+three+plants+are+areca+palm
found 8 videos: [['/talks/kamal_meattle_how_to_grow_fresh_air', '2009'], ['/talks/willie_smits_how_to_restore_a_rainforest', '2009'], ['/talks/jonathan_drori_every_pollen_grain_has_a_story', '2010'], ['/talks/eric_sanderson_new_york_before_the_city', '2009'], ['/talks/stewart_brand_mark_z_jacobson_debate_does_the_world_need_nuclear_energy', '2010'], ['/talks/vs_ramachandran_3_clues_to_understanding_your_brain', '2007'], ['/talks/dave_eggers_my_wish_once_upon_a_school', '2008'], ['/talks/jonathan_harris_the_web_as_art', '2008']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=names+are+in+front+of+you
found 8 videos: [['/talks/alexis_ohanian_how_to_make_a_splash_in_social_media', '2009'], ['/talks/james_randi_homeopathy_quackery_and_fraud', '2010'], ['/talks/kamal_meattle_how_to_grow_fresh_air', '2009'], ['/talks/chris_abani_on_humanity', '2008'], ['/talks/anupam_mishra_the_ancient_ingenuity_of_water_harvesting', '2009'], ['/talks/isabel_allende_tales_of_passion', '2008'], ['/talks/cary_fowler_one_seed_at_a_time_protecting_the_future_of_food', '2009'], ['/talks/aicha_el_wafi_phyllis_rodriguez_the_mothers_who_found_forgiveness_friendship', '2011']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=areca+palm+is+a+plant+which+removes+co2+and+converts+it+into+oxygen
found 1 videos: [['/talks/kamal_meattle_how_to_grow_fresh_air', '2009']]
selected: /talks/kamal_meattle_how_to_grow_fresh_air
sleep 5 seconds to avoid blocking
------<1187>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KandiceSumner_2015X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+talk+to+you
found 20 videos: [['/talks/parag_khanna_how_megacities_are_changing_the_map_of_the_world', '2016'], ['/talks/emilie_wapnick_why_some_of_us_don_t_have_one_true_calling', '2015'], ['/talks/julian_treasure_how_to_speak_so_that_people_want_to_listen', '2014'], ['/talks/peter_singer_the_why_and_how_of_effective_altruism', '2013'], ['/talks/juno_mac_the_laws_that_sex_workers_really_want', '2016'], ['/talks/norman_spack_how_i_help_transgender_teens_become_who_they_want_to_be', '2014'], ['/talks/jia_jiang_what_i_learned_from_100_days_of_rejection', '2016'], ['/talks/boyd_varty_what_i_learned_from_nelson_mandela', '2013'], ['/talks/martin_pistorius_how_my_mind_came_back_to_life_and_no_one_knew', '2015'], ['/talks/johann_hari_everything_you_think_you_know_about_addiction_is_wrong', '2015'], ['/talks/joi_ito_want_to_innovate_become_a_now_ist', '2014'], ['/talks/caitlin_doughty_a_burial_practice_that_nourishes_the_planet', '2017'], ['/talks/kio_stark_why_you_should_talk_to_strangers', '2016'], ['/talks/reshma_saujani_teach_girls_bravery_not_perfection', '2016'], ['/talks/leana_wen_what_your_doctor_won_t_disclose', '2014'], ['/talks/scott_dinsmore_how_to_find_work_you_love', '2015'], ['/talks/paola_antonelli_why_i_brought_pac_man_to_moma', '2013'], ['/talks/alison_killing_what_happens_when_a_city_runs_out_of_room_for_its_dead', '2015'], ['/talks/mike_kinney_a_pro_wrestler_s_guide_to_confidence', '2017'], ['/talks/boniface_mwangi_the_day_i_stood_up_alone', '2015']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+my+kids+now+i+know+everyone+thinks+that+their+kid+is+the+most+fantastic+the+most+beautiful+kid+that+ever+lived
found 5 videos: [['/talks/kandice_sumner_how_america_s_public_schools_keep_kids_in_poverty', '2016'], ['/talks/steve_howard_let_s_go_all_in_on_selling_sustainability', '2013'], ['/talks/khalida_brohi_how_i_work_to_protect_women_from_honor_killings', '2015'], ['/talks/bran_ferren_to_create_for_the_ages_let_s_combine_art_and_engineering', '2014'], ['/talks/roman_mars_why_city_flags_may_be_the_worst_designed_thing_you_ve_never_noticed', '2015']]
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+have+six+hundred+and+ninety+six+kids+and+they+are+the+most+intelligent+inventive
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=innovative++brilliant+and+powerful+kids+that+you+ll+ever+meet
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=any+student+i+ve+had+the+honor+of+teaching+in+my+classroom
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=however++because+their+real+parents+aren+t+rich+and+i+argue+because+they+are+mostly+of+color
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+will+seldom+get+to+see+in+themselves+the+awesomeness+that+i+see+in+them
found 1 videos: [['/talks/kandice_sumner_how_america_s_public_schools_keep_kids_in_poverty', '2016']]
selected: /talks/kandice_sumner_how_america_s_public_schools_keep_kids_in_poverty
sleep 3 seconds to avoid blocking
------<1188>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KangLee_2016.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+me+ask+the+audience+a+question+did+you+ever+lie+as+a+child++if+you+did+could+you+please+raise+your+hand
found 4 videos: [['/talks/kang_lee_can_you_really_tell_if_a_kid_is_lying', '2016'], ['/talks/sheryl_sandberg_so_we_leaned_in_now_what', '2014'], ['/talks/leah_chase_and_pat_mitchell_an_interview_with_the_queen_of_creole_cuisine', '2017'], ['/talks/the_ted_interview_sir_ken_robinson_still_wants_an_education_revolution', '2018']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=wow+this+is+the+most+honest+group+of+people+i+ve+ever+met
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=laughter+so+for+the+last+twenty+years
found 12 videos: [['/talks/yves_morieux_as_work_gets_more_complex_6_rules_to_simplify', '2014'], ['/talks/ndidi_nwuneli_the_role_of_faith_and_belief_in_modern_africa', '2018'], ['/talks/simon_anholt_which_country_does_the_most_good_for_the_world', '2014'], ['/talks/scott_galloway_how_amazon_apple_facebook_and_google_manipulate_our_emotions', '2017'], ['/talks/pico_iyer_the_art_of_stillness', '2014'], ['/talks/andrew_solomon_how_the_worst_moments_in_our_lives_make_us_who_we_are', '2014'], ['/talks/jude_kelly_why_women_should_tell_the_stories_of_humanity', '2017'], ['/talks/garry_kasparov_don_t_fear_intelligent_machines_work_with_them', '2017'], ['/talks/stephanie_busari_how_fake_news_does_real_harm', '2017'], ['/talks/david_whyte_a_lyrical_bridge_between_past_present_and_future', '2017'], ['/talks/jun_wang_how_digital_dna_could_help_you_make_better_health_choices', '2017'], ['/talks/joshua_prager_wisdom_from_great_writers_on_every_year_of_life', '2016']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+been+studying+how+children+learn+to+tell+lies++and+today++i+m+going+to+share+with+you+some+of+the+discoveries+we+have+made
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+to+begin+i+m+going+to+tell+you+a+story+from+mr+richard+messina+who+is+my+friend+and+an+elementary+school+principal
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+got+a+phone+call+one+day
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+son+johnny+will+not+come+to+school+today+because+he+s+sick+mr
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=messina+asks+who+am+i+speaking+to+please
found 1 videos: [['/talks/kang_lee_can_you_really_tell_if_a_kid_is_lying', '2016']]
selected: /talks/kang_lee_can_you_really_tell_if_a_kid_is_lying
sleep 4 seconds to avoid blocking
------<1189>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KareAnderson_2014S.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+at+least+twenty+other+people+in+a+room+of+this+size
found 2 videos: [['/talks/marc_goodman_a_vision_of_crimes_in_the_future', '2012'], ['/talks/hannah_fry_the_mathematics_of_love', '2015']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=do+you+dare+raise+your+hand++and+it+sticks+with+us++it+really+does+stick+with+us++because
found 3 videos: [['/talks/kare_anderson_be_an_opportunity_maker', '2014'], ['/talks/laurel_braitman_depressed_dogs_cats_with_ocd_what_animal_madness_means_for_us_humans', '2014'], ['/talks/geoffrey_canada_our_failing_schools_enough_is_enough', '2013']]
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+treated+that+way+we+feel+invisible+sometimes+or+talked+around+and+at
found 2 videos: [['/talks/kare_anderson_be_an_opportunity_maker', '2014'], ['/talks/iwan_baan_ingenious_homes_in_unexpected_places', '2013']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+as+i+started+to+look+at+people+which+is+mostly+all+i+did
found 15 videos: [['/talks/alan_eustace_i_leapt_from_the_stratosphere_here_s_how_i_did_it', '2015'], ['/talks/linus_torvalds_the_mind_behind_linux', '2016'], ['/talks/noy_thrupkaew_human_trafficking_is_all_around_you_this_is_how_it_works', '2015'], ['/talks/khalida_brohi_how_i_work_to_protect_women_from_honor_killings', '2015'], ['/talks/paola_antonelli_why_i_brought_pac_man_to_moma', '2013'], ['/talks/kare_anderson_be_an_opportunity_maker', '2014'], ['/talks/margaret_heffernan_dare_to_disagree', '2012'], ['/talks/ramanan_laxminarayan_the_coming_crisis_in_antibiotics', '2014'], ['/talks/dan_gross_why_gun_violence_can_t_be_our_new_normal', '2016'], ['/talks/alastair_parvin_architecture_for_the_people_by_the_people', '2013'], ['/talks/sarah_jones_one_woman_five_characters_and_a_sex_lesson_from_the_future', '2015'], ['/talks/yassmin_abdel_magied_what_does_my_headscarf_mean_to_you', '2015'], ['/talks/luke_syson_how_i_learned_to_stop_worrying_and_love_useless_art', '2014'], ['/talks/ivan_coyote_why_we_need_gender_neutral_bathrooms', '2016'], ['/talks/richard_ledgett_the_nsa_responds_to_edward_snowden_s_ted_talk', '2014']]
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=remember+i+was+young+then++so+what+did+they+do+what+we+still+do+perhaps+too+often+we+talk+about+ourselves
found 4 videos: [['/talks/young_ha_kim_be_an_artist_right_now', '2013'], ['/talks/kare_anderson_be_an_opportunity_maker', '2014'], ['/talks/jared_diamond_how_societies_can_grow_old_better', '2013'], ['/talks/karen_thompson_walker_what_fear_can_teach_us', '2013']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+yet+there+are+other+people+i+observed+who+had+what+i+called+a+mutuality+mindset+in+each+situation+they+found+a+way+to+talk+about+us
found 1 videos: [['/talks/kare_anderson_be_an_opportunity_maker', '2014']]
selected: /talks/kare_anderson_be_an_opportunity_maker
sleep 5 seconds to avoid blocking
------<1190>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KarenArmstrong_2008.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+such+an+honor+and+it+s+wonderful+to
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=an+organization+that+is+really+making+a+difference+in+the+world+and+i+m+intensely+grateful+for+the+opportunity+to+speak+to+you+today
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+m+also+rather+surprised++because+when+i+look+back+on+my+life
found 1 videos: [['/talks/james_randi_homeopathy_quackery_and_fraud', '2010']]
selected: /talks/james_randi_homeopathy_quackery_and_fraud
sleep 1 seconds to avoid blocking
------<1191>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KarenArmstrong_2009G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+years+i+ve+been+feeling+frustrated+because+as+a+religious+historian+i+ve+become+acutely+aware
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+the+centrality+of+compassion+in+all+the
found 1 videos: [['/talks/karen_armstrong_let_s_revive_the_golden_rule', '2009']]
selected: /talks/karen_armstrong_let_s_revive_the_golden_rule
sleep 3 seconds to avoid blocking
------<1192>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KarenBass_2012.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+a+very+lucky+person
found 2 videos: [['/talks/jason_fried_why_work_doesn_t_happen_at_work', '2010'], ['/talks/shea_hembrey_how_i_became_100_artists', '2011']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+been+privileged+to+see+so+much+of+our+beautiful+earth+and+the+people+and+creatures+that+live+on+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+my+passion+was+inspired+at+the+age+of+seven+when+my+parents+first+took+me+to+morocco+at+the+edge+of+the+sahara
found 1 videos: [['/talks/karen_bass_unseen_footage_untamed_nature', '2012']]
selected: /talks/karen_bass_unseen_footage_untamed_nature
sleep 4 seconds to avoid blocking
------<1193>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KarenThompsonWalker_2012G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=three+thousand+miles+off+the+coast+of+chile+in+one+of+the+most+remote+regions+of+the+pacific+ocean+twenty+american+sailors+watched+their+ship+flood+with+seawater
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+d+been+struck+by+a+sperm+whale++which+had+ripped+a+catastrophic+hole+in+the+ship
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=their+ship+began+to+sink+beneath+the+swells++the+men+huddled+together+in+three+small+whaleboats
found 1 videos: [['/talks/karen_thompson_walker_what_fear_can_teach_us', '2013']]
selected: /talks/karen_thompson_walker_what_fear_can_teach_us
sleep 4 seconds to avoid blocking
------<1194>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KarenTse_2011G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+walked+into+a+prison+in+cambodia+and+i+met+a+12+year+old+boy
found 1 videos: [['/talks/karen_tse_how_to_stop_torture', '2011']]
selected: /talks/karen_tse_how_to_stop_torture
sleep 1 seconds to avoid blocking
------<1195>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KarimaBennoune_2014X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=could+i+protect+my+father+from+the+armed+islamic+group+with+a+paring+knife
found 1 videos: [['/talks/karima_bennoune_when_people_of_muslim_heritage_challenge_fundamentalism', '2014']]
selected: /talks/karima_bennoune_when_people_of_muslim_heritage_challenge_fundamentalism
sleep 2 seconds to avoid blocking
------<1196>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KarimAbouelnaga_2017U.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=getting+a+college+education+is+a
found 17 videos: [['/talks/sajay_samuel_how_college_loans_exploit_students_for_profit', '2016'], ['/talks/thomas_curran_our_dangerous_obsession_with_perfectionism_is_getting_worse', '2019'], ['/talks/claudia_miner_a_new_way_to_get_every_child_ready_for_kindergarten', '2019'], ['/talks/alice_goffman_how_we_re_priming_some_kids_for_college_and_others_for_prison', '2015'], ['/talks/billie_jean_king_this_tennis_icon_paved_the_way_for_women_in_sports', '2015'], ['/talks/ashweetha_shetty_how_education_helped_me_rewrite_my_life', '2019'], ['/talks/shameem_akhtar_to_learn_is_to_be_free', '2018'], ['/talks/kandice_sumner_how_america_s_public_schools_keep_kids_in_poverty', '2016'], ['/talks/alexis_jones_redefining_manhood_one_locker_room_talk_at_a_time', '2018'], ['/talks/dena_simmons_how_students_of_color_confront_impostor_syndrome', '2016'], ['/talks/jim_yong_kim_doesn_t_everyone_deserve_a_chance_at_a_good_life', '2017'], ['/talks/bj_miller_what_really_matters_at_the_end_of_life', '2015'], ['/talks/danielle_r_moss_how_we_can_help_the_forgotten_middle_reach_their_full_potential', '2019'], ['/talks/karim_abouelnaga_a_summer_school_kids_actually_want_to_attend', '2017'], ['/talks/sydney_chaffee_how_teachers_can_help_kids_find_their_political_voices', '2018'], ['/talks/regina_hartley_why_the_best_hire_might_not_have_the_perfect_resume', '2015'], ['/talks/raj_panjabi_no_one_should_die_because_they_live_too_far_from_a_doctor', '2017']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=investment+when+you+re+growing+up+poor+you+re+not+accustomed+to+thinking+that+far+ahead+instead+you+re+thinking+about+where+you+re+going+to+get+your+next+meal
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+how+your+family+is+going+to+pay+rent+that+month+besides
found 2 videos: [['/talks/karim_abouelnaga_a_summer_school_kids_actually_want_to_attend', '2017'], ['/talks/luma_mufleh_don_t_feel_sorry_for_refugees_believe_in_them', '2017']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+parents+and+my+friends++parents+seemed+to+be+doing+just+fine+driving+taxis+and+working+as+janitors+it+wasn+t+until+i+was+a+teenager+when+i+realized
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+didn+t+want+to+do+those+things+by+then+i+was+two+thirds+of+the+way+through+my+education+and+it+was+almost+too+late+to+turn+things+around
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+you+grow+up+poor+you+want+to+be+rich++i+was+no+different+i+m+the
found 1 videos: [['/talks/navi_radjou_creative_problem_solving_in_the_face_of_extreme_limits', '2015']]
selected: /talks/navi_radjou_creative_problem_solving_in_the_face_of_extreme_limits
sleep 3 seconds to avoid blocking
------<1197>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KartickSatyanarayan_2009I.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+those+of+you+who+haven+t+seen+dancing+bears+these+are+the+dancing+bears+in+one+thousand+nine+hundred+and+ninety+five+we+started+working+on+a+two+year+investigative+research+project+to+try+and+find+out+what+was+going+on+because+the+sloth+bears+in+the+wild+were+obviously+getting+depleted+because+of+this
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+qalandar+community+they+are+a+marginalized+islamic+community+who+live+across+india++and+have+been+in+india+since+the+13th+century
found 1 videos: [['/talks/kartick_satyanarayan_how_we_rescued_the_dancing_bears', '2010']]
selected: /talks/kartick_satyanarayan_how_we_rescued_the_dancing_bears
sleep 4 seconds to avoid blocking
------<1198>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KaryMullis_2002.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=talking+about+the+seventeenth+century+i+hope+nobody
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+you+know+when+i+when+i+after+i+had+invented+pcr+i+kind+of+needed+a+change+and+i+moved+down+to+la+jolla+and+learned+how+to+surf+and+i+started+living+down+there+on+the+beach+for+a+long
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+surfers+are+out+waiting+for+waves+you+probably+wonder+if+you+ve+never+been+out+there+what+are+they+doing+you+know+sometimes+there+s+a+ten+fifteen+minute+break+out+there+when+you+re+waiting+for+a+wave+to+come+in
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+usually+talk+about+the+seventeenth+century
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know+they+get+a+real+bad+rap+in+the+world+people+think+they+re+sort+of+lowbrows
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+day+somebody+suggested+i+read+this+book+it+was+called
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+called+the+air+pump+or+something+like+the+leviathan+and+the+air+pump+it+was+a+real+weird+book+about+the+seventeenth+century+and+i+realized
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+roots+of+the+way+i+sort+of+thought+was+just+the+only+natural+way+to+think+about+things
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+you+know+i+was+born+thinking+about+things+that+way+and+i+had+always+been+like+a+little+scientist+guy+and+when+i+went+to+find+out+something+i+used+scientific+methods+i+wasn+t+real+surprised
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know+when+they+first+told+me+how+how
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+you+were+supposed+to+do+science+because+i+d+already+been+doing+it+for+fun+and+whatever
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+it+didn+t+it+never+occurred+to+me+that+it+had+to+be+invented+and+that+it+had+been+invented+only+three+hundred+and+fifty+years+ago
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know+it+was+it+was+like+it+happened+in+england+and+germany+and+italy+sort+of+all+at+the+same
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+story+of+that+i+thought+was+really+fascinating+so+i+m+going+to+talk+a+little+bit+about+that+and+what+exactly+is+it+that+scientists+are+supposed+to+do+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+it+s+a+kind+of+you+know+charles+i+got+beheaded+somewhere+early+in+the+seventeenth+century+and+the+english+set+up
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=cromwell+and+a+whole+bunch+of+republicans+or+whatever+and+not+the+kind+of+republicans+we+had
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+finally+put+back+on+the+throne+of+england
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+was+really+nervous+because+his+dad+had+been+you+know+beheaded+for+being+the+king+of+england
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+he+was+nervous+about+the+fact+that+conversations+that+got+going+in+like+bars
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=kind+of+it+s+hard+to+believe+but+people+in+the+seventeenth+century+in+england
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=were+starting+to+talk+about+you+know+philosophy+and+stuff+in+bars+they+didn+t+have+tv+screens+and+they+didn+t+have+any+football+games+to+watch+and+they+would+get+really
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=pissy+and+all+of+a+sudden+people+would+spill+out+into+the+street+and+fight+about+issues+like+whether+or+not
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+okay+if+robert+boyle+made+a+device+called+the+vacuum+pump+now+boyle+was+a+friend+of+charles+ii+he+was+a+christian
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=guy+during+the+weekends+but+during+the+week+he+was+a+scientist
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+was+back+then+it+was+sort+of+you+know+well+you+know+if+you
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+made+this+thing+he+made+this+little+device+like+kind+of+like+a+bicycle+pump+in+reverse+that+could+suck+all+the+air+out+of+you+know+what
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=pick+it+up+put+it+down+and+it+s+got+a+seal+and+you+can+see+inside+of+it+so+you+can+see+what+s+going+on+inside+this+thing+but+what+he+was+trying+to+do+was+to+pump+all+the+air+out+of+there+and+see+what+would+happen+inside+there
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+mean+the+first+i+think+one+of+the+first+experiments+he+did+was+he+put+a+bird+in+there
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+and+people+in+the+seventeenth+century+they+didn+t+really+understand+the+same+way+we+do+about+you+know+this+stuff+is+a+bunch+of+different+kinds+of+molecules+and+we+breathe+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+for+a+purpose+and+all+that+i+mean+fish+don+t+know+much+about+water+and+people+didn+t+know+much+about+air
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=exploring+it+one+thing+he+put+a+bird+in+there+and+he+pumped+all+the+air+out+and+the+bird+died+so
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+said+hmm+he+said+he+called+what+he+d+done+as+making+they+didn+t+call+it+a+vacuum+pump+at+the+time+now+you+call+it+a+vacuum+pump
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+called+it+a+vacuum+right+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=got+into+trouble+with+the+local+clergy+who+said+you+can+t+make+a+vacuum+ah+uh
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=aristotle+said+that+nature+abhors+one+i+think+it+was+a+poor+translation+probably+but
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+relied+on+authorities+like+that+and+you+know+boyle+says+well+shit
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+make+them+all+the+time+i+mean+whatever+that+is+that+kills+the+bird+and+i+m+calling+it+a+vacuum+and
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=god+wanted+you+to+make+i+mean
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=god+is+everywhere+that+was+one+of+their+rules+is+god+is+everywhere
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+a+vacuum+there+s+nothing+in+a+vacuum+so+you+ve+god+couldn+t+be+in+there+so+therefore+the+church+said+that+you+can+t+make+a+vacuum+you+know+and+boyle+said+bullshit+i+mean
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+want+to+call+it+godless+you+know+you+call+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=godless+but+that+s+not+my+job+i+m+not+into+that+i+do+that+on+the+weekend+and+like
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+i+m+trying+to+do+is+figure+out+what+happens+when+you+suck+everything+out+of+a+compartment+and+he+did+all+these+cute+little+experiments+like+he+did+one+with
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+had+a+little+wheel+like+a+fan+that+was+that+was
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sort+of+loosely+attached+so+it+could+spin+by+itself+he+had+another+fan+opposed+to+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=had+like+a+i+mean+the+way+i+would+have+done+this+would+be+like+a+rubber+band+and+you+know+around+a+tinker+toy+kind+of+fan+i+know+exactly+how+he+did+it+i+ve+seen+the+drawings+it+s+two+fans+one+which+he+could+turn+from+outside+after+he+got+the+vacuum+established
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+he+discovered+that+if+he+pulled+all+the+air+out+of+it+the+one+fan+would+no+longer+turn+the+other+one+right
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=something+was+missing+you+know+i+mean+these+are+it+s+kind+of+weird+to+think+that+someone+had+to+do+an+experiment
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+but+that+was+what+was+going+on+at+the+time+and+and+like+there+was+big+arguments+about+it+in+the+you+know+the+gin+houses+and+in+the+coffee+shops+and+stuff
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+charles+started+not+liking+that+charles+ii+was+kind+of+saying+you+know+you+should+keep+that
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+s+let+s+make+a+place+where+you+can+do+this+stuff+where+people+don+t+get+so+you+know+we+don+t+want+the+we+don+t+want+to+get+the+people+mad+at+me+again
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+when+they+started+talking+about+religion+and+science+and+stuff+like+that+that+s+when+it+had+sort+of+gotten+his+father+in+trouble+and+so
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=charles+said+i+m+going+to+put+up+the+money+give+you+guys+a+building
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=come+here+and+you+can+meet+in+the+building+but+just+don+t+talk+about+religion+in+there+and+that+was+fine+with+boyle+he+said+ok+we+re+going+to+start+having+these+meetings+and+anybody+who+wants+to+do+science
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+time+that+isaac+newton+was+starting+to+whip+out+a+lot+of+really+interesting+things+and+there+was+all+kind+of+people+that+would+come+to+the+royal+society+they+called+it
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+had+to+be+dressed+up+pretty+well+it+wasn+t+like+a+ted+conference+the+was+the+only+criteria+was+that
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+be+you+be+you+looked+like+a+gentleman+and+they+d+let+anybody+could+come+you+didn+t+have+to+be+a+member+then
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+they+would+come+in+and+you+would+do+anybody+that+was+going+to
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=show+an+experiment+which+was+kind+of+a+new+word
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=demonstrate+some+principle+they+had+to+do+it+on+stage+where+everybody+could+see+it+so+they+were+the+really+important+part+of+this+was
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+were+not+supposed+to+talk+about+final+causes+for+instance+and+god+was+out+of+the+picture+the+actual+nature+of+reality+was+not+at+issue
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+supposed+to+talk+about+the+absolute+nature+of+anything+you+were+not+supposed+to+talk+about+anything+that+you+couldn+t+demonstrate+so+if+somebody+could+see+it+you+could+say+here+s+how+the+machine+works
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+s+what+we+do+and+then+here+s+what+happens+and+seeing+what+happens+it+was+ok+to+generalize+and+say
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+sure+that+this+will+happen+anytime+we+make+one+of+these+things+and+so+you+can+you+can+start+making+up+some+rules+you+say+anytime+you+have+a+vacuum+state+you+will+discover
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+one+wheel+will+not+turn+another+one+if+if+the+only+connection+between+them+is+whatever+was+there+before+the+vacuum+that+kind+of+thing
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=candles+can+t+burn+in+a+vacuum+therefore+probably+sparklers+wouldn+t+either+it+s+not+clear+actually+sparklers+will+but
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+didn+t+know+that+they+didn+t+have+sparklers+but+they
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+make+up+rules+but+they+have+to+relate
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=only+to+the+things+that+you+ve+been+able+to+demonstrate+and+most+the+demonstrations+had+to+do+with+visuals
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+if+you+do+an+experiment+on+stage+and+nobody+can+see+it+they+can+just+hear+it+they+would+probably+think+you+were+freaky+i+mean
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=reality+is+what+you+can+see
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+wasn+t+an+explicit+rule+in+in+the+meeting+but+i+m+sure+that+was+part+of+it+you+know+if+people+hear+voices
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+can+t+see+and+associate+it+with+somebody+that+person+s+probably+not+there
error: request timeout
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+general+idea+that+you+could+only
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+could+only+really+talk+about+things+in+that+place
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+had+some+kind+of+experimental+basis+it+didn+t+matter+what+thomas+hobbes+who+was+a+local+philosopher+said+about+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know+because+you+weren+t+going+to+talking+final+causes+what+s+happening+here+in+the+middle+of+the+seventeenth+century+was+that+what+became+my+field+science+experimental+science
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=pulling+itself+away+and+it+was+in+a+physical+way+because+we+re+going+to+do+it+in+this+room+over+here+but+it+was+also+what+it+was+an+amazing+thing+that+happened+science+had+been+all+interlocked+with+theology
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+and+and+mathematics+which+is+really+not+science
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+experimental+science+has+been+tied+up+with+all+those+things
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+experimental+science+part+was+pulling+away+from+philosophy+and+things+we+never+looked+back+it+s+been+so+cool+since+then
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+mean+it+just+it+just+untangled+a+thing+that+was+really+impeding
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+mean+everybody+in+this+room+now+this+is+three+hundred+and+fifty+short+years+ago+remember+that+s+a+short+time+it+was+three+hundred+thousand+probably+years+ago+that
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+us+the+ancestors+of+most+of+us+in+this+room+came+up+out+of+africa+and+turned+to+the+left
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know+the+ones+that+turned+to+the+right+there+are+some+of+those+in+the+japanese+translation+but+that+that+happened+very+a+long+time+ago
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=compared+to+three+hundred+and+fifty+short+years+ago+but+in+that+three+hundred+and+fifty+years+the+place+has+just+undergone+a+lot+of+changes+in+fact+everybody+in+this+room+probably+especially+if+you+picked
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=up+your+bag+some+of+you+i+know+didn+t+pick+up+your+bags+but+if+you+picked+up+your+bag+everybody+in+this+room+has+got+in+their+pocket+or+back+in+their+room+something
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+three+hundred+and+fifty+years+ago+kings+would+have+gone+to+war+to+have
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+mean+if+you+can+think+how+important+if+you+have+a+gps+system+and+there+are+no+satellites+it+s+not+going+to+be+much+use+but+like+but
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know+if+somebody+had+a+gps+system+in+the+seventeenth
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=century+some+king+would+have+gotten+together+an+army+and+gone+to+get+it+you+know+if+that+person+for+the+teddy+bear+the+teddy+bear+they+might+have+done+it+for+the+teddy+bear+yeah
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+all+of+us+own+stuff+i+mean+individuals+own+things+that+kings+would+have+definitely+gone+to+war+to+get+and+this+is+just
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=three+hundred+and+fifty+years+not+a+whole+lot+of+people+doing+this+stuff
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know+the+important+people+you+can+almost+read+about+their+lives+about+all+the+really+important+people+that+made+advances+you+know+and+i+mean
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+kind+of+stuff+you+know+all+this+stuff+came+from+from+that+separation
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+this+little+sort+of+thing+that+we+do+now+i+when+i+was+a+boy
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+born+sort+of+with+this+idea+that+if+you+want+to+know+something+you+know+maybe+it+s+because+my+old+man+was+gone+a+lot+and+my+mother+didn+t+really+know+much+science+but+i+thought+if+you+want+to+know+something+about+stuff+you+do+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+make+an+experiment+you+know+you+get+you+get+like
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+just+had+a+natural+feeling+for+science+and+setting+up+experiments+i+thought+that+was+the+way+everybody+had+always+thought+i+thought+that+anybody+with+any+brains+will+do+it+that+way+it+isn+t+true+i+mean+there+s+a+lot+of+people+you+know+i+was+one+of+those+scientists+that
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+got+into+trouble+the+other+night+at+dinner+because+of+the+post+modernism+thing+and+i+didn+t+mean+you+know+where+is+that+lady
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+mean+i+didn+t+really+think+of+that+as+an+argument+so+much+as+just+a+lively+discussion
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+didn+t+take+it+personally+but
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+had+i+naively+had+thought+until+this+surfing+experience+started+me+into+the+seventeenth+century
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+d+thought+that+that+s+just+the+way+people+thought+and+everybody+did+and+they+recognized+reality+by+what+they+could+see+or+touch+or+feel+or+hear
error: request timeout
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+like+for+instance+i+i+had+this+i+got+this+little+book+from+fort+sill+oklahoma+this+is+about+the+time+that+george+dyson+s+dad+was+starting+to+blow+nuclear+thinking+about+blowing+up+nuclear+rockets+and+stuff
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+thinking+about+making+my+own+little+rockets+and+i+knew+that+frogs+little+frogs+had+aspirations+of+space+travel+just+like+people
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+i+was+looking+for+a
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+would+like+make+a+rocket+like+maybe+about+four+feet+high+go+up+a+couple+of+miles
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+mean+that+was+my+sort+of+goal+i+wanted+it+to+go+out+of+sight+and+then+i+wanted+this+little+parachute+to+come+back
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+the+frog+in+it+and
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+got+this+book+from+fort+sill+oklahoma+where+there+s+a+missile+base+they+send+it+out+for+amateur+rocketeers+and
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+said+in+there+do+not+ever+heat+a+mixture+of+potassium+perchlorate+and+sugar
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know+that+s+what+you+call+a+lead
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+sort+of+now+you+say+well+let+s+see+if+i
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+potassium+chlorate+and+sugar+perchlorate+and+sugar+and+heat+it+it+would+be+interesting+to+see+what+it+is+they+don+t+want+me+to+do+and+what+it+is+going+to+and+how+is+it+going+to+work+and
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+didn+t+have+like+my+mother
error: request timeout
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=over+the+back+yard+from+an+upstairs+window+where+she+would+be+ironing+or+something+like+that+and+she+was+usually+just+sort+of+keeping+an+eye+on+and+if+there+was+puffs+of+smoke+out+there+she+d+lean+out+and
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=admonish+us+all+not+to+blow+our+eyes+out+that+was+her
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=kind+of+the+worst+thing+that+could+happen+to+us+that+s+why+i+thought+as+long+as+i+don+t+blow+my+eyes+out
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+may+not+care+about+the+fact+that+it+s+prohibited+from+heating+this+solution+i+m+going+to+do+it+carefully+but+i+ll
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=do+it+it+s+like+anything+else+that+s+prohibited+you+do+it+behind+the+garage
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+i+went+to+the+drug+store+and+i+tried+to+buy+some+potassium+perchlorate+and+it+wasn+t+unreasonable+then+for+a+kid+to+walk+into+a
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=drug+store+and+buy+chemicals+nowadays+it+s+no+ma+am+check+your+shoes+and+like
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+then+it+wasn+t+they+didn+t+have+any+but+the+guy+had+i+said+what+kind+of+salts+or+potassium+do+you+have+you+know+and+he+had+potassium+nitrate+and+i+said
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+might+do+the+same+thing+whatever+it+is
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+sure+it+s+got+to+do+with+rockets+or+it+wouldn+t+be+in+that+manual+and+so+i+i+did+some+experiments+you+know+i+started
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=tiny+amounts+of+potassium+nitrate+and+sugar+which+was+readily+available+and+i+mixed+it+in+different+proportions+and+i+tried+to+light+it+on+fire
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=just+to+see+what+would+happen+if+you+mixed+it+together+and+it+they+burned+it+burned+kind+of+slow+but+it+made+a+nice+smell+compared+to+other+rocket+fuels+i+had+tried+that+all+had+sulfur+in+them
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+i+tried+the+melting+business+and+i+melted+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+it+it+melted+into+a+little+sort+of+syrupy+liquid+brown+and+then+it+cooled+down+to+a+brick+hard+substance
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+when+you+lit+that+it+went+off+like+a+bat
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+mean+the+little+bowl+of+that+stuff+that+had+cooled+down+you+d+light+it+and+it+would+just+start+dancing+around+the+yard+and+i+said+there+is+a+way+to+get+a+frog+up+to+where+he+wants+to+go
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+started+developing+you+know+george+s+dad
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=had+a+lot+of+help+i+just+had+my+brother+but+i+it+took+me+about
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+took+me+about+i+d+say+six+months+to+finally+figure+out+all+the+little+things+there+s+a+lot+of+little+things+involved+in+making+a+rocket+that+it+will+actually+work+even+after+you+have+the+fuel
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+you+do+it+by+what+i+just+you+know+you+do+experiments
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+write+down+things+sometimes+you+make+observations+you+know+and+then+you+slowly+build+up+a+theory+of+how+this+stuff
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=works+and+it+was+i+was+following+all+the+rules+i+didn+t+know+what+the+rules+were+i+m+a+natural+born+scientist+i+guess+or
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+kind+of+a+throwback+to+the+seventeenth+century+whatever+but+at+any+rate+we+finally+did
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+a+device+that+would+reproduceably+put+a+frog+out+of+sight+and+get+him+back+alive
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+mean+we+weren+t+frightened+by+it+we+should+have+been+because+it+made+a+lot+of+smoke+and+it+made+a+lot+of+noise
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+was+powerful+you+know+and+once+in+a+while+they+would+blow+up+but
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+wasn+t+worried+by+the+way+about+you+know
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+explosion+causing+the+destruction+of+the+planet+i+hadn+t+heard+about+the+ten+ways+that+we+should+be+afraid+of+the+by+the+way
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+could+have+thought+i+d+better+not+do+this+because
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+say+not+to+you+know+and+i+d+better+get+permissionfrom+the+government+if+i+d+have+waited+around+for+that+i+would+have+never+the+frog+would+have+died
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+any+rate+i+bring+it+up+because+it+s+a+good+story+and+he+said+tell+personal+things+you+know+and+that+s+a+personal+i+was+going+to+tell+you+about+the+first+night+that+i+met+my+wife+but+that+would+be+too+personal+wouldn+t+it
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+ve+got+something+else+that+s+not+personal+but+that+process+is+what
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=think+of+as+science+see+where+you+start+with+some+idea+and+then+instead+of+like+looking+up
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=every+authority+that+you+ve+ever+heard+of+i+sometimes+you+do+that+if+you+re+going+to+write+a+paper+later+you+want+to+figure+out+who+else+has+worked+on+it+but+in+the+actual+process+you
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=get+an+idea+like+when+i+got+the+idea+one+night+that+i+could+amplify+dna+with+two+oligonucleotides+and+i+could+make+lots+of+copies+of+some+little+piece+of+dna
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+thinking+for+that+was+about+twenty+minutes
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=while+i+was+driving+my+car+and+then+instead+of+going+i+went+back+and+i+did+talk+to+people+about+it+but+if+i+d+listened+to+what+i+heard+from+all+my+friends+who+were+molecular+biologists
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+would+have+abandoned+it+you+know+if+i+had+gone+back+looking+for+an+authority+figure+who+could+tell+me+if+it+would+work+or+not+he+would+have+said+no
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+the+results+of+it+were+so+spectacular+that+if+it+worked+it+was+going+to+change+everybody+s+goddamn+way+of+doing+molecular+biology+nobody+want+a+chemist+to+come+in+and+poke+around+in+their+stuff+like+that+and+change+things
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+if+if+you+go+to+authority+and+you+always+don+t+you+don+t
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=always+get+the+right+answer+see+but+i+knew+you+d+go+into+the+lab+and+you+d+try+to+make+it+work+yourself+and+then+you+re+the+authority+and+you+can+say+i+know+it+works+because+right+there+in+that+tube+is+where+it+happened+and+here+on+this+gel+there+s+a+little+band+there+that+i+know
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+dna+and+that+s+the+dna+i+wanted+to+amplify+so+there+so+it+does+work
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know+that+s+how+you+do+science+and+then+you+say+well+what+can+make+it+work+better+and+then+you+figure+out+better+and+better+ways+to+do+it+but+you+always+work+from+from+like+facts+that+you+have+made
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=available+to+you+by+doing+experiments+things+that+you+could+do+on+a+stage+and+no+tricky+shit+behind+the+thing+i+mean+it+s+all+you+ve+got+to+be+very+honest
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+mean+you+can+t+make+up+results+and+then+do+another+experiment+based+on+that+one+so+you+have+to+be+honest
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+m+basically+honest+i+have+a+fairly+bad+memory+and+dishonesty+would+always+get+me+in+trouble
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+i+like+so+i+ve+just+sort+of+been+naturally+honest+and+naturally+inquisitive+and+that+sort+of+leads+to+that+kind+of+science+now+let+s+see
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+is+a+lot+a+lot+has+been+going+on+since+since+isaac+newton+and+all+that+stuff+happened
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+the+things+that+happened+right+around+world+war+ii+in+that+same+time+period+before+and+as+sure+as+hell+afterwards
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=government+got+realized+that+scientists+aren+t+strange+dudes+that+you+know+hide+in+in+ivory+towers+and+do+ridiculous+things+with
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=scientists+you+know+made+world+war+ii+as+we+know+it+quite+possible+they+made+faster+things+they+made
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=bigger+guns+to+shoot+them+down+with+you+know+they+made
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=drugs+to+give+the+pilots+if+they+were+broken+up+in+the+process+they+made+all+kinds+of+and+then+finally+one+giant+bomb+to+end+the+whole
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=everybody+stepped+back+a+little+and+said+you+know+we+ought+to+invest+in+this+shit
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+whoever+has+got+the+most+of+these+people+working+in+the+places+is+going+to+have+a+dominant+position+at+least+in+the+military+and+probably+in+all+kind+of+economic+ways+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+got+involved+in+it+and+the+scientific+and+industrial+establishment+was+born+and+out+of+that+came+a+lot+of+scientists+who+were+in+there+for+the+money
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+later+went+in+to+medical+school+you+know+because+there+was+money+in+it+you+know+i+mean+later+then+they+all+got+into+business+i+mean+there+are+waves+of+going+into
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=your+high+school+person+saying+you+want+to+be+right+you+know+be+a+scientist+you+know+not+anymore+you+want+to+be+rich+you+be+a+businessman+but+a+lot+of+people+got+in+it+for+the+money+and+the+power+and+the+travel+that+s
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=those+people+don+t+think+they+don+t+they
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+don+t+always+tell+you+the+truth+you+know+there+is+nothing+in+their+contract+in+fact+that+makes+it+to+their+advantage+always+to+tell+you+the+truth
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+people+i+m+talking+about+are+people+that+like
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+say+that+they+re+a+member+of+the+committee+called+say+the+inter+governmental+panel+on+climate+change
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+and+they+have+these+big+meetings+where+they+try+to+figure+out
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+we+re+going+to+how+we+re+going+to+continually+prove+that+the+planet+is
error: request timeout
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+that+s+actually+contrary+to+most+people+s+sensations+i+mean+if+you+actually+measure+the+temperature
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=over+a+period+i+mean+the+temperature+has+been+measured+now+pretty+carefully+for+about+fifty+sixty+years
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=longer+than+that+it+s+been+measured+but+in+really+nice
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=precise+ways+and+records+have+been+kept+for+fifty+or+sixty+years+and+in+fact+the+temperature+hadn+t+really+gone+up+it+s+like+the+average+temperature+has
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=gone+up+a+tiny+little+bit+because+the+nighttime+temperatures+at+the+weather+stations+have+come+up+just+a+little+bit+but+there+s+a+good+explanation+for+that+and+it+s+that+the+weather+stations
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+all+built+outside+of+town+where+the+airport+was+and+now+the+town+s+moved+out+there+there+s+concrete+all+around+and+they+call+it+the+skyline+effect+and+most+responsible+people+that+measure
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=temperatures+realize+you+have+to+shield+your+measuring+device+from+that+and+even+then
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know+because+the+buildings+get+warm+in+the+daytime+and+they+keep+it+a+little+warmer+at+night+so+the+temperature+has+been+sort+of+inching+up+it+should+have+been+but+not+a+lot+not+like+you+know
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+first+guy+the+first+guy+that+got+the+idea+that+we+re+going+to+fry+ourselves+here+actually+he+didn+t+think+of+it+that+way+his+name+was+sven+arrhenius+he+was+he+was+swedish
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+he+said+if+you+double+the+cotwo+level+in+the+atmosphere+which+he+thought+might+this+is
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=temperature+ought+to+go+up+about+five+five+degrees+he+calculated+he+was+thinking+of+the+earth+as+kind+of+like+you+know+like+a
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=completely+insulated+thing+with+no+stuff+in+it+really+just+energy+coming+down+energy+leaving
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+he+came+up+with+this+theory+and+he+said+this+will+be+cool+because+it+ll+be+a+longer+growing+season+in+sweden
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know+and+the+surfers+liked+it+the+surfers+thought+that+s+a+cool+idea+because+it+s+pretty+cold+in+the+ocean+sometimes
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+but+a+lot+of+other+people+later+on+started+thinking+it+would+be+bad+you+know+but
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=has+gone+up+a+tiny+little+bit
found 0 videos: []
error: no video is found.
sleep 1 seconds to avoid blocking
------<1199>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KaryMullis_2009.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+stage+in+philadelphia+i+think+it+was+with+a+bag+similar+to+this+and+i+was+pulling+a+molecule+out+of+this+bag+and+i+was+saying+you+don+t+know+this
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=your+body+knows+it+extremely+well++and+i+was+thinking+that+your+body+hated+it++at+the+time+because+we+are+very+immune+to+this+this+is+called
found 1 videos: [['/talks/kary_mullis_a_next_gen_cure_for_killer_infections', '2009']]
selected: /talks/kary_mullis_a_next_gen_cure_for_killer_infections
sleep 1 seconds to avoid blocking
------<1200>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KateAdams_2016S.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=tina+lord+found+herself+in+quite+the+pickle+see+this+gold+digger+made+sure+she+married+sweet+cord+roberts+just+before+he+inherited+millions
found 1 videos: [['/talks/kate_adams_4_larger_than_life_lessons_from_soap_operas', '2016']]
selected: /talks/kate_adams_4_larger_than_life_lessons_from_soap_operas
sleep 1 seconds to avoid blocking
------<1201>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KateHartman_2011.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+like+to+make+devices+that+play+with+the+ways+that+we+relate+and+communicate
found 5 videos: [['/talks/kate_hartman_the_art_of_wearable_communication', '2011'], ['/talks/read_montague_what_we_re_learning_from_5_000_brains', '2012'], ['/talks/diana_reiss_peter_gabriel_neil_gershenfeld_and_vint_cerf_the_interspecies_internet_an_idea_in_progress', '2013'], ['/talks/aaron_koblin_visualizing_ourselves_with_crowd_sourced_data', '2011'], ['/talks/john_gerzema_the_post_crisis_consumer', '2009']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+m+specifically+interested+in+how+we+as+humans+relate+to+ourselves++each+other
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+just+to+give+you+a+bit+of+context+as+june+said+i+m+an+artist+a+technologist+and+an+educator++i+teach+courses+in+physical+computing+and+wearable+electronics+and+much+of+what+i+do+is+either
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=wearable+or+somehow+related+to+the+human+form++and+so+anytime+i+talk+about+what+i+do+i+like+to+just+quickly+address+the+reason+why+bodies+matter
found 1 videos: [['/talks/kate_hartman_the_art_of_wearable_communication', '2011']]
selected: /talks/kate_hartman_the_art_of_wearable_communication
sleep 1 seconds to avoid blocking
------<1202>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KateOrff_2010W.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+am+passionate+about+the+american+landscape+and+how+the+physical+form+of+the+land+from+the+great+central+valley+of+california+to+the+bedrock+of+manhattan+has+really+shaped+our+history+and+our+character
found 1 videos: [['/talks/kate_orff_reviving_new_york_s_rivers_with_oysters', '2011']]
selected: /talks/kate_orff_reviving_new_york_s_rivers_with_oysters
sleep 5 seconds to avoid blocking
------<1203>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KateStafford_2016X.stm
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=won+both+the+palme+d++or+and+an+oscar+award+this+film+was+called+le+monde+du+silence+or+the+silent
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+premise+of+the+title+was+that+the+underwater+world
found 1 videos: [['/talks/kate_stafford_how_human_noise_affects_ocean_habitats', '2017']]
selected: /talks/kate_stafford_how_human_noise_affects_ocean_habitats
sleep 4 seconds to avoid blocking
------<1204>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KateStone_2013.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+love+technology+and+what+i+do+is+is+i+make+paper+interactive
found 3 videos: [['/talks/kate_stone_dj_decks_made_of_paper', '2013'], ['/talks/massimo_banzi_how_arduino_is_open_sourcing_imagination', '2012'], ['/talks/anant_agarwal_why_massive_open_online_courses_still_matter', '2014']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+s+what+i+say+when+people+ask+me+what+i+do+but+it+really+confuses+most+people+so+really+the+best+way+for+me+to+convey+it
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+to+take+the+technology+and+be+creative+and
found 14 videos: [['/talks/wayne_mcgregor_a_choreographer_s_creative_process_in_real_time', '2012'], ['/talks/molly_stevens_a_new_way_to_grow_bone', '2014'], ['/talks/john_maeda_how_art_technology_and_design_inform_creative_leaders', '2012'], ['/talks/mary_lou_jepsen_could_future_devices_read_images_from_our_brains', '2014'], ['/talks/cynthia_breazeal_the_rise_of_personal_robots', '2011'], ['/talks/dave_isay_everyone_around_you_has_a_story_the_world_needs_to_hear', '2015'], ['/talks/keren_elazari_hackers_the_internet_s_immune_system', '2014'], ['/talks/homaro_cantu_ben_roche_cooking_as_alchemy', '2011'], ['/talks/kirby_ferguson_embrace_the_remix', '2012'], ['/talks/nick_bostrom_what_happens_when_our_computers_get_smarter_than_we_are', '2015'], ['/talks/rana_el_kaliouby_this_app_knows_how_you_feel_from_the_look_on_your_face', '2015'], ['/talks/anant_agarwal_why_massive_open_online_courses_still_matter', '2014'], ['/talks/deborah_rhodes_a_test_that_finds_3x_more_breast_tumors_and_why_it_s_not_available_to_you', '2011'], ['/talks/eddie_obeng_smart_failure_for_a_fast_changing_world', '2012']]
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+tried+to+think+what+i+could+use+for+here+and+a+couple+of+weeks+ago+i+had+a+crazy+idea+that+i+wanted+to+print
found 1 videos: [['/talks/kate_stone_dj_decks_made_of_paper', '2013']]
selected: /talks/kate_stone_dj_decks_made_of_paper
sleep 2 seconds to avoid blocking
------<1205>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KatherineFulton_2007.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=want+to+help+you+re+perceive+what+philanthropy+is+what+it+could+be
found 1 videos: [['/talks/katherine_fulton_you_are_the_future_of_philanthropy', '2009']]
selected: /talks/katherine_fulton_you_are_the_future_of_philanthropy
sleep 2 seconds to avoid blocking
------<1206>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KathrynSchulz_2011.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+in+college++and+a+friend+and+i+go+on+a+road+trip+from+providence+rhode+island+to+portland+oregon+and+you+know+we+re
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+we+do+the+whole+thing+on+back+roads+through+state+parks+and+national+forests
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=basically+the+longest+route+we+can+possibly+take
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+somewhere+in+the+middle+of+south+dakota++i+turn+to+my+friend
found 1 videos: [['/talks/kathryn_schulz_on_being_wrong', '2011']]
selected: /talks/kathryn_schulz_on_being_wrong
sleep 5 seconds to avoid blocking
------<1207>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KathrynSchulz_2011S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+johnny+depp+of+course
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+s+johnny+depp+s+shoulder
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+s+johnny+depp+s+famous+shoulder+tattoo
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+of+you+might+know+that+in+one+thousand+nine+hundred+and+ninety+depp+got+engaged+to+winona+ryder++and+he+had+tattooed+on+his+right+shoulder
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=winona+forever+and+then+three+years+later+which+in+fairness+kind+of+is+forever+by+hollywood+standards
found 1 videos: [['/talks/kathryn_schulz_don_t_regret_regret', '2011']]
selected: /talks/kathryn_schulz_don_t_regret_regret
sleep 2 seconds to avoid blocking
------<1208>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KathyHull_2016W.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+introduce+you+to+some+very+wise+kids+that+i+ve+known++but+first+i+want+to+introduce+you+to+a+camel
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+cassie+a+therapy+camel+visiting+one+of+our+young+patients+in+her+room
found 1 videos: [['/talks/kathy_hull_stories_from_a_home_for_terminally_ill_children', '2017']]
selected: /talks/kathy_hull_stories_from_a_home_for_terminally_ill_children
sleep 4 seconds to avoid blocking
------<1209>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KatieBouman_2016X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+a+supermassive+black+hole+set+against+a+backdrop+of+bright+gas+the+black+hole+s+massive+gravitational+pull+bends+light+into+a+ring++however++this
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+real+photograph+but+a+computer+graphic+rendering+an+artistic+interpretation+of+what+a+black+hole+might+look+like
found 1 videos: [['/talks/katie_bouman_how_to_take_a_picture_of_a_black_hole', '2017']]
selected: /talks/katie_bouman_how_to_take_a_picture_of_a_black_hole
sleep 3 seconds to avoid blocking
------<1210>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KatieHinde_2016W.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+you+ever+heard+the+one+about+how+breastfeeding+is+free
found 1 videos: [['/talks/katie_hinde_what_we_don_t_know_about_mother_s_milk', '2017']]
selected: /talks/katie_hinde_what_we_don_t_know_about_mother_s_milk
sleep 5 seconds to avoid blocking
------<1211>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KavitaRamdas_2009I.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=good+morning+given+my+ted+profile+you+might+be+expecting+that+i+m+going+to+speak+to+you+about+the+latest+philanthropic+trends
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+one+that+s+currently+got+wall+street+and+the+world+bank+buzzing
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+to+invest+in+women+how+to+empower+them
found 2 videos: [['/talks/kavita_ramdas_radical_women_embracing_tradition', '2010'], ['/talks/chimamanda_ngozi_adichie_the_danger_of_a_single_story', '2009']]
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+am+interested+in+how+women+are+saving+us
found 15 videos: [['/talks/kavita_ramdas_radical_women_embracing_tradition', '2010'], ['/talks/jacqueline_novogratz_patient_capitalism', '2007'], ['/talks/ngozi_okonjo_iweala_aid_versus_trade', '2007'], ['/talks/aimee_mullins_my_12_pairs_of_legs', '2009'], ['/talks/elif_shafak_the_politics_of_fiction', '2010'], ['/talks/sarah_jones_a_one_woman_global_village', '2009'], ['/talks/alice_dreger_is_anatomy_destiny', '2011'], ['/talks/david_kelley_human_centered_design', '2007'], ['/talks/newton_aduaka_the_story_of_ezra', '2008'], ['/talks/sarah_kaminsky_my_father_the_forger', '2011'], ['/talks/thelma_golden_how_art_gives_shape_to_cultural_change', '2010'], ['/talks/a_j_jacobs_my_year_of_living_biblically', '2008'], ['/talks/j_j_abrams_the_mystery_box', '2008'], ['/talks/george_whitesides_toward_a_science_of_simplicity', '2010'], ['/talks/jane_goodall_what_separates_us_from_chimpanzees', '2007']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+re+saving+us+by+redefining+and+re+imagining+a+future+that+defies+and+blurs+accepted+polarities+polarities+we+ve+taken+for+granted+for+a+long+time
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+the+ones+between+modernity+and+tradition
found 3 videos: [['/talks/kavita_ramdas_radical_women_embracing_tradition', '2010'], ['/talks/martin_jacques_understanding_the_rise_of_china', '2011'], ['/talks/karen_armstrong_my_wish_the_charter_for_compassion', '2008']]
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=oppression+and+opportunity++in+the+midst+of+the+daunting+challenges+we+face+as+a+global+community+there+s+something+about+this+third+way+raga
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+is+making+my+heart+sing
found 12 videos: [['/talks/annie_lennox_why_i_am_an_hiv_aids_activist', '2010'], ['/talks/charity_tillemann_dick_singing_after_a_double_lung_transplant', '2011'], ['/talks/kavita_ramdas_radical_women_embracing_tradition', '2010'], ['/talks/charles_hazlewood_trusting_the_ensemble', '2011'], ['/talks/david_holt_the_joyful_tradition_of_mountain_music', '2008'], ['/talks/natalie_merchant_singing_old_poems_to_life', '2010'], ['/talks/euvin_naidoo_why_invest_in_africa', '2007'], ['/talks/billy_graham_on_technology_and_faith', '2008'], ['/talks/woody_norris_hypersonic_sound_and_other_inventions', '2009'], ['/talks/peter_tyack_the_intriguing_sound_of_marine_mammals', '2010'], ['/talks/pamela_meyer_how_to_spot_a_liar', '2011'], ['/talks/david_blaine_how_i_held_my_breath_for_17_minutes', '2010']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+intrigues+me+most+is+how+women+are+doing+this+despite+a+set+of+paradoxes+that+are+both+frustrating
found 1 videos: [['/talks/kavita_ramdas_radical_women_embracing_tradition', '2010']]
selected: /talks/kavita_ramdas_radical_women_embracing_tradition
sleep 5 seconds to avoid blocking
------<1212>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KeesMoeliker_2013.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+the+natural+history+museum+in+rotterdam+where+i+work+as+a+curator
found 1 videos: [['/talks/kees_moeliker_how_a_dead_duck_changed_my_life', '2013']]
selected: /talks/kees_moeliker_how_a_dead_duck_changed_my_life
sleep 5 seconds to avoid blocking
------<1213>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KeithBarry_2004.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=brain+magic+what+s+brain+magic+all+about+brain+magic+to+me+indicates+that+area+of+magic+dealing+with+psychological+and+mind+reading+effects+so+unlike+traditional+magic+it+uses+the+power+of+words
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=linguistic+deception+non+verbal+communication+and+various+other+techniques+to+create+the+illusion+of+a+sixth+sense
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=m+going+to+show+you+all+how+easy+it+is+to+manipulate+the+human+mind+once+you+know+how++i+want+everybody+downstairs+also+to+join+in+with+me+and+everybody+i+want+everybody+to+put+out+your+hands+like+this+for+me+first+of+all
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ok++reverse+your+hands+now+follow+my+actions+exactly+now+about+half+the+audience+has+their+left+hand+up++why+is+that+ok+swap
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=them+around+put+your+right+hand+up
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=cross+your+hands+over+so+your+right+hand+goes+over+interlace+your+fingers+like+this+then+make+sure+your+right+thumb+is+outside+your+left+thumb+that+s+very+important+yours+is+the+other+way+around+so+swap+it+around
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=excellent++ok++extend+your+fingers+like+this+for+me
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+right+tap+them+together+once+ok+now++if+you+did+not+allow+me+to+deceive+your+minds+you+would+all+be+able+to+do+this
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+you+can+see+how+easy+it+is+for+me+to+manipulate+the+human+mind+once+you+know+how
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+i+remember+when+i+was+about+fifteen
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+read+a+copy+of+life+magazine++which+detailed+a+story+about+a++75+year+old+blind+russian+woman
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+could+sense+printed+letters+there+s
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+even+sense+colors+just+by+touch+and+she+was+completely+blind+she+could+also+read+the+serial+numbers+on+bills+when+they+were+placed+face+down+on+a+hard+surface
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+i+was+fascinated++but+at+the+same+time+skeptical+how+could+somebody+read+using+their+fingertips
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know+if+you+actually+think+about+it++if+somebody+is+totally+blind
found 4 videos: [['/talks/sasa_vucinic_why_we_should_invest_in_a_free_press', '2006'], ['/talks/helen_fisher_why_we_love_why_we_cheat', '2006'], ['/talks/julia_sweeney_letting_go_of_god', '2006'], ['/talks/dan_gilbert_the_surprising_science_of_happiness', '2006']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+guy+yesterday+did+a+demonstration
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=where+people+had+to+close+their+eyes+and+they+could+just+hear+things
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+s+just+a+really+weird+thing+to+try+and+figure+out+how+could+somebody+read+using+their+fingertips+now+earlier+on+as+part+of+a+tv+show+that+i+have+coming+up+on+mtv+i+attempted+to+give+a+similar+demonstration+of+what+is+now+known+as+second+sight
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=expert+can+see+through+somebody+else+s+eyes
found 1 videos: [['/talks/dan_gilbert_the_surprising_science_of_happiness', '2006']]
selected: /talks/dan_gilbert_the_surprising_science_of_happiness
sleep 3 seconds to avoid blocking
------<1214>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KeithBellows_2002.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+reason+i+put+this+up+here+is+because+when+i+was+in+africa
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=last+year++my+wife+and+i+were+driving+around+we+had+this+wonderful+guide+who+showed+us+something
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+surprised+both+of+us+and+it+was+very+revealing+in+terms+of+the
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fascination+that+comes+with+the+design+of+animals+it+turns+out+that+in+about+the+1880s+the+missionaries+came+to+africa
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+spread+the+word+of+christianity+to+teach+english+to+the+natives++and+they+brought+blackboards+and+chalk+and+i+d+like+you+to+imagine+that
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+a+blackboard+and+i+just+used+some+chalk+on+there++and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+brought+quite+a+bit+of+this+stuff+but+over+the+years+the+blackboards+were+fine+but+they+ran+out+of+chalk++and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+a+real+crisis+for+them++and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+where+the+hyena+comes+in+the+hyena+is+probably+the+most+perfectly+designed+scavenging+animal+in+the+world
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=eat+bones+now++the+end+product+of+that+action
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+up+on+the+board+here+what+the+missionaries+would+do+is+they+d+walk+around
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+d+pick+up+hyena+shit++and+the+incredible+thing+about+hyena+shit+is+it+makes+great
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+what+i+m+here+to+talk+about+but+it+is
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=aspect+of+animal+design+what+i+m+here+to+talk+about+is+the+camel++when+i+started+talking+to+richard+about+what+i+was+going+to+speak+about
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+had+recently+come+back+from+jordan+where+i+had+an+amazing+experience+with+a+camel
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+were+in+the+desert
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+a+small+jeep+there+were+four+of+us+two+bedouin+drivers
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+just+imagine+this+expanse+is++an+ocean+of+sand+one+hundred+and+five+degrees+one+water+bottle
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+what+they+told+us+was+their+very+very+best+jeep+didn+t+look+like+it+to+me+and+as+we+started+to
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+jeep+broke+down+the+guys+got+out+they+put+the+hood+up+they+started+working+under+the+hood
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=got+it+going+again+about+a+hundred+yards+it+broke+down+this+went+on+about++6+7+times+we+were+getting+more+and+more+alarmed+we+were+also+getting+deeper+and+deeper+into+the+desert++and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=eventually++our+worst+nightmare+happened+they+flooded+the+engine++and+they+said+ah+no+problem++we+just+get+out+and+walk
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+sure+enough+about+half+a+mile+we+came+over+the+crest+of+this+hill+and+there+was+a+huge+gathering+of+bedouin+with+their+camels+the+guy+went+up+and+started
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=dickering+and+ten+dollars+later+we+had+four+camels++they+went+down+like+elevators++we+got+on+them++they+went+back+up+and+the+bedouin
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=got+behind+each+of+the+camels+with+a+little+whip++and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+started+slashing+away+at+the+back+of+the+camels+and+they+started+galloping+and+if+you+ve+ever+been+on+a+camel+it+is+a+very+very+uncomfortable+ride
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+also+one+other+aspect+about+these+camels+about+every+ten+steps++they+lean+back+and+try+to+take+a+chunk+out+of+your+leg
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+we+kept+on+going+and+this+camel+camel+kept+on+trying+to+take+a+chunk+out+of+my+leg
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+eventually+three+miles+later+we+arrived+at+our+destination+where+a+jeep+was+supposed+to+meet+us++and+the+camels+come+down+again+like+elevators
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+sort+of+clumsily+get+off+and+they++obviously+try+to+take+another+chunk+out+of+my+leg++and+i+ve+developed+a+very
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=wonderful+relationship+with+this+creature+by+this+point++and+i+ve+realized+that+this+is+a+mean+son+of+a+bitch+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=much+meaner+by+the+way+than+the+bedouin+who+greeted+me+and+tried+to+sell
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=think+we+want+to+be+bringing+a+camel+and+you+should+be+really+glad+we+decided+not+to+bring+the+camel
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+did+the+next+best+thing
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+went+to+the+washington+zoo++richard+said+i+want+you+to+get+up+close+and+personal+with+this+camel
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+you+to+inspect+its+mouth+look+at+its+teeth+go+underneath+it+go+above+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=go+around+it++pull+its+tail+up+take+a+look+in+there++i+want+you+to+get+as+close+to+that+camel+as+you+possibly+can+so+i+got+a
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=national+geographic+film+crew++we+went+down+there++and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+took+one+look+at+this+camel++it+is+a+two+thousand+pound+creature+who+is
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+ve+ever+seen+a+two+thousand+pound+camel+in+rut+it+is+a+scary+scary+thing+to+behold++and+if
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=richard+thought+i+was+getting+in+the+ring+with+that+camel++someone+was+smoking+bedouin+high+grade+so+we
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=got+as+close+to+it+as+possible+and+i+m+going+to+share+this+chris+if+you+want+to+roll+this+film+then+i+m+going+to+show+you+a+little+bit
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=more+about+the+design+of+camels
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=re+similar+to+seals+in+the+way
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+i+didn+t+show+you
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+got+that+swinging+thing+going++well
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+re+glad+i+didn+t+show+you+this+one+of+the+other+things+about+the+camel+s+beautiful+design
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+that+its+penis+points+backwards+that+way+the+camel+can+dip+its+tail+in+the+in+the+stream++and+just+whacker+the+entire
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=area+around+him+and+that+s+how+he+really+marks+his+territory++now++what+you+also+didn+t+see+was+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+may+have+noticed+in+the+pen+beside+him
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+by+the+way+the+camel+s+name+is+suki
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+pen+beside+him+is+jasmine+jasmine+has+been+his+mate+for+some+time+but+on+this+particular+occasion+it+was+very+very+clear
error: request timeout
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+horny+as+suki+was+jasmine+was+having+none+of+it++and+so+we+started+thinking+well
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+poor+old+suki+is+in+search+of+a+mate++what+would+suki
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=show+you+another+film+but+before+i+do+i+just+want+to+mention+that+this+animal+truly+is+a+sort
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+the+suv+of+the+sand++the+ship+of+the+desert+it+s+so+vital
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+to+the+inhabitants+of+the+areas+in+which+the+camel+is+found+largely+mongolia+and+sahara++that+there+are+one+hundred+and+sixty+words+in+arabic+to+describe
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+if+this+is+a+creature+that+was+designed+by+committee+it+s+certainly+been+like+no+committee+i+ve+ever+been+on+so
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+s+here+s+what+suki+would+do+in+search+of+a+mate+can+you+roll+it+please
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+just+want+to+leave+you+with+one+last+thought+which+is+probably+the+most+important+thing+to+take+away
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+animal+are+pretty+lucky+creatures+because+by+and+large++we+really+don+t+have+to
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=adapt+to+our+environment+we+adapt+our+environment+to+us+and+we+ve+seen+that+repeatedly+through+this+conference+not+just+this+year+but+in+past+years
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+this+creature+that+you+ve+just+seen
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ultimately+adapts+and+keeps+adapting+and+adapting+i+think+when+you+look+at+the+animal+kingdom+that+is+one+of+the+most+remarkable+things
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+doesn+t+have+an+environment+that+adapts+to+it++it+has+to+adapt+to+the+environment
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ricky+thank+you+very+much+for
error: request timeout
error: no video is found.
sleep 4 seconds to avoid blocking
------<1215>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KeithChen_2012G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+global+economic+financial+crisis+has+reignited+public+interest+in+something+that+s+actually+one+of+the+oldest+questions+in+economics+dating+back+to+at+least+before+adam+smith+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+is+why+is+it+that+countries+with+seemingly+similar+economies+and+institutions+can+display
found 1 videos: [['/talks/keith_chen_could_your_language_affect_your_ability_to_save_money', '2013']]
selected: /talks/keith_chen_could_your_language_affect_your_ability_to_save_money
sleep 2 seconds to avoid blocking
------<1216>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KeithSchachtandZachKaplan_2005.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=over+the+last+three+years+we+found+over+two+hundred+of+these+things+and+so+we+looked+back+into+our+library+and+selected+six+we+thought+would+be+most+surprising+for+ted
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=six+the+first+one+that+we+re+going+to+talk+about+is+in+the+black+envelope+you+re+holding
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+japan+called+geltech+now+go+ahead+and+open+it+up
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+be+sure+and+take+the+two+pieces+apart
found 5 videos: [['/talks/sasa_vucinic_why_we_should_invest_in_a_free_press', '2006'], ['/talks/deborah_scranton_an_iraq_war_movie_crowd_sourced_from_soldiers', '2007'], ['/talks/edward_burtynsky_my_wish_manufactured_landscapes_and_green_education', '2006'], ['/talks/evelyn_glennie_how_to_truly_listen', '2007'], ['/talks/gever_tulley_5_dangerous_things_you_should_let_your_kids_do', '2007']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+s+unexpected+about+this+is+that+it+s+soft+but+it+s+also+a+strong+magnet
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=zach+and+i+have+always+been+fascinated+observing+unexpected+things+like+this
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+spent+a+long+time+thinking+about+why+this+is
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+s+just+recently+that+we+realized+it+s+when+we+see+something+unexpected+it+changes+our+understanding+of+the+way+things+work
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+you+re+seeing+this+gel+magnet+for+the+first+time+if+you+assume+that+all+magnets+had+to+be+hard
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=then+seeing+this+surprised+you+and+it+changed+your+understanding+of+the+way+magnets+could+work
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+it+s+important+to+understand+what+the+unexpected+properties+are+but+to+really+think+about+the+implications+of+what+this+makes+possible
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+found+that+it+helps+to+think+about+how+it+could+be+applied+in+the+world
found 1 videos: [['/talks/dean_kamen_to_invent_is_to_give', '2007']]
selected: /talks/dean_kamen_to_invent_is_to_give
sleep 5 seconds to avoid blocking
------<1217>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KellerRinaudo_2013.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=just+by+a+show+of+hands+how+many+of+you+all+have+a+robot+at+home
found 14 videos: [['/talks/keller_rinaudo_a_mini_robot_powered_by_your_phone', '2013'], ['/talks/todd_kuiken_a_prosthetic_arm_that_feels', '2011'], ['/talks/ken_goldberg_4_lessons_from_robots_about_being_human', '2012'], ['/talks/daniel_wolpert_the_real_reason_for_brains', '2011'], ['/talks/eythor_bender_human_exoskeletons_for_war_and_healing', '2011'], ['/talks/cesar_harada_a_novel_idea_for_cleaning_up_oil_spills', '2012'], ['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013'], ['/talks/mick_mountz_what_happens_inside_those_massive_warehouses', '2012'], ['/talks/dale_dougherty_we_are_makers', '2011'], ['/talks/aaron_koblin_visualizing_ourselves_with_crowd_sourced_data', '2011'], ['/talks/naomi_klein_addicted_to_risk', '2011'], ['/talks/marc_goodman_a_vision_of_crimes_in_the_future', '2012'], ['/talks/rishi_manchanda_what_makes_us_get_sick_look_upstream', '2014'], ['/talks/adam_spencer_why_i_fell_in_love_with_monster_prime_numbers', '2013']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+very+many+of+you+okay+and+actually+of+those+hands++if+you+don+t+include+roomba+how+many+of+you+have+a+robot+at+home
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+a+couple+that+s+okay+that+s+the+problem+that+we+re+trying+to+solve+at+romotive+that+i+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+other+twenty+nerds+at+romotive+are+obsessed+with+solving++so+we+really+want+to+build+a+robot+that+anyone+can+use+whether+you+re+eight+or+eighty
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+as+it+turns+out+that+s+a+really+hard+problem+because+you+have+to+build+a+small+portable+robot+that+s+not+only+really+affordable
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+it+has+to+be+something+that+people+actually+want+to+take+home
found 11 videos: [['/talks/anote_tong_my_country_will_be_underwater_soon_unless_we_work_together', '2015'], ['/talks/alessandra_orofino_it_s_our_city_let_s_fix_it', '2014'], ['/talks/margaret_heffernan_the_dangers_of_willful_blindness', '2013'], ['/talks/pankaj_ghemawat_actually_the_world_isn_t_flat', '2012'], ['/talks/siddhartha_mukherjee_soon_we_ll_cure_diseases_with_a_cell_not_a_pill', '2015'], ['/talks/leyla_acaroglu_paper_beats_plastic_how_to_rethink_environmental_folklore', '2014'], ['/talks/dave_isay_everyone_around_you_has_a_story_the_world_needs_to_hear', '2015'], ['/talks/andrew_solomon_depression_the_secret_we_share', '2013'], ['/talks/jon_nguyen_tour_the_solar_system_from_home', '2012'], ['/talks/max_little_a_test_for_parkinson_s_with_a_phone_call', '2012'], ['/talks/shlomo_benartzi_saving_for_tomorrow_tomorrow', '2012']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+have+around+their+kids+this+robot+can+t+be+creepy+or+uncanny
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+should+be+friendly+and+cute++so+meet+romo
found 3 videos: [['/talks/keller_rinaudo_a_mini_robot_powered_by_your_phone', '2013'], ['/talks/andrew_solomon_depression_the_secret_we_share', '2013'], ['/talks/daniel_levitin_how_to_stay_calm_when_you_know_you_ll_be_stressed', '2015']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=romo+s+a+robot+that+uses+a+device+you+already+know+and+love+your+iphone+as+his+brain
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+by+leveraging+the+power+of+the+iphone+s+processor
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+one+hundred+and+fifty+bucks++which+is+about+one+percent+of+what+these+kinds+of+robots+have+cost+in+the+past
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+romo+wakes+up++he+s+in+creature+mode
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+he+s+actually+using+the+video+camera+on+the+device+to+follow+my+face+if+i+duck+down+he+ll+follow+me+he+s+wary+so+he+ll+keep+his+eyes+on+me
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+i+come+over+here+he+ll+turn+to+follow+me
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+i+get+too+close+to+him
found 11 videos: [['/talks/paul_nicklen_animal_tales_from_icy_wonderlands', '2011'], ['/talks/sarah_kay_if_i_should_have_a_daughter', '2011'], ['/talks/jennifer_healey_if_cars_could_talk_accidents_might_be_avoidable', '2013'], ['/talks/elyn_saks_a_tale_of_mental_illness_from_the_inside', '2012'], ['/talks/alberto_cairo_there_are_no_scraps_of_men', '2011'], ['/talks/amy_webb_how_i_hacked_online_dating', '2013'], ['/talks/laurel_braitman_depressed_dogs_cats_with_ocd_what_animal_madness_means_for_us_humans', '2014'], ['/talks/meera_vijayann_find_your_voice_against_gender_violence', '2014'], ['/talks/natalie_warne_being_young_and_making_an_impact', '2011'], ['/talks/dame_ellen_macarthur_the_surprising_thing_i_learned_sailing_solo_around_the_world', '2015'], ['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+gets+scared+just+like+any+other+creature+so+in+a+lot+of+ways+romo+is+like+a+pet+that+has+a+mind+of+his+own++thanks+little+guy+sneezing
found 1 videos: [['/talks/keller_rinaudo_a_mini_robot_powered_by_your_phone', '2013']]
selected: /talks/keller_rinaudo_a_mini_robot_powered_by_your_phone
sleep 3 seconds to avoid blocking
------<1218>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KelliJeanDrinkwater_2016X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+here+today+to+talk+to+you+about+a+very+powerful+little+word+one+that+people+will+do+almost+anything+to+avoid+becoming
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=billion+dollar+industries+thrive+because+of+the+fear+of+it++and+those+of+us+who+undeniably+are+it
found 1 videos: [['/talks/kelli_jean_drinkwater_enough_with_the_fear_of_fat', '2016']]
selected: /talks/kelli_jean_drinkwater_enough_with_the_fear_of_fat
sleep 4 seconds to avoid blocking
------<1219>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KelliSwazey_2013P.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+humans+will+be+intimate+with+death+at+least+once+in+their+lives++but+what+if+that+intimacy+began+long+before+you+faced+your+own
found 1 videos: [['/talks/kelli_swazey_life_that_doesn_t_end_with_death', '2013']]
selected: /talks/kelli_swazey_life_that_doesn_t_end_with_death
sleep 3 seconds to avoid blocking
------<1220>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KellyMcGonigal_2013G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+have+a+confession+to+make
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+first++i+want+you+to+make+a+little+confession+to+me
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+past+year+i+want+you+to+just+raise+your+hand
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+ve+experienced+relatively+little+stress
error: request timeout
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+a+moderate+amount+of+stress
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+has+experienced+a+lot+of+stress++yeah
found 10 videos: [['/talks/nadine_burke_harris_how_childhood_trauma_affects_health_across_a_lifetime', '2015'], ['/talks/kelly_mcgonigal_how_to_make_stress_your_friend', '2013'], ['/talks/christopher_mcdougall_are_we_born_to_run', '2011'], ['/talks/marco_annunziata_welcome_to_the_age_of_the_industrial_internet', '2013'], ['/talks/kenneth_shinozuka_my_simple_invention_designed_to_keep_my_grandfather_safe', '2015'], ['/talks/annie_murphy_paul_what_we_learn_before_we_re_born', '2011'], ['/talks/catharine_young_how_memories_form_and_how_we_lose_them', '2015'], ['/talks/lisa_gansky_the_future_of_business_is_the_mesh', '2011'], ['/talks/amy_cuddy_your_body_language_may_shape_who_you_are', '2012'], ['/talks/uri_alon_why_science_demands_a_leap_into_the_unknown', '2014']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=me+too++but+that+is+not+my+confession
found 9 videos: [['/talks/kelly_mcgonigal_how_to_make_stress_your_friend', '2013'], ['/talks/roxane_gay_confessions_of_a_bad_feminist', '2015'], ['/talks/barbara_natterson_horowitz_what_veterinarians_know_that_physicians_don_t', '2014'], ['/talks/linda_hill_how_to_manage_for_collective_creativity', '2015'], ['/talks/karen_tse_how_to_stop_torture', '2011'], ['/talks/jessi_arrington_wearing_nothing_new', '2011'], ['/talks/daniele_quercia_happy_maps', '2015'], ['/talks/sally_kohn_let_s_try_emotional_correctness', '2013'], ['/talks/fabien_cousteau_what_i_learned_from_spending_31_days_underwater', '2014']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+confession+is+this+i+am+a+health+psychologist+and+my+mission+is+to+help+people+be+happier+and
found 1 videos: [['/talks/kelly_mcgonigal_how_to_make_stress_your_friend', '2013']]
selected: /talks/kelly_mcgonigal_how_to_make_stress_your_friend
sleep 1 seconds to avoid blocking
------<1221>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KenGoldberg_2012X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+know+this+is+going+to+sound+strange++but+i+think+robots+can+inspire+us
found 1 videos: [['/talks/ken_goldberg_4_lessons_from_robots_about_being_human', '2012']]
selected: /talks/ken_goldberg_4_lessons_from_robots_about_being_human
sleep 3 seconds to avoid blocking
------<1222>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KenJennings_2013X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=two+weeks+time+that+s+the+ninth+anniversary+of+the+day+i+first+stepped+out+onto+that+hallowed
found 1 videos: [['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013']]
selected: /talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all
sleep 2 seconds to avoid blocking
------<1223>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KenKamler_2009P.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=heard+a+lot+of+people+speak+at+this+conference+about+the+power
found 8 videos: [['/talks/billy_graham_on_technology_and_faith', '2008'], ['/talks/dean_kamen_the_emotion_behind_invention', '2010'], ['/talks/jeff_skoll_my_journey_into_movies_that_matter', '2007'], ['/talks/yang_lan_the_generation_that_s_remaking_china', '2011'], ['/talks/david_perry_are_games_better_than_life', '2008'], ['/talks/ory_okolloh_how_i_became_an_activist', '2008'], ['/talks/ken_kamler_medical_miracle_on_everest', '2010'], ['/talks/eric_dishman_take_health_care_off_the_mainframe', '2010']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+the+human+mind+and+what+i+d+like+to+do+today+is+give+you+a+vivid+example+of+how+that+power+can+be+unleashed
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+someone+is+in+a+survival+situation+how+the+will+to+survive
found 5 videos: [['/talks/richard_pyle_a_dive_into_the_reef_s_twilight_zone', '2009'], ['/talks/jane_mcgonigal_gaming_can_make_a_better_world', '2010'], ['/talks/ken_kamler_medical_miracle_on_everest', '2010'], ['/talks/jan_chipchase_the_anthropology_of_mobile_phones', '2007'], ['/talks/denis_dutton_a_darwinian_theory_of_beauty', '2010']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=can+bring+that+out+in+people++this+is
found 5 videos: [['/talks/ian_goldin_navigating_our_global_future', '2009'], ['/talks/david_merrill_toy_tiles_that_talk_to_each_other', '2009'], ['/talks/p_w_singer_military_robots_and_the_future_of_war', '2009'], ['/talks/sugata_mitra_kids_can_teach_themselves', '2008'], ['/talks/cynthia_breazeal_the_rise_of_personal_robots', '2011']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=an+incident+which+occurred+on+mount+everest+it+was+the+worst+disaster+in+the+history+of+everest++and+when+it+occurred+i+was+the+only+doctor+on+the+mountain
found 1 videos: [['/talks/ken_kamler_medical_miracle_on_everest', '2010']]
selected: /talks/ken_kamler_medical_miracle_on_everest
sleep 3 seconds to avoid blocking
------<1224>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KennethCukier_2014S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+course+it+is+how+do+we+know+it++because+of+data
found 12 videos: [['/talks/susan_etlinger_what_do_we_do_with_all_this_big_data', '2014'], ['/talks/russell_foster_why_do_we_sleep', '2013'], ['/talks/stuart_firestein_the_pursuit_of_ignorance', '2013'], ['/talks/michael_norton_how_to_buy_happiness', '2012'], ['/talks/don_tapscott_how_the_blockchain_is_changing_money_and_business', '2016'], ['/talks/james_lyne_everyday_cybercrime_and_what_you_can_do_about_it', '2013'], ['/talks/hannah_fry_the_mathematics_of_love', '2015'], ['/talks/talithia_williams_own_your_body_s_data', '2014'], ['/talks/riccardo_sabatini_how_to_read_the_genome_and_build_a_human_being', '2016'], ['/talks/jonathan_haidt_how_common_threats_can_make_common_political_ground', '2013'], ['/talks/sebastian_wernicke_how_to_use_data_to_make_a_hit_tv_show', '2016'], ['/talks/kenneth_cukier_big_data_is_better_data', '2014']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+look+at+supermarket+sales+you+look+at+supermarket+sales+of+30+centimeter+pies+that+are+frozen
found 1 videos: [['/talks/kenneth_cukier_big_data_is_better_data', '2014']]
selected: /talks/kenneth_cukier_big_data_is_better_data
sleep 4 seconds to avoid blocking
------<1225>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KennethLacovara_2016.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+not+and+the+answer+relies+on+a+formula+that+all+paleontologists+use++and+i+m+going+to+tell+you+the+secret
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=first+find+rocks+of+the+right+age
found 8 videos: [['/talks/kenneth_lacovara_hunting_for_dinosaurs_showed_me_our_place_in_the_universe', '2016'], ['/talks/kirsty_duncan_scientists_must_be_free_to_learn_to_speak_and_to_challenge', '2018'], ['/talks/hugh_evans_what_does_it_mean_to_be_a_citizen_of_the_world', '2016'], ['/talks/helen_fisher_technology_hasn_t_changed_love_here_s_why', '2016'], ['/talks/liz_hajek_what_rivers_can_tell_us_about_the_earth_s_history', '2017'], ['/talks/alex_honnold_how_i_climbed_a_3_000_foot_vertical_cliff_without_ropes', '2018'], ['/talks/nathalie_cabrol_how_mars_might_hold_the_secret_to_the_origin_of_life', '2015'], ['/talks/hugh_herr_the_new_bionics_that_let_us_run_climb_and_dance', '2014']]
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=those+rocks+must+be+sedimentary+rocks
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+third++layers+of+those+rocks+must+be+naturally+exposed
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+it+find+those+three+things+and+get+yourself+on+the+ground++chances+are+good+that+you+will+find+fossils
found 1 videos: [['/talks/elon_musk_the_future_we_re_building_and_boring', '2017']]
selected: /talks/elon_musk_the_future_we_re_building_and_boring
sleep 4 seconds to avoid blocking
------<1226>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KennethShinozuka_2014Y.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+s+the+fastest+growing+threat+to+americans++health
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=cancer++heart+attacks++diabetes+the+answer+is+actually+none+of+these+it+s+alzheimer+s+disease++every+sixty+seven+seconds
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=someone+in+the+united+states+is+diagnosed+with+alzheimer+s
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+the+number+of+alzheimer+s+patients+triples+by+the+year+two+thousand+and+fifty+caring+for+them++as+well+as+the+rest+of+the+aging+population++will+become+an+overwhelming+societal+challenge
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+family+has+experienced+firsthand+the+struggles+of+caring+for+an+alzheimer+s+patient
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=growing+up+in+a+family+with+three+generations+i+ve+always+been+very+close+to+my+grandfather
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+was+four+years+old+my+grandfather+and+i+were+walking+in+a+park+in+japan+when+he+suddenly+got+lost++it+was+one+of+the+scariest+moments+i+ve+ever+experienced
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=life+and+it+was+also+the+first+instance+that+informed+us+that+my+grandfather+had+alzheimer+s+disease
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=over+the+past+twelve+years+his+condition+got+worse+and+worse+and+his+wandering+in+particular+caused+my+family+a+lot+of+stress+my+aunt+his+primary+caregiver+really+struggled+to+stay+awake+at+night+to+keep+an+eye+on+him+and+even+then+often+failed+to+catch+him+leaving+the+bed
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+became+really+concerned+about+my+aunt+s+well+being+as+well+as+my+grandfather+s+safety++i+searched+extensively+for+a+solution+that+could+help+my+family+s+problems++but+couldn+t+find+one
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=then+one+night+about+two+years+ago
found 18 videos: [['/talks/sara_lewis_the_loves_and_lies_of_fireflies', '2014'], ['/talks/michael_archer_how_we_ll_resurrect_the_gastric_brooding_frog_the_tasmanian_tiger', '2013'], ['/talks/jeff_iliff_one_more_reason_to_get_a_good_night_s_sleep', '2014'], ['/talks/neil_macgregor_2600_years_of_history_in_one_object', '2012'], ['/talks/marla_spivak_why_bees_are_disappearing', '2013'], ['/talks/ruby_wax_what_s_so_funny_about_mental_illness', '2012'], ['/talks/nathalie_cabrol_how_mars_might_hold_the_secret_to_the_origin_of_life', '2015'], ['/talks/samuel_cohen_alzheimer_s_is_not_normal_aging_and_we_can_cure_it', '2015'], ['/talks/marc_kushner_why_the_buildings_of_the_future_will_be_shaped_by_you', '2015'], ['/talks/lawrence_lessig_the_unstoppable_walk_to_political_reform', '2014'], ['/talks/anand_giridharadas_a_tale_of_two_americas_and_the_mini_mart_where_they_collided', '2015'], ['/talks/harry_baker_a_love_poem_for_lonely_prime_numbers', '2015'], ['/talks/alice_goffman_how_we_re_priming_some_kids_for_college_and_others_for_prison', '2015'], ['/talks/diana_nyad_extreme_swimming_with_the_world_s_most_dangerous_jellyfish', '2012'], ['/talks/russell_foster_why_do_we_sleep', '2013'], ['/talks/kenneth_shinozuka_my_simple_invention_designed_to_keep_my_grandfather_safe', '2015'], ['/talks/david_autor_will_automation_take_away_all_our_jobs', '2016'], ['/talks/denise_herzing_could_we_speak_the_language_of_dolphins', '2013']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+looking+after+my+grandfather+and+i+saw+him+stepping+out+of+the+bed
found 1 videos: [['/talks/kenneth_shinozuka_my_simple_invention_designed_to_keep_my_grandfather_safe', '2015']]
selected: /talks/kenneth_shinozuka_my_simple_invention_designed_to_keep_my_grandfather_safe
sleep 5 seconds to avoid blocking
------<1227>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KentLarson_2012X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+thought+i+would+start+with+a+very+brief+history+of+cities++settlements+typically+began
found 1 videos: [['/talks/kent_larson_brilliant_designs_to_fit_more_people_in_every_city', '2012']]
selected: /talks/kent_larson_brilliant_designs_to_fit_more_people_in_every_city
sleep 4 seconds to avoid blocking
------<1228>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KeoluFox_2016U.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+a+little+hawaiian+my+mom+and+auntie+always+told+me+stories+about+kalaupapa+the+hawaiian+leper+colony+surrounded+by+the+highest+sea+cliffs+in+the+world
found 1 videos: [['/talks/keolu_fox_why_genetic_research_must_be_more_diverse', '2016']]
selected: /talks/keolu_fox_why_genetic_research_must_be_more_diverse
sleep 4 seconds to avoid blocking
------<1229>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KerenElazari_2014.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=four+years+ago+a+security+researcher+or+as+most+people+would+call+it+a+hacker
found 4 videos: [['/talks/keren_elazari_hackers_the_internet_s_immune_system', '2014'], ['/talks/marc_goodman_a_vision_of_crimes_in_the_future', '2012'], ['/talks/mikko_hypponen_how_the_nsa_betrayed_the_world_s_trust_time_to_act', '2013'], ['/talks/chris_domas_the_1s_and_0s_behind_cyber_warfare', '2014']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=found+a+way+to+literally+make+atms+throw+money+at+him+his+name+was+barnaby+jack
found 1 videos: [['/talks/keren_elazari_hackers_the_internet_s_immune_system', '2014']]
selected: /talks/keren_elazari_hackers_the_internet_s_immune_system
sleep 1 seconds to avoid blocking
------<1230>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KevinAllocca_2011Y.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+trends+manager+at+youtube+and+i+professionally+watch+youtube+videos+it+s+true
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+we+re+going+to+talk+a+little+bit+today+about+how+videos+go+viral+and+then+why+that+even+matters+we+all+want+to+be+stars
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+younger+that+seemed+so+very+very+hard+to+do
found 6 videos: [['/talks/lisa_kristine_photos_that_bear_witness_to_modern_slavery', '2012'], ['/talks/kevin_allocca_why_videos_go_viral', '2012'], ['/talks/eric_dishman_take_health_care_off_the_mainframe', '2010'], ['/talks/john_wooden_the_difference_between_winning_and_succeeding', '2009'], ['/talks/jeffrey_kluger_the_sibling_bond', '2012'], ['/talks/ed_ulbrich_how_benjamin_button_got_his_face', '2009']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+now+web+video+has+made+it+so+that+any+of+us+or+any+of+the+creative+things+that+we+do+can+become+completely+famous+in+a+part+of+our+world+s+culture
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=any+one+of+you+could+be+famous+on+the+internet+by+next+saturday+but+there+are+over+forty+eight+hours+of+video+uploaded+to+youtube+every+minute
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+of+that+only+a+tiny
found 9 videos: [['/talks/willard_wigan_hold_your_breath_for_micro_sculpture', '2009'], ['/talks/lucianne_walkowicz_light_waves_visible_and_invisible', '2013'], ['/talks/adam_davidson_what_we_learned_from_teetering_on_the_fiscal_cliff', '2012'], ['/talks/brian_greene_is_our_universe_the_only_universe', '2012'], ['/talks/lucianne_walkowicz_finding_planets_around_other_stars', '2011'], ['/talks/bob_mankoff_anatomy_of_a_new_yorker_cartoon', '2013'], ['/talks/george_zaidan_and_charles_morton_the_uncertain_location_of_electrons', '2013'], ['/talks/aatish_bhatia_the_physics_of_human_sperm_vs_the_physics_of_the_sperm_whale', '2013'], ['/talks/michael_dickinson_how_a_fly_flies', '2013']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=tiny+percentage+ever+goes+viral+and+gets+tons+of+views+and+becomes+a+cultural+moment+so
found 1 videos: [['/talks/kevin_allocca_why_videos_go_viral', '2012']]
selected: /talks/kevin_allocca_why_videos_go_viral
sleep 1 seconds to avoid blocking
------<1231>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KevinBales_2010.stm
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=interest+in+contemporary+forms+of+slavery+started+with+a+leaflet+that+i+picked+up+in+london+it+was+the+early++90s
found 1 videos: [['/talks/kevin_bales_how_to_combat_modern_slavery', '2010']]
selected: /talks/kevin_bales_how_to_combat_modern_slavery
sleep 2 seconds to avoid blocking
------<1232>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KevinBreel_2013X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+felt+like+i+d+been+living+two+different+lives+there+s+the+life+that+everyone+sees++and+then
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+the+life+that+only+i+see+and+in+the+life+that+everyone+sees
found 8 videos: [['/talks/jason_pontin_can_technology_solve_our_big_problems', '2013'], ['/talks/danny_hillis_back_to_the_future_of_1994', '2012'], ['/talks/christian_rudder_inside_okcupid_the_math_of_online_dating', '2013'], ['/talks/kelli_sandman_hurley_what_is_dyslexia', '2013'], ['/talks/lauren_zalaznick_the_conscience_of_television', '2011'], ['/talks/alex_wissner_gross_a_new_equation_for_intelligence', '2014'], ['/talks/simon_lewis_don_t_take_consciousness_for_granted', '2011'], ['/talks/karima_bennoune_when_people_of_muslim_heritage_challenge_fundamentalism', '2014']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=am+is+a+friend+a+son+a+brother+a+stand+up+comedian+and+a+teenager
found 1 videos: [['/talks/kevin_breel_confessions_of_a_depressed_comic', '2013']]
selected: /talks/kevin_breel_confessions_of_a_depressed_comic
sleep 3 seconds to avoid blocking
------<1233>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KevinBriggs_2014.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+recently+retired+from+the+california+highway+patrol+after+twenty+three+years+of+service+the
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=majority+of+those+twenty+three+years+was+spent+patrolling+the+southern+end
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+marin+county+which+includes+the+golden+gate+bridge+the+bridge+is+an+iconic+structure
found 1 videos: [['/talks/kevin_briggs_the_bridge_between_suicide_and_life', '2014']]
selected: /talks/kevin_briggs_the_bridge_between_suicide_and_life
sleep 4 seconds to avoid blocking
------<1234>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KevinJones_2015X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+very+word+for+many+of+you+conjures+unhappy+memories+of+boredom+in+high+school+biology+or+physics+class
found 1 videos: [['/talks/kevin_b_jones_why_curiosity_is_the_key_to_science_and_medicine', '2016']]
selected: /talks/kevin_b_jones_why_curiosity_is_the_key_to_science_and_medicine
sleep 1 seconds to avoid blocking
------<1235>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KevinKelly_2005.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+don+t+know+about+you+but
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+haven+t+quite+figured+out+exactly+what+technology+means+in+my+life++i+ve+spent+the+past+year+thinking+about
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+it+really+should+be+about+should+i+be
found 1 videos: [['/talks/james_howard_kunstler_the_ghastly_tragedy_of_the_suburbs', '2007']]
selected: /talks/james_howard_kunstler_the_ghastly_tragedy_of_the_suburbs
sleep 1 seconds to avoid blocking
------<1236>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KevinKelly_2007P.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+know+it+the+kind+of+web+the+things+we+re+all+talking+about
found 19 videos: [['/talks/tim_berners_lee_the_next_web', '2009'], ['/talks/jonathan_harris_the_web_as_art', '2008'], ['/talks/michael_shermer_why_people_believe_weird_things', '2006'], ['/talks/peter_hirshberg_the_web_is_more_than_better_tv', '2008'], ['/talks/richard_baraniuk_the_birth_of_the_open_source_learning_revolution', '2006'], ['/talks/norman_foster_my_green_agenda_for_architecture', '2008'], ['/talks/john_q_walker_great_piano_performances_recreated', '2008'], ['/talks/edward_burtynsky_my_wish_manufactured_landscapes_and_green_education', '2006'], ['/talks/alan_russell_the_potential_of_regenerative_medicine', '2007'], ['/talks/lawrence_lessig_laws_that_choke_creativity', '2007'], ['/talks/clay_shirky_institutions_vs_collaboration', '2008'], ['/talks/barry_schwartz_our_loss_of_wisdom', '2009'], ['/talks/martin_seligman_the_new_era_of_positive_psychology', '2008'], ['/talks/alex_steffen_the_route_to_a_sustainable_future', '2007'], ['/talks/paul_bennett_design_is_in_the_details', '2007'], ['/talks/juan_enriquez_the_next_species_of_human', '2009'], ['/talks/emily_levine_a_theory_of_everything', '2009'], ['/talks/louise_fresco_we_need_to_feed_the_whole_world', '2009'], ['/talks/irwin_redlener_how_to_survive_a_nuclear_attack', '2008']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+already+less+than+five+thousand+days+old++so+all+of+the+things+that+we+ve+seen+come+about
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=satellite+images+of+the+whole+earth+which
found 9 videos: [['/talks/kevin_kelly_the_next_5_000_days_of_the_web', '2008'], ['/talks/patricia_burchat_shedding_light_on_dark_matter', '2008'], ['/talks/charles_elachi_the_story_behind_the_mars_rovers', '2008'], ['/talks/willie_smits_how_to_restore_a_rainforest', '2009'], ['/talks/blaise_aguera_y_arcas_how_photosynth_can_connect_the_world_s_images', '2007'], ['/talks/thom_mayne_how_architecture_can_connect_us', '2007'], ['/talks/tom_shannon_anti_gravity_sculpture', '2009'], ['/talks/penelope_boston_there_might_just_be_life_on_mars', '2008'], ['/talks/larry_brilliant_my_wish_help_me_stop_pandemics', '2006']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+couldn+t+even+imagine+happening+before+all+these+things+rolling+into+our+lives+just+this+abundance+of+things
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+are+right+before+us++sitting+in+front+of+our+laptop+or+our+desktop+this+kind+of+cornucopia+of+stuff+just+coming+and
found 1 videos: [['/talks/kevin_kelly_the_next_5_000_days_of_the_web', '2008']]
selected: /talks/kevin_kelly_the_next_5_000_days_of_the_web
sleep 3 seconds to avoid blocking
------<1237>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KevinKelly_2009X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+investigations+into+what+technology+means+in+our+lives+not+just
found 7 videos: [['/talks/kevin_kelly_technology_s_epic_story', '2010'], ['/talks/eric_sanderson_new_york_before_the_city', '2009'], ['/talks/paul_lewis_how_mobile_phones_helped_solve_two_murders', '2011'], ['/talks/anders_ynnerman_visualizing_the_medical_data_explosion', '2011'], ['/talks/alan_kay_a_powerful_idea_about_ideas', '2008'], ['/talks/anna_deavere_smith_four_american_characters', '2007'], ['/talks/peter_hirshberg_the_web_is_more_than_better_tv', '2008']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=our+immediate+life+but+in+the+cosmic+sense+in+the+kind+of+long+history
found 1 videos: [['/talks/kevin_kelly_technology_s_epic_story', '2010']]
selected: /talks/kevin_kelly_technology_s_epic_story
sleep 3 seconds to avoid blocking
------<1238>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KevinKelly_2016T.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+talk+a+little+bit+about+where+technology+s+going++and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=often+technology+comes+to+us++we+re+surprised+by+what+it+brings++but+there+s+actually+a+large+aspect+of+technology+that+s+much+more+predictable
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+because+technological+systems+of+all+sorts+have+leanings+they+have+urgencies+they+have+tendencies+and+those+tendencies+are+derived+from+the+very
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=nature+of+the+physics++chemistry+of+wires+and+switches+and+electrons
found 1 videos: [['/talks/kevin_kelly_how_ai_can_bring_on_a_second_industrial_revolution', '2016']]
selected: /talks/kevin_kelly_how_ai_can_bring_on_a_second_industrial_revolution
sleep 5 seconds to avoid blocking
------<1239>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KevinRudd_2015.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+talk+about+a+tale+of+two+cities
found 15 videos: [['/talks/kevin_rudd_are_china_and_the_us_doomed_to_conflict', '2015'], ['/talks/eric_berlow_and_sean_gourley_mapping_ideas_worth_spreading', '2013'], ['/talks/robert_muggah_the_biggest_risks_facing_cities_and_some_solutions', '2017'], ['/talks/jeff_speck_4_ways_to_make_a_city_more_walkable', '2017'], ['/talks/travis_kalanick_uber_s_plan_to_get_more_people_into_fewer_cars', '2016'], ['/talks/eric_liu_why_ordinary_people_need_to_understand_power', '2014'], ['/talks/robert_muggah_how_to_protect_fast_growing_cities_from_failing', '2015'], ['/talks/jeff_speck_the_walkable_city', '2013'], ['/talks/robin_hanson_what_would_happen_if_we_upload_our_brains_to_computers', '2017'], ['/talks/alastair_parvin_architecture_for_the_people_by_the_people', '2013'], ['/talks/monica_araya_a_small_country_with_big_ideas_to_get_rid_of_fossil_fuels', '2016'], ['/talks/michael_green_why_we_should_build_wooden_skyscrapers', '2013'], ['/talks/steve_howard_let_s_go_all_in_on_selling_sustainability', '2013'], ['/talks/parag_khanna_how_megacities_are_changing_the_map_of_the_world', '2016'], ['/talks/sean_follmer_shape_shifting_tech_will_change_work_as_we_know_it', '2016']]
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+languages+we+speak+in+the+future
found 10 videos: [['/talks/keith_chen_could_your_language_affect_your_ability_to_save_money', '2013'], ['/talks/uri_hasson_this_is_your_brain_on_communication', '2016'], ['/talks/gretchen_carlson_david_brooks_political_common_ground_in_a_polarized_united_states', '2017'], ['/talks/erin_mckean_go_ahead_make_up_new_words', '2014'], ['/talks/nick_bostrom_what_happens_when_our_computers_get_smarter_than_we_are', '2015'], ['/talks/ioannis_papachimonas_how_computers_translate_human_language', '2015'], ['/talks/kevin_rudd_are_china_and_the_us_doomed_to_conflict', '2015'], ['/talks/dave_isay_everyone_around_you_has_a_story_the_world_needs_to_hear', '2015'], ['/talks/colin_powell_kids_need_structure', '2013'], ['/talks/john_mcwhorter_txtng_is_killing_language_jk', '2013']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+jobs+we+have+the+political+systems+we+choose+and+of+course+the+great+questions+of+war+and+peace
found 3 videos: [['/talks/kevin_rudd_are_china_and_the_us_doomed_to_conflict', '2015'], ['/talks/sharon_brous_it_s_time_to_reclaim_religion', '2016'], ['/talks/ameenah_gurib_fakim_and_stephanie_busari_an_interview_with_mauritius_s_first_female_president', '2017']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+see+that+bloke++he+s+french
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=his+name+is+napoleon+a+couple+of+hundred+years+ago+he+made+this+extraordinary+projection
found 1 videos: [['/talks/kevin_rudd_are_china_and_the_us_doomed_to_conflict', '2015']]
selected: /talks/kevin_rudd_are_china_and_the_us_doomed_to_conflict
sleep 1 seconds to avoid blocking
------<1240>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KevinSlavin_2011G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+a+photograph+by+the+artist+michael+najjar+and+it+s+real
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+sense+that+he+went+there+to+argentina+to+take+the+photo++but+it+s+also+a+fiction+there+s+a+lot+of+work+that+went+into+it+after+that+and+what+he+s+done+is+he+s+actually
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=reshaped++digitally+all+of+the
found 1 videos: [['/talks/kevin_slavin_how_algorithms_shape_our_world', '2011']]
selected: /talks/kevin_slavin_how_algorithms_shape_our_world
sleep 1 seconds to avoid blocking
------<1241>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KevinStone_2010U.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=me+just+start+with+my+story++so+i+tore+my+knee+joint+meniscus+cartilage+playing+soccer+in+college
found 1 videos: [['/talks/kevin_stone_the_bio_future_of_joint_replacement', '2010']]
selected: /talks/kevin_stone_the_bio_future_of_joint_replacement
sleep 2 seconds to avoid blocking
------<1242>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KevinSurace_2009.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+s+happening+to+the+climate+it+is+unbelievably+bad+this+is+obviously+that+famous+view+now+of+the+arctic++which+is+likely+to+be+gone+at+this+point+in+the+next+three+or+four+or+five
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=years++very+very+very+scary+so+we+all+look+at+what+we+can+do++and+when+you+look+at+the+worldwide+sources+of
found 2 videos: [['/talks/kevin_surace_eco_friendly_drywall', '2009'], ['/talks/thomas_goetz_it_s_time_to_redesign_medical_data', '2011']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=buildings+only+nine+percent+is+passenger+cars+interestingly+enough+so+we+ran+off+to+a+sushi+bar+and+at+that+sushi+bar+we+came+up+with+a+great+idea++and+it+was+something+called+ecorock+and+we+said+we+could+redesign
found 1 videos: [['/talks/kevin_surace_eco_friendly_drywall', '2009']]
selected: /talks/kevin_surace_eco_friendly_drywall
sleep 2 seconds to avoid blocking
------<1243>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KhadijaGbla_2014X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=today+i+m+going+to+share+my+personal+journey+with+female+genital+mutilation
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=feel+free+to+cry++laugh++cross+your
found 1 videos: [['/talks/khadija_gbla_my_mother_s_strange_definition_of_empowerment', '2015']]
selected: /talks/khadija_gbla_my_mother_s_strange_definition_of_empowerment
sleep 2 seconds to avoid blocking
------<1244>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KhalidaBrohi_2014G.stm
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+reflecting+on+my+life+and
found 15 videos: [['/talks/adam_driver_my_journey_from_marine_to_actor', '2016'], ['/talks/manwar_ali_inside_the_mind_of_a_former_radical_jihadist', '2016'], ['/talks/scott_dinsmore_how_to_find_work_you_love', '2015'], ['/talks/khalida_brohi_how_i_work_to_protect_women_from_honor_killings', '2015'], ['/talks/jane_fonda_life_s_third_act', '2012'], ['/talks/robin_morgan_4_powerful_poems_about_parkinson_s_and_growing_older', '2015'], ['/talks/stephen_wilkes_the_passing_of_time_caught_in_a_single_photo', '2016'], ['/talks/zeynep_tufekci_machine_intelligence_makes_human_morals_more_important', '2016'], ['/talks/anne_marie_slaughter_can_we_all_have_it_all', '2014'], ['/talks/adam_foss_a_prosecutor_s_vision_for_a_better_justice_system', '2016'], ['/talks/mary_bassett_why_your_doctor_should_care_about_social_justice', '2016'], ['/talks/jorge_soto_the_future_of_early_cancer_detection', '2014'], ['/talks/lucianne_walkowicz_look_up_for_a_change', '2012'], ['/talks/jake_barton_the_museum_of_you', '2013'], ['/talks/john_green_the_nerd_s_guide_to_learning_everything_online', '2015']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=trying+to+figure+out+where+exactly+was+that+moment+when+my+journey+began
found 4 videos: [['/talks/martine_rothblatt_my_daughter_my_wife_our_robot_and_the_quest_for_immortality', '2015'], ['/talks/khalida_brohi_how_i_work_to_protect_women_from_honor_killings', '2015'], ['/talks/linda_hill_how_to_manage_for_collective_creativity', '2015'], ['/talks/susan_cain_the_power_of_introverts', '2012']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+long+time+passed+by+and+i+simply+couldn+t+figure+out+the+beginning+or+the+middle+or+the+end+of+my+story
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=always+used+to+think+that+my+beginning+was+one+afternoon+in+my+community+when+my+mother+had+told+me+that+i+had+escaped+three+arranged+marriages+by+the+time+i+was+two
found 1 videos: [['/talks/khalida_brohi_how_i_work_to_protect_women_from_honor_killings', '2015']]
selected: /talks/khalida_brohi_how_i_work_to_protect_women_from_honor_killings
sleep 3 seconds to avoid blocking
------<1245>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KimberleCrenshaw_2016W.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+to+try+something+new+those+of+you+who+are+able++please+stand+up
found 8 videos: [['/talks/kimberle_crenshaw_the_urgency_of_intersectionality', '2016'], ['/talks/hugh_herr_the_new_bionics_that_let_us_run_climb_and_dance', '2014'], ['/talks/sandi_toksvig_a_political_party_for_women_s_equality', '2016'], ['/talks/gretchen_carlson_david_brooks_political_common_ground_in_a_polarized_united_states', '2017'], ['/talks/david_whyte_a_lyrical_bridge_between_past_present_and_future', '2017'], ['/talks/david_camarillo_why_helmets_don_t_prevent_concussions_and_what_might', '2016'], ['/talks/matthew_carter_my_life_in_typefaces', '2014'], ['/talks/gonzalo_vilarino_how_argentina_s_blind_soccer_team_became_champions', '2016']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ok+so+i+m+going+to+name+some+names
found 2 videos: [['/talks/lindsay_malloy_why_teens_confess_to_crimes_they_didn_t_commit', '2018'], ['/talks/dan_bell_inside_america_s_dead_shopping_malls', '2017']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+you+hear+a+name+that+you+don+t+recognize+you+can+t+tell+me+anything+about+them++i+d+like+you+to+take+a+seat
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+stay+seated++the+last+person+standing+we+re+going+to+see+what+they+know
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+those+of+you+who+are+still+standing+i+d+like+you+to+turn+around+and+take+a+look+i+d+say+half+to+most+of+the+people+are+still+standing++so+let+s+continue
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+look+around+again+there+are+about+four+people+still+standing++and+actually+i+m+not+going+to+put+you+on+the+spot+i+just+say+that+to+encourage+transparency+so+you+can+be+seated
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+you+who+recognized+the+first+group+of+names+know+that+these+were
found 18 videos: [['/talks/t_morgan_dixon_and_vanessa_garrison_the_trauma_of_systematic_racism_is_killing_black_women_a_first_step_toward_change', '2017'], ['/talks/kimberle_crenshaw_the_urgency_of_intersectionality', '2016'], ['/talks/ann_morgan_my_year_reading_a_book_from_every_country_in_the_world', '2015'], ['/talks/colin_grant_how_our_stories_cross_over', '2014'], ['/talks/the_ted_interview_sir_ken_robinson_still_wants_an_education_revolution', '2018'], ['/talks/blaise_aguera_y_arcas_how_computers_are_learning_to_be_creative', '2016'], ['/talks/anjan_chatterjee_how_your_brain_decides_what_is_beautiful', '2017'], ['/talks/linda_hill_how_to_manage_for_collective_creativity', '2015'], ['/talks/sally_kohn_what_we_can_do_about_the_culture_of_hate', '2018'], ['/talks/aala_el_khani_what_it_s_like_to_be_a_parent_in_a_war_zone', '2017'], ['/talks/yoruba_richen_what_the_gay_rights_movement_learned_from_the_civil_rights_movement', '2014'], ['/talks/elizabeth_cox_what_is_imposter_syndrome_and_how_can_you_combat_it', '2018'], ['/talks/mariana_atencio_what_makes_you_special', '2018'], ['/talks/vivek_maru_how_to_put_the_power_of_law_in_people_s_hands', '2018'], ['/talks/raj_panjabi_no_one_should_die_because_they_live_too_far_from_a_doctor', '2017'], ['/talks/melati_and_isabel_wijsen_our_campaign_to_ban_plastic_bags_in_bali', '2016'], ['/talks/safwat_saleem_why_i_keep_speaking_up_even_when_people_mock_my_accent', '2016'], ['/talks/adam_grant_the_surprising_habits_of_original_thinkers', '2016']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=been+killed+by+the+police+over+the+last+two+and+a+half+years+what+you+may+not+know+is+that+the+other+list+is+also
found 1 videos: [['/talks/kimberle_crenshaw_the_urgency_of_intersectionality', '2016']]
selected: /talks/kimberle_crenshaw_the_urgency_of_intersectionality
sleep 2 seconds to avoid blocking
------<1246>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KimberleyMotley_2014G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+me+tell+you+a+story+about+a+little+girl+named+naghma
found 1 videos: [['/talks/kimberley_motley_how_i_defend_the_rule_of_law', '2014']]
selected: /talks/kimberley_motley_how_i_defend_the_rule_of_law
sleep 1 seconds to avoid blocking
------<1247>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KimGorgens_2010X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+funny+thing+happened+on+my+way+to+becoming
found 11 videos: [['/talks/kathryn_schulz_on_being_wrong', '2011'], ['/talks/aimee_mullins_changing_my_legs_and_my_mindset', '2009'], ['/talks/morgan_spurlock_the_greatest_ted_talk_ever_sold', '2011'], ['/talks/kim_gorgens_protecting_the_brain_against_concussion', '2010'], ['/talks/david_perry_are_games_better_than_life', '2008'], ['/talks/alison_jackson_an_unusual_glimpse_at_celebrity', '2008'], ['/talks/srikumar_rao_plug_into_your_hard_wired_happiness', '2010'], ['/talks/philip_rosedale_life_in_second_life', '2008'], ['/talks/michael_anti_behind_the_great_firewall_of_china', '2012'], ['/talks/steven_levitt_surprising_stats_about_child_carseats', '2008'], ['/talks/evgeny_morozov_how_the_net_aids_dictatorships', '2009']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+brilliant++world+class+neuropsychologist++i+had+a+baby++and+that+s+not+to+say+i+ever+went+on+to+become+a+brilliant
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=did+go+on+to+be+a+reasonably+astute++arguably+world+class+worrier
found 1 videos: [['/talks/kim_gorgens_protecting_the_brain_against_concussion', '2010']]
selected: /talks/kim_gorgens_protecting_the_brain_against_concussion
sleep 4 seconds to avoid blocking
------<1248>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KioStark_2016.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+are+things+we+say+when+we+catch+the+eye+of+a+stranger+or+a+neighbor+walking+by
found 1 videos: [['/talks/kio_stark_why_you_should_talk_to_strangers', '2016']]
selected: /talks/kio_stark_why_you_should_talk_to_strangers
sleep 5 seconds to avoid blocking
------<1249>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KiranBedi_2010W.stm
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+an+indian+story+about+an+indian+woman+and+her+journey++let+me+begin+with+my+parents
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+a+product+of+this+visionary+mother+and+father
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=didn+t+belong+to+girls+in+india++they+belonged+to+boys++they+belonged+to+boys+who+would+join+business+and+inherit+business+from+parents+and+girls+would+be+dolled+up+to+get+married
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+family+in+my+city+and+almost+in+the+country+was+unique++we+were+four+of+us+not+one++and+fortunately+no+boys++we+were+four+girls+and+no+boys++and+my+parents+were+part+of+a+landed+property+family
found 1 videos: [['/talks/kiran_bedi_a_police_chief_with_a_difference', '2010']]
selected: /talks/kiran_bedi_a_police_chief_with_a_difference
sleep 3 seconds to avoid blocking
------<1250>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KiranBirSethi_2009I.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+a+good+word+even+in+the+times+of+h1n1+i+like+the+word
found 6 videos: [['/talks/kiran_sethi_kids_take_charge', '2010'], ['/talks/auret_van_heerden_making_global_labor_fair', '2010'], ['/talks/seth_berkley_hiv_and_flu_the_vaccine_strategy', '2010'], ['/talks/nicholas_christakis_how_social_networks_predict_epidemics', '2010'], ['/talks/paul_stamets_6_ways_mushrooms_can_save_the_world', '2008'], ['/talks/david_agus_a_new_strategy_in_the_war_on_cancer', '2010']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=laughter+is+contagious+passion+is+contagious
found 1 videos: [['/talks/kiran_sethi_kids_take_charge', '2010']]
selected: /talks/kiran_sethi_kids_take_charge
sleep 4 seconds to avoid blocking
------<1251>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KirbyFerguson_2012G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=years+old+and+his+career+is+just+reaching+its+pinnacle+he+s+been+christened+the+voice+of+a+generation+and+he+s+churning+out+classic
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=classic+songs+at+a+seemingly+impossible+rate
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+there+s+a+small+minority+of+dissenters++and+they+claim+that+bob+dylan+is+stealing+other+people+s+songs
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=two+thousand+and+four++brian+burton++aka+danger+mouse
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=takes+the+beatles++white+album+combines+it+with+jay+z+s+the+black+album+to+create+the+grey+album+the+grey+album+becomes+an+immediate+sensation+online+and+the+beatles++record+company+sends+out
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=unfair+competition+and+dilution+of+our+valuable+property
found 1 videos: [['/talks/kirby_ferguson_embrace_the_remix', '2012']]
selected: /talks/kirby_ferguson_embrace_the_remix
sleep 5 seconds to avoid blocking
------<1252>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KirkCitron_2010.stm
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=reuters+alone+puts+out+three+and+a+half+million+news+stories+a+year+that+s+just+one+source
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+question+is+how+many+of+those+stories+are+actually+going+to+matter+in+the+long+run
found 16 videos: [['/talks/kirk_citron_and_now_the_real_news', '2010'], ['/talks/brian_goldman_doctors_make_mistakes_can_we_talk_about_that', '2012'], ['/talks/dave_eggers_my_wish_once_upon_a_school', '2008'], ['/talks/isabel_allende_tales_of_passion', '2008'], ['/talks/william_ury_the_walk_from_no_to_yes', '2010'], ['/talks/philip_k_howard_four_ways_to_fix_a_broken_legal_system', '2010'], ['/talks/andrew_mcafee_are_droids_taking_our_jobs', '2012'], ['/talks/jane_mcgonigal_gaming_can_make_a_better_world', '2010'], ['/talks/sheena_iyengar_the_art_of_choosing', '2010'], ['/talks/susan_blackmore_memes_and_temes', '2008'], ['/talks/clay_shirky_institutions_vs_collaboration', '2008'], ['/talks/michael_specter_the_danger_of_science_denial', '2010'], ['/talks/sheryl_sandberg_why_we_have_too_few_women_leaders', '2010'], ['/talks/steven_pinker_human_nature_and_the_blank_slate', '2008'], ['/talks/dan_gilbert_why_we_make_bad_decisions', '2008'], ['/talks/helen_fisher_the_brain_in_love', '2008']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+the+idea+behind+the
found 8 videos: [['/talks/tom_shannon_john_hockenberry_the_painter_and_the_pendulum', '2010'], ['/talks/seth_shostak_et_is_probably_out_there_get_ready', '2012'], ['/talks/bruce_feiler_the_council_of_dads', '2011'], ['/talks/morgan_spurlock_the_greatest_ted_talk_ever_sold', '2011'], ['/talks/nicholas_christakis_how_social_networks_predict_epidemics', '2010'], ['/talks/ben_goldacre_battling_bad_science', '2011'], ['/talks/nathan_myhrvold_archeology_animal_photography_bbq', '2008'], ['/talks/bill_strickland_rebuilding_a_neighborhood_with_beauty_dignity_hope', '2008']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=long+news+it+s+a+project+by+the+long+now+foundation+which+was+founded+by+tedsters+including+kevin+kelly+and+stewart+brand
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+what+we+re+looking+for+is+news+stories+that+might+still+matter+fifty+or+one+hundred+or+ten+thousand+years+from+now
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+when+you+look+at+the+news+through+that+filter+a+lot+falls+by+the+wayside+to+take+the+top+stories+from
found 1 videos: [['/talks/kirk_citron_and_now_the_real_news', '2010']]
selected: /talks/kirk_citron_and_now_the_real_news
sleep 4 seconds to avoid blocking
------<1253>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KitraCahana_2014P.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+know+a+man+who+soars+above+the+city+every+night
found 1 videos: [['/talks/kitra_cahana_my_father_locked_in_his_body_but_soaring_free', '2014']]
selected: /talks/kitra_cahana_my_father_locked_in_his_body_but_soaring_free
sleep 1 seconds to avoid blocking
------<1254>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KitraCahana_2014U.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+a+little+girl+i+always+imagined+i+would+one+day+run+away
found 11 videos: [['/talks/kitra_cahana_a_glimpse_of_life_on_the_road', '2014'], ['/talks/shonda_rhimes_my_year_of_saying_yes_to_everything', '2016'], ['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013'], ['/talks/melissa_fleming_a_boat_carrying_500_refugees_sunk_at_sea_the_story_of_two_survivors', '2015'], ['/talks/jay_silver_hack_a_banana_make_a_keyboard', '2013'], ['/talks/young_ha_kim_be_an_artist_right_now', '2013'], ['/talks/esther_perel_rethinking_infidelity_a_talk_for_anyone_who_has_ever_loved', '2015'], ['/talks/andrew_solomon_how_the_worst_moments_in_our_lives_make_us_who_we_are', '2014'], ['/talks/michael_norton_how_to_buy_happiness', '2012'], ['/talks/stuart_firestein_the_pursuit_of_ignorance', '2013'], ['/talks/john_green_the_nerd_s_guide_to_learning_everything_online', '2015']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=from+the+age+of+six+on+i+kept+a+packed+bag+with+some+clothes+and+cans+of+food+tucked+away+in+the+back+of+a+closet
found 1 videos: [['/talks/kitra_cahana_a_glimpse_of_life_on_the_road', '2014']]
selected: /talks/kitra_cahana_a_glimpse_of_life_on_the_road
sleep 5 seconds to avoid blocking
------<1255>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KnutHaanaes_2015S.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+are+two+reasons+companies+fail++they+only+do+more+of+the+same
found 12 videos: [['/talks/knut_haanaes_two_reasons_companies_fail_and_how_to_avoid_them', '2016'], ['/talks/ted_halstead_a_climate_solution_where_all_sides_can_win', '2017'], ['/talks/michael_sandel_why_we_shouldn_t_trust_markets_with_our_civic_life', '2013'], ['/talks/carol_fishman_cohen_how_to_get_back_to_work_after_a_career_break', '2016'], ['/talks/simon_sinek_why_good_leaders_make_you_feel_safe', '2014'], ['/talks/oded_shoseyov_how_we_re_harnessing_nature_s_hidden_superpowers', '2016'], ['/talks/adam_grant_the_surprising_habits_of_original_thinkers', '2016'], ['/talks/james_lyne_everyday_cybercrime_and_what_you_can_do_about_it', '2013'], ['/talks/bruce_feiler_agile_programming_for_your_family', '2013'], ['/talks/anne_marie_slaughter_can_we_all_have_it_all', '2014'], ['/talks/richard_ledgett_the_nsa_responds_to_edward_snowden_s_ted_talk', '2014'], ['/talks/sandi_toksvig_a_political_party_for_women_s_equality', '2016']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+they+only+do+what+s+new+to+me+the+real
found 13 videos: [['/talks/barbara_natterson_horowitz_what_veterinarians_know_that_physicians_don_t', '2014'], ['/talks/tim_harford_how_frustration_can_make_us_more_creative', '2016'], ['/talks/neha_narula_the_future_of_money', '2016'], ['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013'], ['/talks/sofia_jawed_wessel_the_lies_we_tell_pregnant_women', '2017'], ['/talks/elon_musk_the_future_we_re_building_and_boring', '2017'], ['/talks/andrew_fitzgerald_adventures_in_twitter_fiction', '2013'], ['/talks/nancy_frates_meet_the_mom_who_started_the_ice_bucket_challenge', '2014'], ['/talks/kate_adams_4_larger_than_life_lessons_from_soap_operas', '2016'], ['/talks/jason_pontin_can_technology_solve_our_big_problems', '2013'], ['/talks/adam_driver_my_journey_from_marine_to_actor', '2016'], ['/talks/rich_benjamin_my_road_trip_through_the_whitest_towns_in_america', '2015'], ['/talks/freeman_hrabowski_4_pillars_of_college_success_in_science', '2013']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=quality+growth+is+figuring+out+the+balance+between+two+activities+exploration+and+exploitation
found 1 videos: [['/talks/knut_haanaes_two_reasons_companies_fail_and_how_to_avoid_them', '2016']]
selected: /talks/knut_haanaes_two_reasons_companies_fail_and_how_to_avoid_them
sleep 2 seconds to avoid blocking
------<1256>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KRamdas_2009I.stm
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=given+my+ted+profile+you+might+be+expecting+that+i+m+going+to+speak+to+you+about+the+latest+philanthropic+trends
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+one+that+s+currently+got+wall+street+and+the+world+bank+buzzing
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+to+invest+in+women+how+to+empower+them+how+to+save+them
found 2 videos: [['/talks/kavita_ramdas_radical_women_embracing_tradition', '2010'], ['/talks/chimamanda_ngozi_adichie_the_danger_of_a_single_story', '2009']]
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+am+interested+in+how+women+are+saving+us
found 14 videos: [['/talks/kavita_ramdas_radical_women_embracing_tradition', '2010'], ['/talks/jacqueline_novogratz_patient_capitalism', '2007'], ['/talks/ngozi_okonjo_iweala_aid_versus_trade', '2007'], ['/talks/elif_shafak_the_politics_of_fiction', '2010'], ['/talks/aimee_mullins_my_12_pairs_of_legs', '2009'], ['/talks/sarah_jones_a_one_woman_global_village', '2009'], ['/talks/alice_dreger_is_anatomy_destiny', '2011'], ['/talks/sarah_kaminsky_my_father_the_forger', '2011'], ['/talks/david_kelley_human_centered_design', '2007'], ['/talks/newton_aduaka_the_story_of_ezra', '2008'], ['/talks/a_j_jacobs_my_year_of_living_biblically', '2008'], ['/talks/sam_richards_a_radical_experiment_in_empathy', '2011'], ['/talks/thelma_golden_how_art_gives_shape_to_cultural_change', '2010'], ['/talks/j_j_abrams_the_mystery_box', '2008']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+re+saving+us+by+redefining+and+re+imagining+a+future+that+defies+and+blurs+accepted+polarities+polarities+we+ve+taken+for+granted+for+a+long+time+like+the+ones+between+modernity+and+tradition
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+midst+of+the+daunting+challenges+we+face+as+a+global+community
found 1 videos: [['/talks/kavita_ramdas_radical_women_embracing_tradition', '2010']]
selected: /talks/kavita_ramdas_radical_women_embracing_tradition
sleep 1 seconds to avoid blocking
------<1257>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KristaDonaldson_2013W.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=years+ago+i+worked+for+the+u+s+government+in+iraq+helping+rebuild+the+electricity+infrastructure
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+was+there+and+i+worked+in+that+job+because+i+believe+that+technology+can+improve
found 4 videos: [['/talks/krista_donaldson_the_80_prosthetic_knee_that_s_changing_lives', '2013'], ['/talks/tony_fadell_the_first_secret_of_design_is_noticing', '2015'], ['/talks/cesar_harada_a_novel_idea_for_cleaning_up_oil_spills', '2012'], ['/talks/alessandro_acquisti_what_will_a_future_without_secrets_look_like', '2013']]
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+afternoon+i+had+tea+with+a+storekeeper+at+the+al+rasheed+hotel+in+baghdad++and+he+said+to+me
found 1 videos: [['/talks/krista_donaldson_the_80_prosthetic_knee_that_s_changing_lives', '2013']]
selected: /talks/krista_donaldson_the_80_prosthetic_knee_that_s_changing_lives
sleep 2 seconds to avoid blocking
------<1258>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KristaTippett_2010Z.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+re+here+to+celebrate+compassion+but+compassion+from+my+vantage+point++has+a+problem
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+essential+as+it+is+across+our+traditions+as+real+as+so+many+of+us+know+it+to+be+in+particular+lives
found 3 videos: [['/talks/krista_tippett_reconnecting_with_compassion', '2011'], ['/talks/scott_mccloud_the_visual_magic_of_comics', '2009'], ['/talks/jonathan_haidt_the_moral_roots_of_liberals_and_conservatives', '2008']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+hollowed+out+in+our+culture+and+it+is+suspect+in+my+field+of+journalism
found 1 videos: [['/talks/krista_tippett_reconnecting_with_compassion', '2011']]
selected: /talks/krista_tippett_reconnecting_with_compassion
sleep 5 seconds to avoid blocking
------<1259>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KristenAshburn_2003.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+first+arrived+in+beautiful+zimbabwe++it+was+difficult+to+understand+that+thirty+five+percent+of+the+population
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=really+wasn+t+until+i+was
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=invited+to+the+homes+of+people+that+i+started+to+understand+the+human+toll
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+the+epidemic+for+instance+this+is
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=herbert+with+his+grandmother+when+i+first+met+him+he+was+sitting+on+his+grandmother+s+lap+he+has+been+orphaned++as+both+of+his+parents+died+of+aids++and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=his+grandmother+took+care+of+him+until+he+too+died+of+aids++he+liked+to+sit+on+her+lap+because+he+said+that+it+was+painful+for+him+to+lie+in+his+own+bed
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=got+up+to+make+tea+she+placed+him+in+my+own+lap+and+i+had+never+felt+a+child+that+that+was+that+emaciated
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=before+i+left+i+actually+asked+him+if+i+could+get+him+something+i+thought+he+would+ask+for+a+toy+or+candy+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+asked+me+for+slippers+because+he+said+that+his+feet+were+cold+this+is+joyce+who+s+in+this+picture
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=twenty+one+single+mother+hiv+positive++i+photographed+her+before+and+after+the+birth+of+her+beautiful+baby+girl++issa
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+was+last+week+walking+on+lafayette+street+in+manhattan+and+got+a+call+from+a+woman
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+i+didn+t+know++but+she+called+to+tell+me+that+joyce+had+passed+away
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+the+age+of++twenty+three+joyce+s+mother+is+now+taking+care+of+her+daughter++like+so+many+other+zimbabwean+children+who+ve+been+orphaned
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+the+epidemic++so+a+few+of+the+stories+with+every+picture++there+are
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=individuals+who+have+full+lives+and+stories+that+deserve+to+be+told+all+these+pictures+are+from+zimbabwe
error: request timeout
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+working+at+the+time+doing+production+for+a+fashion+photographer
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+was+constantly+reading+the+new+york+times+and+stunned+by
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+statistics+the+numbers+it+was+just+frightening+so+i+quit+my+job
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+decided+that+that+s+the+subject+that+i+wanted+to+tackle+and+i+first+actually+went+to+botswana++where+i+spent
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=month+this+is+in+december+two+thousand
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=then+went+to+zimbabwe+for+a+month+and+a+half
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+went+back+again+this+march+two+thousand+and+two+for+another+month+and+a+half+in+zimbabwe+ca+that+s+an+amazing+story
found 0 videos: []
error: no video is found.
sleep 3 seconds to avoid blocking
------<1260>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KristenMarhaver_2015Z.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+was+the+most+difficult+job+you+ever+did
found 16 videos: [['/talks/christiana_figueres_the_inside_story_of_the_paris_climate_agreement', '2016'], ['/talks/james_lyne_everyday_cybercrime_and_what_you_can_do_about_it', '2013'], ['/talks/jon_bowers_we_should_aim_for_perfection_and_stop_fearing_failure', '2017'], ['/talks/tim_harford_how_frustration_can_make_us_more_creative', '2016'], ['/talks/sheryl_sandberg_so_we_leaned_in_now_what', '2014'], ['/talks/simon_anholt_which_country_does_the_most_good_for_the_world', '2014'], ['/talks/vincent_cochetel_i_was_held_hostage_for_317_days_here_s_what_i_thought_about', '2015'], ['/talks/johann_hari_everything_you_think_you_know_about_addiction_is_wrong', '2015'], ['/talks/nick_bostrom_what_happens_when_our_computers_get_smarter_than_we_are', '2015'], ['/talks/dame_ellen_macarthur_the_surprising_thing_i_learned_sailing_solo_around_the_world', '2015'], ['/talks/maurice_conti_the_incredible_inventions_of_intuitive_ai', '2017'], ['/talks/andrew_solomon_depression_the_secret_we_share', '2013'], ['/talks/scott_galloway_how_amazon_apple_facebook_and_google_manipulate_our_emotions', '2017'], ['/talks/uma_adwani_the_hidden_messages_in_multiplication', '2017'], ['/talks/lesley_hazleton_the_doubt_essential_to_faith', '2013'], ['/talks/jorge_ramos_why_journalists_have_an_obligation_to_challenge_power', '2017']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+it+working+in+the+sun++was+it+working+to+provide+food+for+a+family+or+a+community
found 2 videos: [['/talks/kristen_marhaver_how_we_re_growing_baby_corals_to_rebuild_reefs', '2015'], ['/talks/alexander_betts_our_refugee_system_is_failing_here_s_how_we_can_fix_it', '2016']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+it+working+days+and+nights+trying+to+protect+lives+and+property
found 6 videos: [['/talks/kristen_marhaver_how_we_re_growing_baby_corals_to_rebuild_reefs', '2015'], ['/talks/gary_haugen_the_hidden_reason_for_poverty_the_world_needs_to_address_now', '2015'], ['/talks/alice_goffman_how_we_re_priming_some_kids_for_college_and_others_for_prison', '2015'], ['/talks/jeffrey_brown_how_we_cut_youth_violence_in_boston_by_79_percent', '2015'], ['/talks/stuart_russell_3_principles_for_creating_safer_ai', '2017'], ['/talks/gretchen_carlson_david_brooks_political_common_ground_in_a_polarized_united_states', '2017']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+it+working+alone+or+working+on+a+project+that+wasn+t+guaranteed+to+succeed
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+that+might+improve+human+health+or+save+a+life+was+it+working+to+build+something++create+something+make+a+work+of+art
found 2 videos: [['/talks/kristen_marhaver_how_we_re_growing_baby_corals_to_rebuild_reefs', '2015'], ['/talks/david_autor_will_automation_take_away_all_our_jobs', '2016']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+it+work+for+which+you+were+never+sure+you+were+fully+understood
found 10 videos: [['/talks/philippa_neave_the_unexpected_challenges_of_a_country_s_first_election', '2016'], ['/talks/kristen_marhaver_how_we_re_growing_baby_corals_to_rebuild_reefs', '2015'], ['/talks/gretchen_carlson_david_brooks_political_common_ground_in_a_polarized_united_states', '2017'], ['/talks/gus_casely_hayford_the_powerful_stories_that_shaped_africa', '2017'], ['/talks/christen_reighter_i_don_t_want_children_stop_telling_me_i_ll_change_my_mind', '2017'], ['/talks/linda_hill_how_to_manage_for_collective_creativity', '2015'], ['/talks/allan_savory_how_to_fight_desertification_and_reverse_climate_change', '2013'], ['/talks/leana_wen_what_your_doctor_won_t_disclose', '2014'], ['/talks/victoria_pratt_how_judges_can_show_respect', '2017'], ['/talks/adam_spencer_why_i_fell_in_love_with_monster_prime_numbers', '2013']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+appreciated++the+people+in+our+communities+who+do+these+jobs+deserve+our+attention+our+love+and+our
found 1 videos: [['/talks/kristen_marhaver_how_we_re_growing_baby_corals_to_rebuild_reefs', '2015']]
selected: /talks/kristen_marhaver_how_we_re_growing_baby_corals_to_rebuild_reefs
sleep 5 seconds to avoid blocking
------<1261>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KristinaGjerde_2010Z.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=take+you+on+a+voyage+to+some+place+so+deep++so+dark++so+unexplored
found 1 videos: [['/talks/kristina_gjerde_making_law_on_the_high_seas', '2010']]
selected: /talks/kristina_gjerde_making_law_on_the_high_seas
sleep 5 seconds to avoid blocking
------<1262>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KwabenaBoahen_2007G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+got+my+first+computer+when+i+was+a+teenager+growing+up+in+accra
found 1 videos: [['/talks/kwabena_boahen_a_computer_that_works_like_the_brain', '2008']]
selected: /talks/kwabena_boahen_a_computer_that_works_like_the_brain
sleep 4 seconds to avoid blocking
------<1263>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/KwameAnthonyAppiah_2014S.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+say+things+about+religion+all+the+time
found 14 videos: [['/talks/sharon_brous_it_s_time_to_reclaim_religion', '2016'], ['/talks/kwame_anthony_appiah_is_religion_good_or_bad_this_is_a_trick_question', '2014'], ['/talks/alaa_murabit_what_my_religion_really_says_about_women', '2015'], ['/talks/naomi_oreskes_why_we_should_trust_scientists', '2014'], ['/talks/jonathan_haidt_religion_evolution_and_the_ecstasy_of_self_transcendence', '2012'], ['/talks/alain_de_botton_atheism_2_0', '2012'], ['/talks/dalia_mogahed_what_it_s_like_to_be_muslim_in_america', '2016'], ['/talks/bobby_ghosh_why_global_jihad_is_losing', '2012'], ['/talks/anand_giridharadas_a_letter_to_all_who_have_lost_in_this_era', '2016'], ['/talks/chelsea_shields_how_i_m_working_for_change_inside_my_church', '2015'], ['/talks/jennifer_golbeck_your_social_media_likes_expose_more_than_you_think', '2014'], ['/talks/benjamin_barber_why_mayors_should_rule_the_world', '2013'], ['/talks/john_hockenberry_we_are_all_designers', '2012'], ['/talks/manwar_ali_inside_the_mind_of_a_former_radical_jihadist', '2016']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+late+great+christopher+hitchens+wrote+a+book+called+god+is+not+great+whose+subtitle+was
found 1 videos: [['/talks/kwame_anthony_appiah_is_religion_good_or_bad_this_is_a_trick_question', '2014']]
selected: /talks/kwame_anthony_appiah_is_religion_good_or_bad_this_is_a_trick_question
sleep 5 seconds to avoid blocking
------<1264>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LakshmiPratury_2007.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+will+talk+about+death+seemed+to+be+the+passion+today
found 2 videos: [['/talks/eva_vertes_meet_the_future_of_cancer_research', '2006'], ['/talks/lakshmi_pratury_the_lost_art_of_letter_writing', '2007']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=actually+it+s+not+about+death++it+s+inevitable+terrible+but+really+what+i+want+to+talk+about+is+i+m+just+fascinated+by+the+legacy+people+leave+when+they+die+that+s+what+i+want+to+talk+about
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+art+buchwald+left+his+legacy+of+humor+with+a+video
found 1 videos: [['/talks/lakshmi_pratury_the_lost_art_of_letter_writing', '2007']]
selected: /talks/lakshmi_pratury_the_lost_art_of_letter_writing
sleep 3 seconds to avoid blocking
------<1265>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LaliteshKatragadda_2009I.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+eight+cyclone+nargis+devastated+myanmar+millions+of+people+were+in+severe+need+of+help
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+u+n+wanted+to+rush+people+and+supplies+to+the+area
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+there+were+no+maps+no+maps+of+roads++no+maps+showing+hospitals++no+way+for+help+to+reach+the+cyclone+victims
found 1 videos: [['/talks/lalitesh_katragadda_making_maps_to_fight_disaster_build_economies', '2010']]
selected: /talks/lalitesh_katragadda_making_maps_to_fight_disaster_build_economies
sleep 3 seconds to avoid blocking
------<1266>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LaliteshKattragadda_2009I.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+eight+cyclone+nargis+devastated+myanmar+millions+of+people+were+in+severe+need+of+help
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+u+n+wanted+to+rush+people+and+supplies+to+the+area+but+there+were+no
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=maps+no+maps+of+roads+no+maps+showing+hospitals+no+way+for+help+to+reach+the+cyclone+victims
found 1 videos: [['/talks/lalitesh_katragadda_making_maps_to_fight_disaster_build_economies', '2010']]
selected: /talks/lalitesh_katragadda_making_maps_to_fight_disaster_build_economies
sleep 5 seconds to avoid blocking
------<1267>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LaraSetrakian_2017S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=five+years+ago++i+had+my+dream+job
found 16 videos: [['/talks/luisa_neubauer_why_you_should_be_a_climate_activist', '2019'], ['/talks/allan_adams_what_the_discovery_of_gravitational_waves_means', '2016'], ['/talks/adam_grant_the_surprising_habits_of_original_thinkers', '2016'], ['/talks/laura_boushnak_the_deadly_legacy_of_cluster_bombs', '2016'], ['/talks/chris_nowinski_can_i_have_your_brain_the_quest_for_truth_on_concussions_and_cte', '2018'], ['/talks/kate_bowler_everything_happens_for_a_reason_and_other_lies_i_ve_loved', '2019'], ['/talks/becca_mccharen_tran_fashion_that_celebrates_all_body_types_boldly_and_unapologetically', '2019'], ['/talks/alice_goffman_how_we_re_priming_some_kids_for_college_and_others_for_prison', '2015'], ['/talks/sebastian_thrun_and_chris_anderson_what_ai_is_and_isn_t', '2017'], ['/talks/lara_setrakian_3_ways_to_fix_a_broken_news_industry', '2017'], ['/talks/rutger_bregman_poverty_isn_t_a_lack_of_character_it_s_a_lack_of_cash', '2017'], ['/talks/sharon_brous_it_s_time_to_reclaim_religion', '2016'], ['/talks/astro_teller_the_unexpected_benefit_of_celebrating_failure', '2016'], ['/talks/julie_cordua_how_we_can_eliminate_child_sexual_abuse_material_from_the_internet', '2019'], ['/talks/robin_steinberg_what_if_we_ended_the_injustice_of_bail', '2018'], ['/talks/manoush_zomorodi_how_boredom_can_lead_to_your_most_brilliant_ideas', '2017']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+a+foreign+correspondent+in+the+middle+east+reporting+for+abc+news++but+there+was+a+crack+in+the+wall+a+problem+with+our+industry
found 1 videos: [['/talks/lara_setrakian_3_ways_to_fix_a_broken_news_industry', '2017']]
selected: /talks/lara_setrakian_3_ways_to_fix_a_broken_news_industry
sleep 3 seconds to avoid blocking
------<1268>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LarryBrilliant_2006.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+got+to+see+the+last+case+of+killer+smallpox+in+the+world
found 3 videos: [['/talks/larry_brilliant_my_wish_help_me_stop_pandemics', '2006'], ['/talks/larry_brilliant_the_case_for_optimism', '2007'], ['/talks/craig_venter_sampling_the_ocean_s_dna', '2007']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+in+india+this+past+year+and+i+may+have+seen+the+last+cases+of+polio+in+the+world++there+s+nothing+that+makes+you+feel+more
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+working+in+a+program+like+that+than+to+know+that+something+that+horrible
found 6 videos: [['/talks/edward_burtynsky_my_wish_manufactured_landscapes_and_green_education', '2006'], ['/talks/larry_brilliant_my_wish_help_me_stop_pandemics', '2006'], ['/talks/peter_hirshberg_the_web_is_more_than_better_tv', '2008'], ['/talks/jane_goodall_what_separates_us_from_chimpanzees', '2007'], ['/talks/doris_kearns_goodwin_lessons_from_past_presidents', '2008'], ['/talks/jeff_skoll_my_journey_into_movies_that_matter', '2007']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=no+longer+exists++so+i+m+going+to+tell+you+so+i+m+going
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+show+you+some+dirty+pictures+they+are
found 7 videos: [['/talks/larry_brilliant_my_wish_help_me_stop_pandemics', '2006'], ['/talks/david_pogue_simplicity_sells', '2006'], ['/talks/jehane_noujaim_my_wish_a_global_day_of_film', '2006'], ['/talks/frank_gehry_my_days_as_a_young_rebel', '2008'], ['/talks/peter_gabriel_fight_injustice_with_raw_video', '2006'], ['/talks/david_perry_are_games_better_than_life', '2008'], ['/talks/richard_branson_life_at_30_000_feet', '2007']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=difficult+to+watch++but+you+should+look+at+them+with+optimism++because+the+horror+of+these+pictures
found 2 videos: [['/talks/larry_brilliant_my_wish_help_me_stop_pandemics', '2006'], ['/talks/larry_brilliant_the_case_for_optimism', '2007']]
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=matched+by+the+uplifting+quality+of+knowing+that+they+no+longer+exist
found 1 videos: [['/talks/larry_brilliant_my_wish_help_me_stop_pandemics', '2006']]
selected: /talks/larry_brilliant_my_wish_help_me_stop_pandemics
sleep 4 seconds to avoid blocking
------<1269>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LarryBrilliant_2007P.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+try+to+give+you
found 6 videos: [['/talks/ory_okolloh_how_i_became_an_activist', '2008'], ['/talks/golan_levin_art_that_looks_back_at_you', '2009'], ['/talks/maira_kalman_the_illustrated_woman', '2007'], ['/talks/rory_sutherland_life_lessons_from_an_ad_man', '2009'], ['/talks/keith_barry_brain_magic', '2008'], ['/talks/john_maeda_designing_for_simplicity', '2007']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+view+of+the+world+as+i+see+it++the+problems+and+the+opportunities+that+we+face++and+then+ask+the+question+if+we+should+be+optimistic+or
found 1 videos: [['/talks/larry_brilliant_the_case_for_optimism', '2007']]
selected: /talks/larry_brilliant_the_case_for_optimism
sleep 2 seconds to avoid blocking
------<1270>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LarryBurns_2005.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+love+their+automobiles+they+allow+us+to+go+where+we+want+to+when+we+want+to+they+re+a+form+of+entertainment++they+re+a+form+of+art
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+pride+of+ownership++songs+are+written+about+cars+prince+wrote+a+great
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=little+red+dirt+devil+he+wrote+about+a+car+one+of+my+favorites+has+always+been+make+love+to+your+man+in+a+chevy+van+because+that+was+my+vehicle+when+i+was+in+college
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+fact+is+when+we+do+our+market+research+around+the+world+we+see+there+s+a+nearly+universal+aspiration+on+the+part+of+people+to+own+an+automobile+seven+hundred
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+fifty+million+people+in+the+world+today+own+a+car+and+you+say+boy+that+s+a+lot+but+you+know+what+that+s+just+twelve
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=percent+of+the+population++we+really+have+to+ask+the+question+can+the+world+sustain+that+number+of+automobiles++and+if+you+look+at+projections+over+the+next+ten+to+fifteen+to+twenty+years
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+looks+like+the+world+car+park+could+grow+to+on+the+order+of+one+point+one+billion+vehicles++if+you+park+those+end+to+end+and+wrap+them+around+the+earth
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=progress+with+automobile+technology+over+the+last+one+hundred+years+cars+are+dramatically+cleaner+dramatically+safer+more+efficient+and+radically+more+affordable+than+they+were+one+hundred+years+ago
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+fundamental+dna+of+the+automobile+has+stayed+pretty+much+the+same+if+we+were+to+reinvent+the+automobile+today++rather+than+one+hundred+years+ago++knowing+what+we+know+about+the+issues+associated+with+our
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=product+and+about+the+technologies+that+exist+today+what+would+we+do+we+wanted+something+that+was+really+affordable+the+fuel+cell+looked+great+one+tenth+as+many+moving+parts+a
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fuel+cell+propulsion+system+as+an+internal+combustion+engine++and+it+emits+just+water++and+we+wanted+to+take+advantage+of+moore+s+law+with+electronic+controls+and+software+and+we+absolutely+wanted+our+car+to+be+connected
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=engine+the+fuel+cell+and+hydrogen+as+the+energy+carrier+first+was+autonomy+autonomy+really+set+the+vision+for+where+we+wanted+to+head++we+embodied+all+of+the+key+components
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+a+fuel+cell+propulsion+system++we+then+had+autonomy+drivable+with+hy+wire+and+we+showed+hy+wire+here+at+this+conference+last+year+hy+wire+is+the+world+s+first+drivable+fuel+cell++and+we+have+followed+up+that+now+with+sequel++and+sequel
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=truly+is+a+real+car+so+if+we+could+run+the+video
found 3 videos: [['/talks/jeff_bezos_the_electricity_metaphor_for_the_web_s_future', '2007'], ['/talks/bill_stone_inside_the_world_s_deepest_caves', '2007'], ['/talks/ben_saunders_why_did_i_ski_to_the_north_pole', '2006']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+the+real+key+question+i+m+sure+that+s+on+your+mind+where+is+the+hydrogen+going+to+come+from+and+secondly
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+are+these+kinds+of+cars+going+to+be+available+so+let+me+talk+about+hydrogen+first+the+beauty+of+hydrogen+is+it+can+come+from+so+many+different+sources+it+can+come+from+fossil+fuels+it+can
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=come+from+any+way+that+you+can+create+electricity+including+renewables++and+it+can+come+from+biofuels+and+that+that+s+quite+exciting+the+vision+here+is+to+have+each+local+community+play+to+its+natural+strength+in+creating+the+hydrogen+a+lot+of+hydrogen+is+produced
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+world+it+s+produced+to+get+sulfur+out+of+gasoline+which+i+find+is+somewhat+ironic+it+s+produced+in+the+fertilizer+industry+it+s+produced+in+the
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=chemical+manufacturing+industry++that+hydrogen+is+being+made+because+there+s+a+good+business+reason+for+its+use++but+it+tells+us+that+we+know+how+to+create+it+we+know+how+to+create+it
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+know+how+to+handle+it+safely++we+did+an+analysis+where+you+would+have+a+station+in
found 1 videos: [['/talks/majora_carter_greening_the_ghetto', '2006']]
selected: /talks/majora_carter_greening_the_ghetto
sleep 2 seconds to avoid blocking
------<1271>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LarryLessig_2007.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+tell+you+three+stories+on+the+way+to+one+argument+that+s+going+to+tell+you+a+little+bit+about+how+we+open
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=traveled+to+this+place+the+united+states+capitol+to+talk+about+this+technology+what+he+called+the+quote+talking+machines
found 1 videos: [['/talks/lawrence_lessig_laws_that_choke_creativity', '2007']]
selected: /talks/lawrence_lessig_laws_that_choke_creativity
sleep 2 seconds to avoid blocking
------<1272>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LarryLessig_2013.stm
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+lesterland+looks+a+lot+like+the+united+states
found 1 videos: [['/talks/lawrence_lessig_we_the_people_and_the_republic_we_must_reclaim', '2013']]
selected: /talks/lawrence_lessig_we_the_people_and_the_republic_we_must_reclaim
sleep 1 seconds to avoid blocking
------<1273>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LarryLessig_2014.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+there+was+a+flaw+at+the+core+of+their+pentium+chip++deep+in+the+code+of
found 1 videos: [['/talks/lawrence_lessig_the_unstoppable_walk_to_political_reform', '2014']]
selected: /talks/lawrence_lessig_the_unstoppable_walk_to_political_reform
sleep 5 seconds to avoid blocking
------<1274>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LarrySmith_2011X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+discuss+with+you+this+afternoon+why+you+re+going+to+fail+to+have+a+great+career
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+an+economist+i+do
found 4 videos: [['/talks/eric_topol_the_wireless_future_of_medicine', '2010'], ['/talks/rory_sutherland_life_lessons_from_an_ad_man', '2009'], ['/talks/paul_zak_trust_morality_and_oxytocin', '2011'], ['/talks/emily_levine_a_theory_of_everything', '2009']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=end+of+the+day++it+s+ready+for+dismal+remarks
found 1 videos: [['/talks/larry_smith_why_you_will_fail_to_have_a_great_career', '2012']]
selected: /talks/larry_smith_why_you_will_fail_to_have_a_great_career
sleep 5 seconds to avoid blocking
------<1275>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LatifNasser_2015.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+few+years+ago+my+mom+developed+rheumatoid+arthritis
found 1 videos: [['/talks/latif_nasser_the_amazing_story_of_the_man_who_gave_us_modern_pain_relief', '2015']]
selected: /talks/latif_nasser_the_amazing_story_of_the_man_who_gave_us_modern_pain_relief
sleep 5 seconds to avoid blocking
------<1276>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LatifNasser_2015P.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+a+story+about+how+we+know+what+we+know
found 16 videos: [['/talks/ellen_jorgensen_what_you_need_to_know_about_crispr', '2016'], ['/talks/johann_hari_everything_you_think_you_know_about_addiction_is_wrong', '2015'], ['/talks/deeyah_khan_what_we_don_t_know_about_europe_s_muslim_kids', '2017'], ['/talks/stuart_firestein_the_pursuit_of_ignorance', '2013'], ['/talks/gregory_heyworth_how_i_m_discovering_the_secrets_of_ancient_texts', '2016'], ['/talks/elizabeth_lev_the_unheard_story_of_the_sistine_chapel', '2016'], ['/talks/david_chalmers_how_do_you_explain_consciousness', '2014'], ['/talks/dan_berkenstock_the_world_is_one_big_dataset_now_how_to_photograph_it', '2014'], ['/talks/sophie_scott_why_we_laugh', '2015'], ['/talks/bj_miller_what_really_matters_at_the_end_of_life', '2015'], ['/talks/ione_wells_how_we_talk_about_sexual_assault_online', '2016'], ['/talks/mona_chalabi_3_ways_to_spot_a_bad_statistic', '2017'], ['/talks/andrew_mcafee_what_will_future_jobs_look_like', '2013'], ['/talks/edward_snowden_here_s_how_we_take_back_the_internet', '2014'], ['/talks/gretchen_carlson_how_we_can_end_sexual_harassment_at_work', '2017'], ['/talks/trevor_timm_how_free_is_our_freedom_of_the_press', '2016']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+a+story+about+this+woman+natalia+rybczynski++she+s+a
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+think+she+s+particularly+interesting+because+of+where+she+digs+that+stuff+up+way+above+the+arctic+circle+in+the+remote+canadian+tundra
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+one+summer+day+in+two+thousand+and+six+she+was+at+a+dig+site+called+the
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fyles+leaf+bed+which+is+less+than+ten+degrees+latitude+away+from+the+magnetic+north+pole
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+it+was+a+day+of+walking+with+your+backpack+and+your+gps+and+notebook+and+just+picking+up+anything+that+might+be+a+fossil+ln+and+at+some+point+she+noticed+something+nr
found 1 videos: [['/talks/latif_nasser_you_have_no_idea_where_camels_really_come_from', '2016']]
selected: /talks/latif_nasser_you_have_no_idea_where_camels_really_come_from
sleep 2 seconds to avoid blocking
------<1277>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LaToyaRubyFrazier_2015U.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=along+the+ancient+path+of+the+monongahela+river
found 1 videos: [['/talks/latoya_ruby_frazier_a_visual_history_of_inequality_in_industrial_america', '2015']]
selected: /talks/latoya_ruby_frazier_a_visual_history_of_inequality_in_industrial_america
sleep 5 seconds to avoid blocking
------<1278>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LauraBoushnak_2014U.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+an+arab+female+photographer+i+have+always+found+ample+inspiration+for+my+projects+in+personal+experiences
found 1 videos: [['/talks/laura_boushnak_for_these_women_reading_is_a_daring_act', '2015']]
selected: /talks/laura_boushnak_for_these_women_reading_is_a_daring_act
sleep 1 seconds to avoid blocking
------<1279>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LauraBoushnak_2016T.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=standing+in+the+middle+of+a+deserted+field+full+of+land+mines+in+real+life+i+love+to+hike++but+every+time+i+want+to+go+on+a+hike++it+makes+me
found 1 videos: [['/talks/laura_boushnak_the_deadly_legacy_of_cluster_bombs', '2016']]
selected: /talks/laura_boushnak_the_deadly_legacy_of_cluster_bombs
sleep 4 seconds to avoid blocking
------<1280>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LauraCarstensen_2011X.stm
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+hear+about+it+all+the+time+you+read+about+it+in+your+newspapers+you+hear+about+it+on+your+television+sets++sometimes+i+m+concerned+that+we+hear
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+ve+come+to+accept+longer+lives+with+a+kind+of+a+complacency+even+ease
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+make+no+mistake+longer+lives+can
found 10 videos: [['/talks/laura_carstensen_older_people_are_happier', '2012'], ['/talks/melinda_gates_what_nonprofits_can_learn_from_coca_cola', '2010'], ['/talks/sheena_iyengar_the_art_of_choosing', '2010'], ['/talks/elyn_saks_a_tale_of_mental_illness_from_the_inside', '2012'], ['/talks/peter_ward_a_theory_of_earth_s_mass_extinctions', '2009'], ['/talks/scott_mccloud_the_visual_magic_of_comics', '2009'], ['/talks/jason_mccue_terrorism_is_a_failed_brand', '2012'], ['/talks/andrew_mcafee_what_will_future_jobs_look_like', '2013'], ['/talks/bruce_bueno_de_mesquita_a_prediction_for_the_future_of_iran', '2009'], ['/talks/ric_elias_3_things_i_learned_while_my_plane_crashed', '2011']]
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+all+ages++now+to+put+this+in+perspective+let+me+just+zoom+out+for+a+minute+more+years
found 2 videos: [['/talks/laura_carstensen_older_people_are_happier', '2012'], ['/talks/sebastian_seung_i_am_my_connectome', '2010']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=were+added+to+average+life+expectancy+in+the
found 2 videos: [['/talks/laura_carstensen_older_people_are_happier', '2012'], ['/talks/francis_collins_we_need_better_drugs_now', '2013']]
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=across+all+prior+millennia+of+human+evolution+combined
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+blink+of+an+eye++we+nearly+doubled+the+length+of+time+that+we+re+living
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+if+you+ever+feel+like+you+don+t+have+this+aging+thing+quite+pegged+don+t+kick+yourself++it+s+brand+new
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+because+fertility+rates+fell+across+that+very+same+period+that+life+expectancy+was+going+up
found 1 videos: [['/talks/laura_carstensen_older_people_are_happier', '2012']]
selected: /talks/laura_carstensen_older_people_are_happier
sleep 4 seconds to avoid blocking
------<1281>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LauraGalante_2017.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+s+say+you+despise+western+democracy
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=democracy+in+all+its+trappings+free+elections+town+halls++endless+debates+about+the+proper
found 1 videos: [['/talks/laura_galante_how_and_why_russia_hacked_the_us_election', '2017']]
selected: /talks/laura_galante_how_and_why_russia_hacked_the_us_election
sleep 1 seconds to avoid blocking
------<1282>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LauraIndolfi_2016U.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+raising+your+hand+how+many+of+you+know+at+least+one+person+on+the+screen+wow
found 1 videos: [['/talks/laura_indolfi_good_news_in_the_fight_against_pancreatic_cancer', '2016']]
selected: /talks/laura_indolfi_good_news_in_the_fight_against_pancreatic_cancer
sleep 4 seconds to avoid blocking
------<1283>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LauraRobinson_2014X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+an+ocean+chemist+i+look+at+the+chemistry+of+the+ocean+today+i+look+at+the+chemistry+of+the+ocean+in+the+past
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+way+i+look+back+in+the+past+is+by+using+the+fossilized+remains+of+deepwater+corals+you+can+see+an+image+of+one+of+these+corals+behind+me++it+was+collected+from+close+to+antarctica+thousands
found 1 videos: [['/talks/laura_robinson_the_secrets_i_find_on_the_mysterious_ocean_floor', '2016']]
selected: /talks/laura_robinson_the_secrets_i_find_on_the_mysterious_ocean_floor
sleep 2 seconds to avoid blocking
------<1284>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LauraSchulz_2015.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=mark+twain+summed+up+what+i+take+to+be+one+of+the+fundamental+problems+of+cognitive+science+with+a+single+witticism
found 1 videos: [['/talks/laura_schulz_the_surprisingly_logical_minds_of_babies', '2015']]
selected: /talks/laura_schulz_the_surprisingly_logical_minds_of_babies
sleep 5 seconds to avoid blocking
------<1285>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LauraSnyder_2012G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+d+like+you+to+come+back+with+me+for+a+moment+to+the+19th+century++specifically+to+june
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+british+association+for+the+advancement+of+science+is+holding+its+third+meeting+at+the+university+of+cambridge+it+s+the+first
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=night+of+the+meeting++and+a+confrontation+is+about+to+take+place+that+will+change+science+forever
found 1 videos: [['/talks/laura_snyder_the_philosophical_breakfast_club', '2013']]
selected: /talks/laura_snyder_the_philosophical_breakfast_club
sleep 4 seconds to avoid blocking
------<1286>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LauraTrice_2008.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+here+to+talk+to+you+about+the+importance+of
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=praise+admiration+and+thank+you+and+having+it+be+specific+and+genuine
found 1 videos: [['/talks/laura_trice_remember_to_say_thank_you', '2008']]
selected: /talks/laura_trice_remember_to_say_thank_you
sleep 5 seconds to avoid blocking
------<1287>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LauraVanderkam_2016W.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+people+find+out+i+write+about+time+management+they+assume+two+things+one
found 4 videos: [['/talks/laura_vanderkam_how_to_gain_control_of_your_free_time', '2016'], ['/talks/franklin_leonard_how_i_accidentally_changed_the_way_movies_get_made_apr_2018', '2018'], ['/talks/jon_ronson_when_online_shaming_goes_too_far', '2015'], ['/talks/elizabeth_white_an_honest_look_at_the_personal_finance_crisis', '2018']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+that+i+m+always+on+time+and+i+m+not
found 5 videos: [['/talks/megan_washington_why_i_live_in_mortal_dread_of_public_speaking', '2014'], ['/talks/keller_rinaudo_how_we_re_using_drones_to_deliver_blood_and_save_lives', '2017'], ['/talks/celeste_headlee_10_ways_to_have_a_better_conversation', '2016'], ['/talks/dan_bell_inside_america_s_dead_shopping_malls', '2017'], ['/talks/chip_kidd_the_art_of_first_impressions_in_design_and_life', '2015']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+have+four+small+children+and+i+would+like+to+blame+them+for+my+occasional+tardiness++but+sometimes+it+s+just+not+their+fault
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+once+late+to+my+own+speech+on+time+management
found 3 videos: [['/talks/laura_vanderkam_how_to_gain_control_of_your_free_time', '2016'], ['/talks/dame_stephanie_shirley_why_do_ambitious_women_have_flat_heads', '2015'], ['/talks/will_potter_the_secret_us_prisons_you_ve_never_heard_of_before', '2015']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+all+had+to+just+take+a+moment+together+and+savor+that+irony
found 1 videos: [['/talks/laura_vanderkam_how_to_gain_control_of_your_free_time', '2016']]
selected: /talks/laura_vanderkam_how_to_gain_control_of_your_free_time
sleep 4 seconds to avoid blocking
------<1288>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LaurelBraitman_2014S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=unstable+male+that+i+completely+lost+my+heart+to
found 2 videos: [['/talks/laurel_braitman_depressed_dogs_cats_with_ocd_what_animal_madness_means_for_us_humans', '2014'], ['/talks/kirk_sorensen_thorium_an_alternative_nuclear_fuel', '2012']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+adopted+him+and+about+six+months+in+we+realized+that+he+was+a+mess++he+had+such+paralyzing+separation+anxiety+that+we+couldn+t+leave+him+alone+once+he+jumped+out+of+our+third+floor+apartment
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+ate+fabric+he+ate+things++recyclables++he+hunted+flies+that+didn+t+exist+he+suffered+from+hallucinations+he+was+diagnosed+with+a+canine
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=compulsive+disorder+and+that+s+really+just+the+tip+of+the+iceberg++but
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sometimes+it+s+six+months+in+before+you+realize+that+the+person+that+you+love+has+some+issues
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+most+of+us+do+not+take+the+person+we+re+dating
found 2 videos: [['/talks/amy_webb_how_i_hacked_online_dating', '2013'], ['/talks/helen_fisher_technology_hasn_t_changed_love_here_s_why', '2016']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=back+to+the+bar+where+we+met+them
found 11 videos: [['/talks/andrew_stanton_the_clues_to_a_great_story', '2012'], ['/talks/dave_isay_everyone_around_you_has_a_story_the_world_needs_to_hear', '2015'], ['/talks/jon_ronson_when_online_shaming_goes_too_far', '2015'], ['/talks/rick_guidotti_from_stigma_to_supermodel', '2012'], ['/talks/adam_garone_healthier_men_one_moustache_at_a_time', '2012'], ['/talks/guy_winch_why_we_all_need_to_practice_emotional_first_aid', '2015'], ['/talks/laurel_braitman_depressed_dogs_cats_with_ocd_what_animal_madness_means_for_us_humans', '2014'], ['/talks/nancy_duarte_the_secret_structure_of_great_talks', '2012'], ['/talks/sonia_shah_3_reasons_we_still_haven_t_gotten_rid_of_malaria', '2013'], ['/talks/meron_gribetz_a_glimpse_of_the_future_through_an_augmented_reality_headset', '2016'], ['/talks/jon_ronson_strange_answers_to_the_psychopath_test', '2012']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=back+to+the+friend+that+introduced+us+or+sign+them+back+up+on+match+com
found 2 videos: [['/talks/kevin_briggs_the_bridge_between_suicide_and_life', '2014'], ['/talks/linus_torvalds_the_mind_behind_linux', '2016']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+love+them+anyway++and+we+stick+to+it++and+that+is+what+i+did
found 11 videos: [['/talks/latif_nasser_you_have_no_idea_where_camels_really_come_from', '2016'], ['/talks/verna_myers_how_to_overcome_our_biases_walk_boldly_toward_them', '2014'], ['/talks/laurel_braitman_depressed_dogs_cats_with_ocd_what_animal_madness_means_for_us_humans', '2014'], ['/talks/jon_mooallem_how_the_teddy_bear_taught_us_compassion', '2014'], ['/talks/alain_de_botton_atheism_2_0', '2012'], ['/talks/colin_powell_kids_need_structure', '2013'], ['/talks/rives_the_museum_of_four_in_the_morning', '2014'], ['/talks/keith_nolan_deaf_in_the_military', '2012'], ['/talks/james_beacham_how_we_explore_unanswered_questions_in_physics', '2016'], ['/talks/young_ha_kim_be_an_artist_right_now', '2013'], ['/talks/alice_goffman_how_we_re_priming_some_kids_for_college_and_others_for_prison', '2015']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+my+dog++and+i+was+a+i+d+studied
found 4 videos: [['/talks/russ_altman_what_really_happens_when_you_mix_medications', '2016'], ['/talks/krista_donaldson_the_80_prosthetic_knee_that_s_changing_lives', '2013'], ['/talks/navi_radjou_creative_problem_solving_in_the_face_of_extreme_limits', '2015'], ['/talks/jeffrey_kluger_the_sibling_bond', '2012']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+history+of+science+from+mit++and+had+you+asked+me+ten+years+ago+if+a+dog+i+loved+or+just+dogs+generally+had+emotions+i+would+have+said+yes+but+i+m+not+sure+that+i+would+have+told+you
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+they+can+also+wind+up+with+an+anxiety+disorder+a+prozac+prescription+and+a+therapist
found 1 videos: [['/talks/laurel_braitman_depressed_dogs_cats_with_ocd_what_animal_madness_means_for_us_humans', '2014']]
selected: /talks/laurel_braitman_depressed_dogs_cats_with_ocd_what_animal_madness_means_for_us_humans
sleep 2 seconds to avoid blocking
------<1289>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LaurenZalaznick_2010W.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=after+these+incredible+speeches+and+ideas+that+are+being+spread++i+am+in+the+awkward+position+of+being+here+to+talk+to+you+today+about
found 1 videos: [['/talks/lauren_zalaznick_the_conscience_of_television', '2011']]
selected: /talks/lauren_zalaznick_the_conscience_of_television
sleep 4 seconds to avoid blocking
------<1290>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LaurieGarrett_2007U.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+first+question+is+why+do+we+need+to+even+worry+about
found 5 videos: [['/talks/tim_ferriss_smash_fear_learn_anything', '2009'], ['/talks/helen_fisher_why_we_love_why_we_cheat', '2006'], ['/talks/louise_fresco_we_need_to_feed_the_whole_world', '2009'], ['/talks/rebecca_saxe_how_we_read_each_other_s_minds', '2009'], ['/talks/philip_zimbardo_the_psychology_of_evil', '2008']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+pandemic+threat+what+is+it+that+we+re+concerned+about+when+i+say+we+i+m+at+the+council+on+foreign+relations+we+re+concerned+in+the+national+security+community+and+of+course+in
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=while+globalization+has+increased+travel++it+s+made+it+necessary+that+everybody+be+everywhere+all+the+time+all+over+the+world+and+that+means+that+your+microbial+hitchhikers+are+moving+with+you+so+a+plague
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=outbreak+in+surat+india+becomes+not+an+obscure+event+but+a+globalized+event+a+globalized+concern+that+has+changed+the+risk+equation+katrina+showed+us+that+we+cannot+completely+depend+on+government+to+have
found 1 videos: [['/talks/laurie_garrett_lessons_from_the_1918_flu', '2009']]
selected: /talks/laurie_garrett_lessons_from_the_1918_flu
sleep 1 seconds to avoid blocking
------<1291>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LaurieSantos_2010G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+start+my+talk+today+with+two+observations+about+the+human+species
found 2 videos: [['/talks/laurie_santos_a_monkey_economy_as_irrational_as_ours', '2010'], ['/talks/jill_tarter_join_the_seti_search', '2009']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+first+observation+is+something+that+you+might+think+is+quite+obvious+and+that+s+that+our+species+homo+sapiens+is+actually+really
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=really+smart+like+ridiculously+smart+like
found 3 videos: [['/talks/rachel_botsman_the_case_for_collaborative_consumption', '2010'], ['/talks/laurie_santos_a_monkey_economy_as_irrational_as_ours', '2010'], ['/talks/david_perry_are_games_better_than_life', '2008']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+re+all+doing+things+that+no+other+species+on+the+planet+does+right+now
found 3 videos: [['/talks/penelope_boston_there_might_just_be_life_on_mars', '2008'], ['/talks/daniel_wolpert_the_real_reason_for_brains', '2011'], ['/talks/juan_enriquez_the_next_species_of_human', '2009']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+is+of+course++not+the+first+time+you+ve+probably+recognized+this+of+course+in+addition+to+being+smart+we+re+also+an+extremely+vain+species++so+we+like+pointing+out+the+fact+that+we+re+smart+you+know+so+i+could+turn+to+pretty+much+any+sage+from
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=shakespeare+to+stephen+colbert+to+point+out+things+like+the+fact+that+we+re+noble+in+reason+and+infinite+in+faculties+and+just+kind+of+awesome+er+than+anything+else+on+the+planet+when+it+comes+to+all+things+cerebral
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+of+course+there+s+a+second+observation+about+the+human+species+that+i+want+to+focus+on+a+little+bit+more
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+s+the+fact+that+even+though+we+re+actually+really+smart++sometimes+uniquely+smart++we+can+also+be+incredibly+incredibly+dumb
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+it+comes+to+some+aspects+of+our+decision+making+now+i+m+seeing+lots+of+smirks+out+there+don+t+worry+i+m+not+going+to+call+anyone+in+particular+out+on+any+aspects+of+your+own+mistakes
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+of+course+just+in+the+last+two+years+we+see+these+unprecedented+examples
found 12 videos: [['/talks/daphne_koller_what_we_re_learning_from_online_education', '2012'], ['/talks/jamie_drummond_let_s_crowdsource_the_world_s_goals', '2012'], ['/talks/laurie_santos_a_monkey_economy_as_irrational_as_ours', '2010'], ['/talks/johan_rockstrom_let_the_environment_guide_our_development', '2010'], ['/talks/mark_roth_suspended_animation_is_within_our_grasp', '2010'], ['/talks/keith_nolan_deaf_in_the_military', '2012'], ['/talks/hanna_rosin_new_data_on_the_rise_of_women', '2010'], ['/talks/misha_glenny_the_real_story_of_mcmafia_how_global_crime_networks_work', '2009'], ['/talks/john_delaney_wiring_an_interactive_ocean', '2010'], ['/talks/paul_collier_the_bottom_billion', '2008'], ['/talks/seth_berkley_hiv_and_flu_the_vaccine_strategy', '2010'], ['/talks/stefan_wolff_the_path_to_ending_ethnic_conflicts', '2010']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+human+ineptitude+and+we+ve+watched+as+the+tools+we+uniquely+make+to+pull+the+resources+out+of+our+environment+kind+of+just+blow+up+in+our+face+we+ve+watched+the+financial+markets+that+we+uniquely+create+these+markets+that+were+supposed+to+be+foolproof+we+ve+watched+them+kind+of+collapse+before+our+eyes
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+both+of+these+two+embarrassing+examples+i+think+don+t+highlight+what+i+think+is+most+embarrassing+about+the+mistakes+that+humans+make+which+is+that+we+d+like+to+think+that+the+mistakes+we+make
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+really+just+the+result+of+a+couple+bad+apples+or+a+couple+really+sort+of+fail+blog+worthy+decisions
found 1 videos: [['/talks/laurie_santos_a_monkey_economy_as_irrational_as_ours', '2010']]
selected: /talks/laurie_santos_a_monkey_economy_as_irrational_as_ours
sleep 1 seconds to avoid blocking
------<1292>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LawrenceLessig_2010X.stm
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+what+we+learn+from+conservatives
found 7 videos: [['/talks/lawrence_lessig_re_examining_the_remix', '2010'], ['/talks/jonathan_haidt_the_moral_roots_of_liberals_and_conservatives', '2008'], ['/talks/elif_shafak_the_politics_of_fiction', '2010'], ['/talks/stefana_broadbent_how_the_internet_enables_intimacy', '2009'], ['/talks/eythor_bender_human_exoskeletons_for_war_and_healing', '2011'], ['/talks/massimo_banzi_how_arduino_is_open_sourcing_imagination', '2012'], ['/talks/tim_brown_tales_of_creativity_and_play', '2008']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+m+at+a+stage+in+life+where+i+m+yearning+for+my+old+days+so+i+want+to+confess+to+you+that+when+i+was+a+kid
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+a+young+republican+a+teenage+republican+a+leader+in+the+teenage+republicans+indeed++i+was+the+youngest+member+of+any+delegation+in+the+one+thousand+nine+hundred+and+eighty+convention+that+elected+ronald+reagan+to+be+the+republican+nominee+for+president
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+i+know+what+you+re+thinking
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+re+thinking+that+s+not+what+the
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=wikipedia+doesn+t+say+this+fact+and+indeed+this+is+just+one+of+the+examples+of+the+junk+that+flows+across+the+tubes+in+these+internets+here
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=wikipedia+reports+that+this+guy+this+former+congressman+from+erie+pennsylvania+was+at+the+age+of+twenty+one+of+the+youngest+people+at+the+republican+national+convention+but+it+s+just+not+true
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+drives+me+so+nuts+let+me+just+change+this+little
found 9 videos: [['/talks/lawrence_lessig_re_examining_the_remix', '2010'], ['/talks/jason_clay_how_big_brands_can_help_save_biodiversity', '2010'], ['/talks/mark_pagel_how_language_transformed_humanity', '2011'], ['/talks/melinda_gates_let_s_put_birth_control_back_on_the_agenda', '2012'], ['/talks/shimon_schocken_what_a_bike_ride_can_teach_you', '2010'], ['/talks/conrad_wolfram_teaching_kids_real_math_with_computers', '2010'], ['/talks/richard_seymour_how_beauty_feels', '2011'], ['/talks/dan_buettner_how_to_live_to_be_100', '2010'], ['/talks/jonathan_harris_the_web_as_art', '2008']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+the+thing+i+want+you+to+think+about+when+we+think+about+conservatives+not+so+much+this+issue+of
found 9 videos: [['/talks/jonathan_haidt_the_moral_roots_of_liberals_and_conservatives', '2008'], ['/talks/elif_shafak_the_politics_of_fiction', '2010'], ['/talks/lawrence_lessig_re_examining_the_remix', '2010'], ['/talks/melinda_gates_let_s_put_birth_control_back_on_the_agenda', '2012'], ['/talks/carl_safina_the_oil_spill_s_unseen_villains_and_victims', '2010'], ['/talks/david_pizarro_the_strange_politics_of_disgust', '2012'], ['/talks/maz_jobrani_a_saudi_an_indian_and_an_iranian_walk_into_a_qatari_bar', '2012'], ['/talks/michael_nielsen_open_science_now', '2011'], ['/talks/mustafa_akyol_faith_versus_tradition_in_islam', '2011']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+eighty+convention+the+thing+to+think+about+is+this+they+go+to+church
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+you+know+i+mean+a+lot+of+people+go+to+church+i+m+not+talking+about+that+only+conservatives+go+to+church+and+i+m+not+talking+about+the+god+thing+i+don+t+want+to+get+into+that+you+know+that+s+not+my+point+they+go+to+church+by+which+i+mean
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+do+lots+of+things+for+free+for+each+other
found 9 videos: [['/talks/neil_pasricha_the_3_a_s_of_awesome', '2011'], ['/talks/jonathan_haidt_religion_evolution_and_the_ecstasy_of_self_transcendence', '2012'], ['/talks/hanna_rosin_new_data_on_the_rise_of_women', '2010'], ['/talks/adam_davidson_what_we_learned_from_teetering_on_the_fiscal_cliff', '2012'], ['/talks/johanna_blakley_lessons_from_fashion_s_free_culture', '2010'], ['/talks/bill_gross_a_solar_energy_system_that_tracks_the_sun', '2009'], ['/talks/craig_venter_watch_me_unveil_synthetic_life', '2010'], ['/talks/cesar_harada_a_novel_idea_for_cleaning_up_oil_spills', '2012'], ['/talks/timothy_prestero_design_for_people_not_awards', '2012']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+hold+potluck+dinners+indeed+they+sell+books+about+potluck
found 1 videos: [['/talks/lawrence_lessig_re_examining_the_remix', '2010']]
selected: /talks/lawrence_lessig_re_examining_the_remix
sleep 5 seconds to avoid blocking
------<1293>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LeahBuechley_2011Y.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+talk+to+you+about+sketching+electronics
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m++among+several+other+things++an+electrical+engineer++and+that+means+that+i+spend+a+good
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=amount+of+time+designing+and+building+new+pieces+of+technology
found 3 videos: [['/talks/leah_buechley_how_to_sketch_with_electronics', '2012'], ['/talks/sebastian_deterding_what_your_designs_say_about_you', '2012'], ['/talks/stephen_ritz_a_teacher_growing_green_in_the_south_bronx', '2012']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+more+specifically+designing+and+building+electronics
found 1 videos: [['/talks/leah_buechley_how_to_sketch_with_electronics', '2012']]
selected: /talks/leah_buechley_how_to_sketch_with_electronics
sleep 4 seconds to avoid blocking
------<1294>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LeanaWen_2014P.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+told+me+that+i+m+a+traitor+to+my+own+profession
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+i+should+be+fired+have+my+medical+license+taken+away++that+i+should+go+back+to+my+own
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=email+got+hacked+in+a+discussion+forum+for+other+doctors+someone+took+credit+for
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+account+now+i+didn+t+know+if+this+was+a+good+or+bad+thing++but+then+came+the+response+too+bad+it+wasn+t+a+real+bomb
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+never+thought+that+i+would+do+something+that+would+provoke+this+level+of+anger+among+other+doctors
found 1 videos: [['/talks/leana_wen_what_your_doctor_won_t_disclose', '2014']]
selected: /talks/leana_wen_what_your_doctor_won_t_disclose
sleep 5 seconds to avoid blocking
------<1295>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LeeCronin_2011G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+i+m+going+to+try+and+do+in+the+next+fifteen+minutes+or+so+is+tell+you+about+an+idea+of+how+we+re+going+to+make+matter+come+alive
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+this+may+seem+a+bit+ambitious++but+when+you+look+at+yourself+you+look+at+your+hands
found 5 videos: [['/talks/lee_cronin_making_matter_come_alive', '2011'], ['/talks/elon_musk_the_mind_behind_tesla_spacex_solarcity', '2013'], ['/talks/sugata_mitra_the_child_driven_education', '2010'], ['/talks/jane_mcgonigal_the_game_that_can_give_you_10_extra_years_of_life', '2012'], ['/talks/alain_de_botton_a_kinder_gentler_philosophy_of_success', '2009']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=realize+that+you+re+alive++so+this+is+a+start
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+this+quest+started+four+billion+years+ago+on+planet+earth+there+s+been+four+billion+years+of+organic+biological+life
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+as+an+inorganic+chemist+my+friends+and+colleagues+make+this+distinction+between+the+organic+living+world+and+the+inorganic+dead+world
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+what+i+m+going+to+try+and+do+is+plant+some+ideas+about+how+we+can+transform+inorganic+dead+matter+into+living+matter+into+inorganic+biology
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=before+we+do+that+i+want+to+kind+of+put+biology+in+its+place
found 14 videos: [['/talks/lee_cronin_making_matter_come_alive', '2011'], ['/talks/kevin_kelly_technology_s_epic_story', '2010'], ['/talks/kary_mullis_play_experiment_discover', '2009'], ['/talks/harvey_fineberg_are_we_ready_for_neo_evolution', '2011'], ['/talks/peter_diamandis_abundance_is_our_future', '2012'], ['/talks/martin_hanczyc_the_line_between_life_and_not_life', '2011'], ['/talks/francis_collins_we_need_better_drugs_now', '2013'], ['/talks/margaret_wertheim_the_beautiful_math_of_coral', '2009'], ['/talks/marcus_du_sautoy_symmetry_reality_s_riddle', '2009'], ['/talks/jonathan_trent_energy_from_floating_algae_pods', '2012'], ['/talks/eric_topol_the_wireless_future_of_medicine', '2010'], ['/talks/dennis_hong_my_seven_species_of_robot_and_how_we_created_them', '2010'], ['/talks/laurie_garrett_lessons_from_the_1918_flu', '2009'], ['/talks/thandiwe_newton_embracing_otherness_embracing_myself', '2011']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+m+absolutely+enthralled+by+biology++i+love+to+do+synthetic+biology+i+love+things+that+are+alive++i+love+manipulating+the+infrastructure+of+biology
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+within+that+infrastructure+we+have+to+remember+that+the+driving+force+of+biology+is+really+coming+from
found 1 videos: [['/talks/lee_cronin_making_matter_come_alive', '2011']]
selected: /talks/lee_cronin_making_matter_come_alive
sleep 3 seconds to avoid blocking
------<1296>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LeeCronin_2012G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=organic+chemists+make+molecules++very+complicated+molecules++by+chopping+up+a+big+molecule+into+small+molecules+and+reverse+engineering
found 1 videos: [['/talks/lee_cronin_print_your_own_medicine', '2013']]
selected: /talks/lee_cronin_print_your_own_medicine
sleep 4 seconds to avoid blocking
------<1297>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LeeHotz_2010G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=come+with+me+to+the+bottom+of+the+world
found 13 videos: [['/talks/paul_collier_the_bottom_billion', '2008'], ['/talks/nalini_nadkarni_conserving_the_canopy', '2009'], ['/talks/carolyn_steel_how_food_shapes_our_cities', '2009'], ['/talks/clifford_stoll_the_call_to_learn', '2008'], ['/talks/jamil_abu_wardeh_the_axis_of_evil_middle_east_comedy_tour', '2010'], ['/talks/jeremy_gilley_one_day_of_peace', '2011'], ['/talks/laurie_garrett_lessons_from_the_1918_flu', '2009'], ['/talks/stewart_brand_the_long_now', '2008'], ['/talks/willard_wigan_hold_your_breath_for_micro_sculpture', '2009'], ['/talks/temple_grandin_the_world_needs_all_kinds_of_minds', '2010'], ['/talks/scott_fraser_why_eyewitnesses_get_it_wrong', '2012'], ['/talks/david_griffin_how_photography_connects_us', '2008'], ['/talks/stephen_ritz_a_teacher_growing_green_in_the_south_bronx', '2012']]
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+highest++driest++windiest+and+yes+coldest+region+on+earth+more+arid+than+the+sahara+and+in+parts+colder+than+mars
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+ice+of+antarctica+glows+with+a+light+so+dazzling
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=blinds+the+unprotected+eye++early+explorers+rubbed+cocaine+in+their+eyes+to+kill+the+pain+of+it
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+weight+of+the+ice+is+such+that+the+entire+continent+sags+below+sea+level+beneath+its+weight++yet+the+ice+of+antarctica+is+a+calendar+of+climate+change
found 1 videos: [['/talks/lee_hotz_inside_an_antarctic_time_machine', '2010']]
selected: /talks/lee_hotz_inside_an_antarctic_time_machine
sleep 3 seconds to avoid blocking
------<1298>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LeeMokobe_2015W.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+kneeling+long+after+the+congregation+was+on+its+feet++dip+both+hands+into+holy+water++trace+the+trinity+across+my+chest+my+tiny+body+drooping+like+a+question+mark+all+over+the+wooden
found 1 videos: [['/talks/lee_mokobe_a_powerful_poem_about_what_it_feels_like_to_be_transgender', '2015']]
selected: /talks/lee_mokobe_a_powerful_poem_about_what_it_feels_like_to_be_transgender
sleep 3 seconds to avoid blocking
------<1299>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LeeSmolin_2003.stm
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+in+london+and+somebody+called+howard+burton+came+to+me
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+said+i+represent+a+group+of+people+and+we+want+to+start+an+institute
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+have+about+one+hundred+and+twenty+million+dollars
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+want+to+do+it+well++we+want+to+be+in+the+forefront+fields++and+we+want+to+do+it+differently++we+want+to+get+out+of+this+thing+where+the+young+people+have+all+the+ideas+and+the+old+people+have+all+the+power+and+decide+what+science+gets+done+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=took+me+about+twenty+five+seconds+to+decide+that+that+was+a+good+idea+three+years+later+we+have+the+perimeter+institute+for+theoretical+physics+in+waterloo
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=most+exciting+job+ive+ever+had+and+its+the+first+time+ive+had+a+job+where+im+afraid+to+go+away
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+of+everything+thats+going+to+happen+in+this+week+when+im+here+but+in+any+case+what+im+going+to+do
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+my+little+bit+of+time+is+take+you+on+a+quick+tour+of+some+of+the+things+that+we+talk+about+and+we+think+about++so+we+think+a+lot+about+what+really+makes+science+work
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+first+thing+that+anybody+who+knows+science+and+has+been+around+science+is+that+the+stuff+you+learn+in+school+as+a+scientific+method+is+wrong
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+is+no+method+on+the+other+hand++somehow+we+manage+to+reason+together+as+a+community+from+incomplete+evidence+to+conclusions+that+we+all+agree
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+and+this+is+by+the+way+something+that+a+democratic+society+also+has+to+do+so+how+does+it+work
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well++my+belief+is+that+it+works+because+scientists+are+a+community+bound+together+by+an+ethics
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+here+are+some+of+the+ethical+principles+im+not+going+to+read+them+all+to+you+because+im+not+in+teacher+mode+im
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+one+of+the+principles+is+that+everybody+who+is+part+of+the+community+gets+to+fight+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+hard+as+they+can+for+what+they+believe++but
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=were+all+disciplined+by+the+understanding+that+the+only+people+who+are+going+to+decide+you+know
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=whether+im+right+or+somebody+else+is+right+are+the+people+in+our+community+in+the+next+generation++in+thirty+and+fifty+years
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+its+this+combination+of+respect+for+the+tradition+and+community+were+in+and+rebellion+that+the+community+requires+to+get+anywhere+that
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+being+in+this+process+of+being+in+a+community+that+reasons+from+shared+evidence+to+conclusions
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+believe++teaches+us+about+democracy+not+only+is+there+a+relationship+between+the+ethics+of+science+and+the+ethics+of+being+a
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=citizen+in+democracy+but+there+has+been+historically+a+relationship+between+how+people+think+about+space+and+time
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+what+the+cosmos+is+and+how+people+think+about+the+society+that+they+live+in+and+i+want+to+talk+about+three+stages
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+that+evolution+the+first+science+of+cosmology+that+was+anything+like+science+was+aristotelian+science+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+earth+is+in+the+center++then+there+are+these+crystal+spheres+the+sun+the+moon+the+planets+and+finally+the+celestial+sphere+where+the+stars+are++and+everything+in+this+universe+has+a+place
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+aristotles+law+of+motion+was+that+everything+goes+to+its+natural+place+which+was+of+course+the+rule+of+the+society+that+aristotle+lived+in+and+more+importantly+the+medieval+society
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+idea+is+that+everything+is+defined+where+something+is+is+defined+with+respect+to+this+last+sphere++the+celestial+sphere+outside+of+which+is+this+eternal+perfect+realm++where+lives+god+who+is+the
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ultimate+judge+of+everything++so+that+is+both+aristotelian+cosmology++and+in+a+certain+sense+medieval
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+was+a+revolution+in+thinking+about
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=space+and+time+and+motion+and+so+forth+of+newton+and+at+the+same+time+there+was+a+revolution+in+social+thought
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+john+locke+and+his+collaborators+and+they+were+very+closely+associated+in+fact+newton+and+locke+were+friends++their+way+of+thinking+about
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+motion+on+the+one+hand++and+a+society+on+the+other+hand+were+closely+related++and+let+me+show+you+in+a+newtonian+universe+theres+no+center
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+particles+and+they+move+around+with+respect+to+a+fixed+absolute+framework+of+space+and+time+its+meaningful+to+say+absolutely+where+something+is
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+space+because+thats+defined+not+with+respect+to+say+where+other+things+are+but+with+respect+to+this+absolute+notion+of+space+which+for+newton
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+god++now++similarly+in+lockes+society
error: request timeout
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=individuals+who+have+certain+rights+properties+in+a+formal+sense
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+those+are+defined+with+respect+to+some+absolute++abstract+notions+of+rights+and+justice+and+so+forth
error: request timeout
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+independent+of+what+else+has+happened+in+the+society+of+who+else+there+is+of+the+history+and+so+forth
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+is+also+an+omniscient+observer+who+knows+everything+who+is+god+who+is+in+a+certain+sense+outside+the+universe++because+he+has+no+role+in+anything+that+happens
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+is+in+a+certain+sense+everywhere+because+space+is+just+the+way+that+god+knows+where+everything+is+according+to+newton
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+newtonian+physics++now++in+the+20th+century+we+had+a+revolution
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+was+initiated+at+the+beginning+of+the+20th+century++and+which+is+still+going+on+it+was+begun+with+the+invention+of+relativity+theory+and+quantum+theory+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=merging+them+together+to+make+the+final+quantum+theory+of+space+and+time+and+gravity
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now++and+in+this+universe+theres+nothing+fixed+and+absolute
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=zilch+ok+this+universe+is+described+by+being+a+network+of+relationships
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=space+is+just+one+aspect+so+theres+no+meaning+to+say+absolutely+where+something+is+theres+only+where+it+is+relative
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+everything+else+that+is+and+this+network
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+we+call+it+a+relational+universe+all+properties+of+things+are+about+these+kinds+of+relationships++and+also++if+youre+embedded+in+such+a+network+of+relationships++your+view
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+the+world+has+to+do+with+what+information+comes+to+you+through+the+network+of+relations+and+theres+no+place+for+an+omniscient+observer+or+an+outside+intelligence+knowing+everything+and+making
error: request timeout
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=general+relativity+this+is+quantum+theory+this+is+also+if+you+talk+to+legal+scholars+the+foundations+of+new+ideas+in+legal+thought
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=theyre+thinking+about+the+same+things+and+not+only+that+they+make+the+analogy+to+relativity+theory+and+cosmology+often++so+theres+an+interesting+discussion
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=going+on+there+this+last+view+of+cosmology+is+called+the+relational
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+main+slogan+here+is+that+theres+nothing+outside+the+universe++which+means+that+theres+no+place
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+put+an+explanation+for+something+outside++so+in+such+a+relational+universe+if+you+come+upon+something
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thats+ordered+and+structured+like+this+device+here+or+that+device+there+or+something+beautiful+like+all+the+living+things+all+of+you+guys+in+the+room
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=guys+in+physics+by+the+way+is+a
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+want+to+know+youre+a+person+you+want+to+know+how+is+it+made
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+in+a+relational+universe+the+only+possible+explanation+was+somehow+it+made+itself+there+must+be+mechanisms+of
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=inside+the+universe+that+make+things+because+theres+no+place+to+put+a+maker+outside+as+there+was+in+the
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+in+a+relational+universe+we+must+have+processes+of
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now++darwin+taught+us+that+there+are+processes+of
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+suffice+to+explain+all+of+us+and+everything+we+see+so+it+works+but+not+only+that++if+you+think+about+how+natural+selection+works
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=then+it+turns+out+that+natural+selection
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=would+only+make+sense+in+such+a+relational+universe+that+is+natural+selection
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=works+on+properties+like+fitness++which+are+about+relationships+of+some+species+to+some+other+species
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=darwin+wouldnt+make+sense+in+an+aristotelian+universe++and+wouldnt+really+make+sense+in+a+newtonian+universe
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+biology+based+on+natural+selection+requires+a+relational+notion
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+what+are+the+properties+of+biological+systems+and+if+you+push+that+all+the+way+down+really+it+makes+the+best+sense+in+a+relational+universe+where+all+properties+are+relational
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now++not+only+that+but+einstein+taught+us
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+gravity+is+the+result+of+the+world
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+it+wasnt+for+gravity+there+wouldnt+be+life+because+gravity
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=causes+stars+to+form+and+live+for+a+very+long+time+keeping+pieces+of+the+world+like+the+surface+of+the+earth+out+of+thermal+equilibrium+for+billions+of+years+so+life+can+evolve
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+20th+century+we+saw+the+independent+development+of+two+big+themes+in+science+in+the
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=biological+sciences+they+explored+the+implications+of+the+notion+that+order+and+complexity+and+structure+arise+in++a+self+organized+way
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=slowly+that+idea+is+leaking+out+to+the+cognitive+sciences+the+human+sciences+economics+et+cetera
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+the+same+time+we+physicists
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=trying+to+make+sense+of+and+build+on+and+integrate
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+discoveries+of+quantum+theory+and+relativity++and+what+weve+been+working+out+is+the+implications+really+of+the+idea+that+the+universe+is+made+up+of+relations
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=science+is+going+to+be+driven+by+the+integration+of+these+two+ideas++the+triumph+of+relational+ways+of+thinking+about+the+world+on+the+one+hand
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+also+is+that+in+the+21st+century+our+thinking+about+space+and+time+and+cosmology+and+our+thinking+about+society+are
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=both+going+to+continue+to+evolve++and+what+theyre+evolving+towards+is+the+union+of+these+two+big+ideas++darwinism+and+relationalism
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+new+pluralistic+notion+of+democracy+would+be+one+that+recognizes+that+there+are+many+different+interests+many+different+agendas+many+different+individuals+many
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=different+points+of+view++each+one+is+incomplete
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+youre+embedded+in+a+network+of+relationships++any+actor+in+a+democracy+is+embedded+in+a+network+of+relationships+and+you+understand+some+things+better+than+other+things
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+because+of+that+theres+a+continual+jostling
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+give+and+take+which+is
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=politics+and+politics+is+in+the+ideal+sense
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+way+in+which+we+continually+address+our+network+of+relations+in+order+to+achieve+a+better+life+and+a
found 0 videos: []
error: no video is found.
sleep 4 seconds to avoid blocking
------<1300>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LeilaHoteit_2016S.stm
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+an+innocent+question+from+my+young+daughter+alia+around+the+time+when+she+was+three
found 1 videos: [['/talks/leila_hoteit_3_lessons_on_success_from_an_arab_businesswoman', '2016']]
selected: /talks/leila_hoteit_3_lessons_on_success_from_an_arab_businesswoman
sleep 3 seconds to avoid blocking
------<1301>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LemnSissay_2012X.stm
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=eighteen+years+as+a+child+of+the+state+in+children+s+homes+and+foster+care++you+could+say+that+i+m+an+expert+on+the+subject
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+in+being+an+expert+i+want+to+let+you+know+that+being+an+expert
found 4 videos: [['/talks/margaret_heffernan_the_dangers_of_willful_blindness', '2013'], ['/talks/susan_cain_the_power_of_introverts', '2012'], ['/talks/jean_baptiste_michel_erez_lieberman_aiden_what_we_learned_from_5_million_books', '2011'], ['/talks/regina_dugan_from_mach_20_glider_to_hummingbird_drone', '2012']]
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+re+in+care++legally+the+government+is+your+parent+loco+parentis
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=laughter+let+s+not+talk+about+breastfeeding
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=harry+potter+was+a+foster+child
found 1 videos: [['/talks/lemn_sissay_a_child_of_the_state', '2012']]
selected: /talks/lemn_sissay_a_child_of_the_state
sleep 4 seconds to avoid blocking
------<1302>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LemonAndersen_2011Y.stm
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+suede+starters+jacket+says+raiders+on+the+back++i+m+stylin++smilin++lookin++real
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+it+ain+t+about+being+heard+just+being+seen+my+leather+adidas+baseball+cap+matches+my+fake+gucci+backpack+ain
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=t+nobody+who+looks+as+good+as+me
found 8 videos: [['/talks/richard_resnick_welcome_to_the_genomic_revolution', '2011'], ['/talks/david_pogue_cool_tricks_your_phone_can_do', '2009'], ['/talks/jack_horner_where_are_the_baby_dinosaurs', '2012'], ['/talks/mallika_sarabhai_dance_to_change_the_world', '2009'], ['/talks/bob_mankoff_anatomy_of_a_new_yorker_cartoon', '2013'], ['/talks/laurie_garrett_lessons_from_the_1918_flu', '2009'], ['/talks/jamie_drummond_let_s_crowdsource_the_world_s_goals', '2012'], ['/talks/roger_mcnamee_6_ways_to_save_the_internet', '2011']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+this+costs+money+it+sure+ain+t+free++and+i+gots+no+job+no+money+at+all+but+it+s+easy+to+steal+all+this+from+the+mall+parents+say+i+shouldn+t+but+i+knows+i+should
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=got+to+do+what+i+can+to+make+sure+i+look+good+and
found 7 videos: [['/talks/jane_mcgonigal_gaming_can_make_a_better_world', '2010'], ['/talks/paul_piff_does_money_make_you_mean', '2013'], ['/talks/hasan_elahi_fbi_here_i_am', '2011'], ['/talks/jonathan_eisen_meet_your_microbes', '2012'], ['/talks/jason_fried_why_work_doesn_t_happen_at_work', '2010'], ['/talks/tal_golesworthy_how_i_repaired_my_own_heart', '2012'], ['/talks/diebedo_francis_kere_how_to_build_with_clay_and_community', '2013']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=guess+it+makes+me+feel+special+inside
found 15 videos: [['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013'], ['/talks/don_norman_3_ways_good_design_makes_you_happy', '2009'], ['/talks/danny_hillis_understanding_cancer_through_proteomics', '2011'], ['/talks/ze_frank_my_web_playroom', '2010'], ['/talks/lemon_andersen_please_don_t_take_my_air_jordans', '2012'], ['/talks/danny_hillis_back_to_the_future_of_1994', '2012'], ['/talks/young_ha_kim_be_an_artist_right_now', '2013'], ['/talks/barry_schwartz_using_our_practical_wisdom', '2010'], ['/talks/nancy_duarte_the_secret_structure_of_great_talks', '2012'], ['/talks/barry_schuler_genomics_101', '2009'], ['/talks/david_birch_a_new_way_to_stop_identity_theft', '2012'], ['/talks/golan_levin_art_that_looks_back_at_you', '2009'], ['/talks/rebecca_saxe_how_we_read_each_other_s_minds', '2009'], ['/talks/eric_dishman_health_care_should_be_a_team_sport', '2013'], ['/talks/bruce_feiler_the_council_of_dads', '2011']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+m+wearing+fresh+gear+i+don+t+have+to+hide++and+i+really+must+get+some+new+gear+soon+or+my+ego+will+pop+like+a+10+cent+balloon+but+security+is+tight+at+all+the+shops+every+day+there+are+more
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+more+cops+my+crew+is+laughing+at+me+because+i+m+wearing+old+gear+school+s+almost+over++summer+is+near++and+i+m+sportin++torn+jordans
error: request timeout
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=catch+the+subway+downtown++check+out+my+victims+hangin++around+maybe+i+ll+get+lucky+and+find+easy+prey+got+to+get+some+new+gear+there+s+no+other+way++i+m+ready+and+willing+i+m+packing
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+gun+this+is+serious+business+this+ain+t+no+fun++and+i+can+t+have+my+posse+laughin++at+me
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=4th+near+the+park+brothers+shooting+hoops+and+someone+remarks++hey+homes+where+you+get+them+nik+s++i+says+to+myself++yeah+i
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=likes++em+i+likes++they+were+q+tip+white+bright+and+blinding+my+eyes+the+red+emblem+of+michael+looked+as+if+it+could+fly++not+one+spot+of+dirt+the+airs+were+brand+new+had
found 1 videos: [['/talks/lemon_andersen_please_don_t_take_my_air_jordans', '2012']]
selected: /talks/lemon_andersen_please_don_t_take_my_air_jordans
sleep 2 seconds to avoid blocking
------<1303>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LennartGreen_2005.stm
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=shortcuts++the+master+of+shortcuts+it+s+of+course++nature++but+i+will+demonstrate+different+ways
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=difficulties+and+go+to+the+point+to+find+an+answer+probably+much+quicker+than+arthur+did++so++first
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+violate+the+common+sense++the+logic+all+of+you+if+you+hold+your+hand+like+this++ninety+degrees
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+of+you++not+you++all+of+you++right++palm
found 5 videos: [['/talks/david_pogue_simplicity_sells', '2006'], ['/talks/daniel_goleman_why_aren_t_we_more_compassionate', '2007'], ['/talks/chris_abani_telling_stories_from_africa', '2007'], ['/talks/paul_bennett_design_is_in_the_details', '2007'], ['/talks/jeff_hawkins_how_brain_science_will_change_computing', '2007']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+do+this+the+common++the+logic+says+you+must+turn+the+wrist+do+you+agree
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=good++but+i+will+first+teach+you
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+method+how+you+can+do+it+without+moving+the+wrist++and+then+the+shortcut++you+can+do+it+immediately++right
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hold+the+hand+like+this+palm+up+don+t+move+the+wrist+the+wrist+is+i+doesn+t+speak+very+many+but+i+do+the+best+what+i+are
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=right+molded+you+say+with+iron+that+was+a+joke+actually++and+i
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hold+the+hand+palm+up+do+this++don+t+move+the+wrist++over+the+heart++don+t+move+the+wrist++forward+don+t+move+the+wrist
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=up++don+t+move+the+wrist++over+the+heart
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+have+got+to+this+position+from+this+without+moving+the+wrist+now+the+shortcut
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+it+was+six+six+moves++now+with+one+move++i+start+here++palm+down+you+can
found 5 videos: [['/talks/david_pogue_simplicity_sells', '2006'], ['/talks/martin_rees_is_this_our_final_century', '2007'], ['/talks/vs_ramachandran_3_clues_to_understanding_your_brain', '2007'], ['/talks/eve_ensler_happiness_in_body_and_soul', '2006'], ['/talks/jehane_noujaim_my_wish_a_global_day_of_film', '2006']]
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+i+need+an+assistant+i+talked+to+a+nice
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+can+sit+over+there+one+item+here+was+water++right++and+i+will+give+my+tribute
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+water+i+think+it+s+enough+with+water+for+me+the+other+guys+can+talk+about
found 1 videos: [['/talks/juan_enriquez_the_life_code_that_will_reshape_the_future', '2007']]
selected: /talks/juan_enriquez_the_life_code_that_will_reshape_the_future
sleep 5 seconds to avoid blocking
------<1304>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LeonardSusskind_2011X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+decided+when+i+was+asked+to+do+this+that+what+i+really+wanted+to+talk+about+was+my+friend+richard+feynman
found 1 videos: [['/talks/leonard_susskind_my_friend_richard_feynman', '2011']]
selected: /talks/leonard_susskind_my_friend_richard_feynman
sleep 4 seconds to avoid blocking
------<1305>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LesleyHazleton_2010X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=may+have+heard+about+the+koran+s+idea+of+paradise+being+seventy+two+virgins+and+i+promise+i+will+come+back+to+those+virgins+but+in+fact+here
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+northwest+we+re+living+very+close+to+the+real
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=since+i+live+on+a+houseboat+on+the+running+stream+of+lake+union
found 1 videos: [['/talks/lesley_hazleton_on_reading_the_koran', '2011']]
selected: /talks/lesley_hazleton_on_reading_the_koran
sleep 5 seconds to avoid blocking
------<1306>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LesleyHazleton_2013G.stm
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+a+strange+thing+to+do
found 10 videos: [['/talks/khadija_gbla_my_mother_s_strange_definition_of_empowerment', '2015'], ['/talks/alex_gendler_what_is_a_gift_economy', '2014'], ['/talks/martin_pistorius_how_my_mind_came_back_to_life_and_no_one_knew', '2015'], ['/talks/christoph_adami_finding_life_we_can_t_imagine', '2011'], ['/talks/alex_rosenthal_and_george_zaidan_the_case_of_the_missing_fractals', '2014'], ['/talks/danit_peleg_forget_shopping_soon_you_ll_download_your_new_clothes', '2015'], ['/talks/joshua_foer_feats_of_memory_anyone_can_do', '2012'], ['/talks/simon_berrow_how_do_you_save_a_shark_you_know_nothing_about', '2012'], ['/talks/bj_miller_what_really_matters_at_the_end_of_life', '2015'], ['/talks/alice_dreger_is_anatomy_destiny', '2011']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+a+journey+into+the+foreign+territory+of+somebody+else+s+life
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+journey+an+exploration+that+can+take+you+places+you+never+dreamed+of+going
found 1 videos: [['/talks/lesley_hazleton_the_doubt_essential_to_faith', '2013']]
selected: /talks/lesley_hazleton_the_doubt_essential_to_faith
sleep 4 seconds to avoid blocking
------<1307>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LeslieChang_2012G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=talk+a+little+bit+about+the+people+who+make+the+things+we+use+every+day+our+shoes+our+handbags+our+computers+and+cell+phones
found 1 videos: [['/talks/leslie_t_chang_the_voices_of_china_s_workers', '2012']]
selected: /talks/leslie_t_chang_the_voices_of_china_s_workers
sleep 5 seconds to avoid blocking
------<1308>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LeslieMorganSteiner_2012X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+today+to+talk+about+a+disturbing+question++which+has+an+equally+disturbing+answer
found 2 videos: [['/talks/leslie_morgan_steiner_why_domestic_violence_victims_don_t_leave', '2013'], ['/talks/hanna_rosin_new_data_on_the_rise_of_women', '2010']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+topic+is+the+secrets+of+domestic+violence+and+the+question+i+m+going+to+tackle
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+the+one+question+everyone+always+asks+why
found 7 videos: [['/talks/shlomo_benartzi_saving_for_tomorrow_tomorrow', '2012'], ['/talks/robin_nagle_what_i_discovered_in_new_york_city_trash', '2013'], ['/talks/leslie_morgan_steiner_why_domestic_violence_victims_don_t_leave', '2013'], ['/talks/dan_pallotta_the_way_we_think_about_charity_is_dead_wrong', '2013'], ['/talks/yoruba_richen_what_the_gay_rights_movement_learned_from_the_civil_rights_movement', '2014'], ['/talks/sheryl_sandberg_so_we_leaned_in_now_what', '2014'], ['/talks/manal_al_sharif_a_saudi_woman_who_dared_to_drive', '2013']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=does+she+stay++why+would+anyone+stay+with+a+man+who+beats+her
found 6 videos: [['/talks/leslie_morgan_steiner_why_domestic_violence_victims_don_t_leave', '2013'], ['/talks/andrew_stanton_the_clues_to_a_great_story', '2012'], ['/talks/eric_x_li_a_tale_of_two_political_systems', '2013'], ['/talks/romulus_whitaker_the_real_danger_lurking_in_the_water', '2010'], ['/talks/cameron_herold_let_s_raise_kids_to_be_entrepreneurs', '2010'], ['/talks/tim_jackson_an_economic_reality_check', '2010']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+not+a+psychiatrist+a+social+worker+or+an+expert+in+domestic+violence++i+m+just+one+woman+with+a+story+to+tell
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+twenty+two+i+had+just+graduated+from+harvard+college++i+had+moved+to+new+york+city+for
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+first+job+as+a+writer+and+editor+at+seventeen+magazine
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+had+my+first+apartment+my+first+little+green+american+express+card++and+i+had+a+very+big+secret
error: request timeout
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=loaded+with+hollow+point+bullets+pointed+at+my+head
found 1 videos: [['/talks/leslie_morgan_steiner_why_domestic_violence_victims_don_t_leave', '2013']]
selected: /talks/leslie_morgan_steiner_why_domestic_violence_victims_don_t_leave
sleep 3 seconds to avoid blocking
------<1309>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LewisPugh_2009G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=today+i+want+to+talk+to+you+about+swimming+across+the+north+pole
found 3 videos: [['/talks/lewis_pugh_how_i_swam_the_north_pole', '2009'], ['/talks/lewis_pugh_my_mind_shifting_everest_swim', '2010'], ['/talks/barbara_block_tagging_tuna_in_the_deep_ocean', '2010']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=across+the+most+northern+place+in+the+whole+world+and+perhaps+the+best+place+to+start+is+with+my+late+father++he+was+a+great+storyteller
found 1 videos: [['/talks/lewis_pugh_how_i_swam_the_north_pole', '2009']]
selected: /talks/lewis_pugh_how_i_swam_the_north_pole
sleep 3 seconds to avoid blocking
------<1310>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LewisPugh_2010G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=last+year+when+i+was+here+i+was+speaking+to+you+about+a+swim+which+i+did+across+the+north+pole
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+while+that+swim+took+place+three+years+ago+i+can+remember+it+as+if+it+was+yesterday
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+remember+standing+on+the+edge+of+the+ice+about+to+dive+into+the+water
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+thinking+to+myself+i+have+never
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ever+seen+any+place+on+this+earth+which+is+just+so+frightening+the+water+is+completely+black
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+water+is+minus+one+point+seven+degrees+centigrade+or+twenty+nine+degrees+fahrenheit
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+flipping+freezing+in+that+water
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+a+thought+came+across+my+mind+if+things
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+this+swim+how+long+will+it+take+for+my+frozen+body
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+sink+the+four+and+a+half+kilometers
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+the+bottom+of+the+ocean++and+then+i+said+to+myself+i+ve+just+got+to+get+this+thought+out+of+my+mind+as+quickly+as+possible
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+only+way+i+can+dive+into+that+freezing+cold+water+and+swim+a+kilometer
found 1 videos: [['/talks/lewis_pugh_my_mind_shifting_everest_swim', '2010']]
selected: /talks/lewis_pugh_my_mind_shifting_everest_swim
sleep 3 seconds to avoid blocking
------<1311>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LeylaAcaroglu_2013.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+supermarket+you+re+buying+some+groceries++and+you+get+given+the+option+for+a+plastic+or+a+paper+shopping+bag
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+one+do+you+choose+if+you+want+to+do+the+right+thing+by+the+environment
found 11 videos: [['/talks/io_tillett_wright_fifty_shades_of_gay', '2013'], ['/talks/leyla_acaroglu_paper_beats_plastic_how_to_rethink_environmental_folklore', '2014'], ['/talks/alice_bows_larkin_climate_change_is_happening_here_s_how_we_adapt', '2015'], ['/talks/alex_steffen_the_shareable_future_of_cities', '2011'], ['/talks/sebastian_deterding_what_your_designs_say_about_you', '2012'], ['/talks/elon_musk_the_mind_behind_tesla_spacex_solarcity', '2013'], ['/talks/scott_dinsmore_how_to_find_work_you_love', '2015'], ['/talks/bill_ford_a_future_beyond_traffic_gridlock', '2011'], ['/talks/pamela_ronald_the_case_for_engineering_our_food', '2015'], ['/talks/rory_sutherland_perspective_is_everything', '2012'], ['/talks/meera_vijayann_find_your_voice_against_gender_violence', '2014']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=most+people+do+pick+the+paper++okay+let+s+think+of+why
found 2 videos: [['/talks/david_kwong_two_nerdy_obsessions_meet_and_it_s_magic', '2014'], ['/talks/sandra_fisher_martins_the_right_to_understand', '2011']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+brown+to+start+with+therefore+it+must+be+good+for+the+environment++it+s+biodegradable++it+s+reusable+in+some+cases+it+s+recyclable
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+when+people+are+looking+at+the+plastic+bag+it+s+likely+they+re+thinking+of+something+like+this
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+we+all+know+is+absolutely+terrible+and+we+should+be+avoiding+at+all+expenses+these+kinds+of+environmental+damages+but
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+are+often+not+thinking+of+something+like+this
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+the+other+end+of+the+spectrum+when+we+produce+materials+we+need+to+extract+them+from+the+environment+and+we+need+a+whole+bunch+of+environmental+impacts
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+see+what+happens+is+when+we+need+to+make+complex+choices+us+humans+like+really+simple+solutions++and+so+we+often+ask+for+simple+solutions++and+i
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+very+complex+and+we+ll+have+to+spend+four+hours+talking+about+what+exactly+an+eco+material+means+because+everything+at+some+point+comes+from+nature
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+s+how+you+use+the+material+that+dictates+the+environmental+impact
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+what+happens+is+we+have+to+rely+on+some+sort+of+intuitive+framework+when+we+make+decisions+so+i+like+to+call+that
error: request timeout
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+either+the+little+voice+at+the+back+of+your+head
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+it+s+that+gut+feeling+you+get+when+you+ve+done+the+right+thing++so+when+you+ve+picked+the+paper+bag+or+when+you+ve+bought+a+fuel+efficient+car
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+environmental+folklore+is+a+really+important+thing+because+we+re+trying+to+do+the+right+thing++but+how+do+we+know+if+we+re+actually+reducing+the+net+environmental
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+our+actions+as+individuals+and+as+professionals+and+as+a+society+are+actually+having+on+the+natural+environment
found 1 videos: [['/talks/leyla_acaroglu_paper_beats_plastic_how_to_rethink_environmental_folklore', '2014']]
selected: /talks/leyla_acaroglu_paper_beats_plastic_how_to_rethink_environmental_folklore
sleep 1 seconds to avoid blocking
------<1312>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LeymahGbowee_2012.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=many+times+i+go+around+the+world+to+speak++and+people+ask+me+questions+about+the+challenges
found 8 videos: [['/talks/leymah_gbowee_unlock_the_intelligence_passion_greatness_of_girls', '2012'], ['/talks/glenn_greenwald_why_privacy_matters', '2014'], ['/talks/jackson_katz_violence_against_women_it_s_a_men_s_issue', '2013'], ['/talks/simon_anholt_which_country_does_the_most_good_for_the_world', '2014'], ['/talks/sheryl_sandberg_so_we_leaned_in_now_what', '2014'], ['/talks/james_randi_homeopathy_quackery_and_fraud', '2010'], ['/talks/shereen_el_feki_a_little_told_tale_of_sex_and_sensuality', '2014'], ['/talks/rachel_botsman_the_case_for_collaborative_consumption', '2010']]
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=single+mother+of+four+three+months+after+the+birth+of+my+fourth+child++i+went+to+do+a+job
found 1 videos: [['/talks/leymah_gbowee_unlock_the_intelligence_passion_greatness_of_girls', '2012']]
selected: /talks/leymah_gbowee_unlock_the_intelligence_passion_greatness_of_girls
sleep 3 seconds to avoid blocking
------<1313>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LianPinKoh_2013G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+we+think+of+nepal++we+tend+to+think+of+the+snow+capped+mountains+of+the+himalayas
found 1 videos: [['/talks/lian_pin_koh_a_drone_s_eye_view_of_conservation', '2013']]
selected: /talks/lian_pin_koh_a_drone_s_eye_view_of_conservation
sleep 5 seconds to avoid blocking
------<1314>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LidiaYuknavitch_2016.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+know+ted+is+about+a+lot+of+things+that+are+big+but+i+want+to+talk+to+you+about+something+very+small++so+small+it+s+a+single+word
found 2 videos: [['/talks/gretchen_carlson_david_brooks_political_common_ground_in_a_polarized_united_states', '2017'], ['/talks/elon_musk_the_future_we_re_building_and_boring', '2017']]
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+one+of+my+favorite+words+because+it+s+so+literal
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+mean+it+s+a+person+who+sort+of+missed+fitting+in+or+a+person+who+fits+in+badly
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+this+a+person+who+is+poorly+adapted+to+new+situations+and+environments
found 1 videos: [['/talks/lidia_yuknavitch_the_beauty_of_being_a_misfit', '2016']]
selected: /talks/lidia_yuknavitch_the_beauty_of_being_a_misfit
sleep 3 seconds to avoid blocking
------<1315>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LindaCliattWayman_2015W.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+first+day+as+a+principal++but+hardly+my+first+day
found 3 videos: [['/talks/linda_cliatt_wayman_how_to_fix_a_broken_school_lead_fearlessly_love_hard', '2015'], ['/talks/jeff_speck_4_ways_to_make_a_city_more_walkable', '2017'], ['/talks/julie_lythcott_haims_how_to_raise_successful_kids_without_over_parenting', '2016']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+school+district+of+philadelphia++i+graduated+from+philadelphia+public+schools
found 1 videos: [['/talks/linda_cliatt_wayman_how_to_fix_a_broken_school_lead_fearlessly_love_hard', '2015']]
selected: /talks/linda_cliatt_wayman_how_to_fix_a_broken_school_lead_fearlessly_love_hard
sleep 1 seconds to avoid blocking
------<1316>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LindaHill_2014X.stm
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+a+business+professor+whose+ambition+has+been+to+help+people+learn+to+lead
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+recently+i+ve+discovered+that+what+many+of+us+think+of+as+great+leadership+does+not+work+when+it+comes+to+leading+innovation
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+an+ethnographer+i+use+the+methods+of+anthropology+to+understand+the+questions+in+which+i+m+interested++so+along+with
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+spent+nearly+a+decade+observing+up+close+and+personal+exceptional+leaders+of+innovation
found 1 videos: [['/talks/linda_hill_how_to_manage_for_collective_creativity', '2015']]
selected: /talks/linda_hill_how_to_manage_for_collective_creativity
sleep 5 seconds to avoid blocking
------<1317>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LindaLiukas_2015X.stm
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+seventies++it+was+punk+music+that+drove+the+whole+generation+in+the+eighties+it+was+probably+money
found 1 videos: [['/talks/linda_liukas_a_delightful_way_to_teach_kids_about_computers', '2016']]
selected: /talks/linda_liukas_a_delightful_way_to_teach_kids_about_computers
sleep 1 seconds to avoid blocking
------<1318>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LinusTorvalds_2016.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+such+a+strange+thing+your+software+linux
found 1 videos: [['/talks/linus_torvalds_the_mind_behind_linux', '2016']]
selected: /talks/linus_torvalds_the_mind_behind_linux
sleep 4 seconds to avoid blocking
------<1319>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LisaBu_2013.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+trained+to+become+a+gymnast+for+two+years+in+hunan+china+in+the+1970s
found 1 videos: [['/talks/lisa_bu_how_books_can_open_your_mind', '2013']]
selected: /talks/lisa_bu_how_books_can_open_your_mind
sleep 2 seconds to avoid blocking
------<1320>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LisaDyson_2016S.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+part+of+a+crew+of+astronauts
found 4 videos: [['/talks/angelo_vermeulen_how_to_go_to_space_without_having_to_go_to_space', '2015'], ['/talks/lisa_dyson_a_forgotten_space_age_technology_could_change_how_we_grow_food', '2016'], ['/talks/benjamin_grant_what_it_feels_like_to_see_earth_from_space', '2017'], ['/talks/chris_hadfield_what_i_learned_from_going_blind_in_space', '2014']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=traveling+to+mars+or+some+distant+planet+the+travel+time+could+take+a+year+or+even+longer
found 1 videos: [['/talks/lisa_dyson_a_forgotten_space_age_technology_could_change_how_we_grow_food', '2016']]
selected: /talks/lisa_dyson_a_forgotten_space_age_technology_could_change_how_we_grow_food
sleep 5 seconds to avoid blocking
------<1321>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LisaGansky_2011S.stm
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=speaking+to+you+about+what+i+call+the+mesh+it+s+essentially+a+fundamental+shift
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+our+relationship+with+stuff+with+the+things+in+our+lives+and+it+s+starting+to+look+at+not+always+and+not+for+everything
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+in+certain+moments+of+time+access+to+certain+kinds+of+goods+and
found 16 videos: [['/talks/lisa_gansky_the_future_of_business_is_the_mesh', '2011'], ['/talks/jamie_drummond_let_s_crowdsource_the_world_s_goals', '2012'], ['/talks/sam_harris_science_can_answer_moral_questions', '2010'], ['/talks/diana_laufenberg_how_to_learn_from_mistakes', '2010'], ['/talks/stefana_broadbent_how_the_internet_enables_intimacy', '2009'], ['/talks/alessandro_acquisti_what_will_a_future_without_secrets_look_like', '2013'], ['/talks/hasan_elahi_fbi_here_i_am', '2011'], ['/talks/paul_piff_does_money_make_you_mean', '2013'], ['/talks/lawrence_lessig_re_examining_the_remix', '2010'], ['/talks/liz_coleman_a_call_to_reinvent_liberal_arts_education', '2009'], ['/talks/taryn_simon_photographs_of_secret_sites', '2009'], ['/talks/clay_shirky_how_social_media_can_make_history', '2009'], ['/talks/jason_fried_why_work_doesn_t_happen_at_work', '2010'], ['/talks/kelly_mcgonigal_how_to_make_stress_your_friend', '2013'], ['/talks/brian_goldman_doctors_make_mistakes_can_we_talk_about_that', '2012'], ['/talks/evgeny_morozov_how_the_net_aids_dictatorships', '2009']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=service+will+trump+ownership+of+them
found 2 videos: [['/talks/lisa_gansky_the_future_of_business_is_the_mesh', '2011'], ['/talks/rachel_botsman_the_case_for_collaborative_consumption', '2010']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+it+s+the+pursuit+of+better+things+easily+shared+and+we+come+from+a+long+tradition+of+sharing+we+ve+shared+transportation++we+ve+shared+wine+and+food
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+other+sorts+of+fabulous+experiences+in+coffee+bars+in+amsterdam
found 1 videos: [['/talks/lisa_gansky_the_future_of_business_is_the_mesh', '2011']]
selected: /talks/lisa_gansky_the_future_of_business_is_the_mesh
sleep 3 seconds to avoid blocking
------<1322>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LisaGenova_2017.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+many+people+here+would+like+to+live+to+be+at+least+eighty+years+old
found 12 videos: [['/talks/laura_boushnak_the_deadly_legacy_of_cluster_bombs', '2016'], ['/talks/vivek_maru_how_to_put_the_power_of_law_in_people_s_hands', '2018'], ['/talks/christian_picciolini_my_descent_into_america_s_neo_nazi_movement_and_how_i_got_out', '2018'], ['/talks/andrew_peek_how_your_personal_narrative_limits_your_future', '2019'], ['/talks/dave_isay_everyone_around_you_has_a_story_the_world_needs_to_hear', '2015'], ['/talks/clemantine_wamariya_war_and_what_comes_after', '2018'], ['/talks/samantha_nutt_the_real_harm_of_the_global_arms_trade', '2016'], ['/talks/jim_simons_the_mathematician_who_cracked_wall_street', '2015'], ['/talks/marian_wright_edelman_reflections_from_a_lifetime_fighting_to_end_child_poverty', '2019'], ['/talks/ivan_coyote_why_we_need_gender_neutral_bathrooms', '2016'], ['/talks/susan_pinker_the_secret_to_living_longer_may_be_your_social_life', '2017'], ['/talks/shameem_akhtar_to_learn_is_to_be_free', '2018']]
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+we+all+have+this+hopeful+expectation+of+living+into+old+age++let+s+project+out+into+the+future+to+your+future
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+everyone+look+at+two+people+one+of+you+probably+has+alzheimer+s+disease
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+some+way+this+terrifying+disease+is+likely+to+affect+us+all
found 2 videos: [['/talks/lisa_genova_what_you_can_do_to_prevent_alzheimer_s', '2017'], ['/talks/nadine_burke_harris_how_childhood_trauma_affects_health_across_a_lifetime', '2015']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=part+of+the+fear+around+alzheimer+s+stems+from+the+sense+that+there+s+nothing+we+can+do+about+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=despite+decades+of+research+we+still+have+no+disease+modifying+treatment+and+no+cure
found 1 videos: [['/talks/lisa_genova_what_you_can_do_to_prevent_alzheimer_s', '2017']]
selected: /talks/lisa_genova_what_you_can_do_to_prevent_alzheimer_s
sleep 2 seconds to avoid blocking
------<1323>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LisaHarouni_2011S.stm
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+you+can+download+products+from+the+web+product+data+i+should+say+from+the+web
found 6 videos: [['/talks/lisa_harouni_a_primer_on_3d_printing', '2012'], ['/talks/massimo_banzi_how_arduino_is_open_sourcing_imagination', '2012'], ['/talks/daniel_suarez_the_kill_decision_shouldn_t_belong_to_a_robot', '2013'], ['/talks/james_lyne_everyday_cybercrime_and_what_you_can_do_about_it', '2013'], ['/talks/paul_snelgrove_a_census_of_the_ocean', '2012'], ['/talks/michael_nielsen_open_science_now', '2011']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=perhaps+tweak+it+and+personalize+it+to+your+own+preference+or+your+own+taste+and+have+that+information
found 1 videos: [['/talks/lisa_harouni_a_primer_on_3d_printing', '2012']]
selected: /talks/lisa_harouni_a_primer_on_3d_printing
sleep 4 seconds to avoid blocking
------<1324>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LisaKristine_2012X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+one+hundred+and+fifty+feet
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=down+an+illegal+mine+shaft+in+ghana
found 1 videos: [['/talks/lisa_kristine_photos_that_bear_witness_to_modern_slavery', '2012']]
selected: /talks/lisa_kristine_photos_that_bear_witness_to_modern_slavery
sleep 5 seconds to avoid blocking
------<1325>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LisaMargonelli_2010X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+m+going+to+talk+to+you+about+you+about+the+political+chemistry+of+oil+spills+and+why+this+is+an+incredibly+important++long++oily+hot+summer+and+why+we+need+to+keep+ourselves+from+getting+distracted
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+before+i+talk+about+the+political+chemistry
found 2 videos: [['/talks/lisa_margonelli_the_political_chemistry_of_oil', '2010'], ['/talks/paul_gilding_the_earth_is_full', '2012']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=actually+need+to+talk+about+the+chemistry+of+oil++this+is+a+photograph+from+when+i+visited
found 1 videos: [['/talks/lisa_margonelli_the_political_chemistry_of_oil', '2010']]
selected: /talks/lisa_margonelli_the_political_chemistry_of_oil
sleep 2 seconds to avoid blocking
------<1326>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LisaNip_2015X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+there+are+lands+few+and+far+between+on+earth+itself+that+are+hospitable+to+humans+by+any+measure
found 1 videos: [['/talks/lisa_nip_how_humans_could_evolve_to_survive_in_space', '2016']]
selected: /talks/lisa_nip_how_humans_could_evolve_to_survive_in_space
sleep 5 seconds to avoid blocking
------<1327>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LiuBolin_2013.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+making+myself+invisible+i+try+to+explore+and+question+the+contradictory+and
found 1 videos: [['/talks/liu_bolin_the_invisible_man', '2013']]
selected: /talks/liu_bolin_the_invisible_man
sleep 1 seconds to avoid blocking
------<1328>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LizaDonnelly_2010W.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+afraid+of+womanhood++not+that+i+m+not+afraid+now+but+i+ve+learned+to+pretend+i+ve+learned+to+be+flexible
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+fact+i+ve+developed+some+interesting+tools+to+help+me+deal+with+this+fear+let+me+explain+back+in
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the++50s+and++60s+when+i+was+growing+up+little+girls+were+supposed+to+be+kind+and+thoughtful+and+pretty+and+gentle+and+soft
found 1 videos: [['/talks/liza_donnelly_drawing_on_humor_for_change', '2011']]
selected: /talks/liza_donnelly_drawing_on_humor_for_change
sleep 3 seconds to avoid blocking
------<1329>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LizColeman_2009.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=college+presidents+are+not+the+first+people+who+come+to+mind
found 10 videos: [['/talks/liz_coleman_a_call_to_reinvent_liberal_arts_education', '2009'], ['/talks/david_brooks_the_social_animal', '2011'], ['/talks/sarah_jones_a_one_woman_global_village', '2009'], ['/talks/kathryn_schulz_on_being_wrong', '2011'], ['/talks/mae_jemison_teach_arts_and_sciences_together', '2009'], ['/talks/hector_ruiz_the_thinking_behind_50x15', '2008'], ['/talks/william_mcdonough_cradle_to_cradle_design', '2007'], ['/talks/bernie_dunlap_the_life_long_learner', '2008'], ['/talks/raghava_kk_my_5_lives_as_an_artist', '2010'], ['/talks/bruce_feiler_the_council_of_dads', '2011']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+the+subject+is+the+uses+of+the+creative+imagination+so+i+thought+i+d+start+by+telling+you+how+i+got+here++the+story+begins+in+the+late
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+invited+to+meet+with+leading+educators+from+the+newly+free+eastern+europe+and+russia
found 1 videos: [['/talks/liz_coleman_a_call_to_reinvent_liberal_arts_education', '2009']]
selected: /talks/liz_coleman_a_call_to_reinvent_liberal_arts_education
sleep 4 seconds to avoid blocking
------<1330>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LizDiller_2007P.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=aside+from+keeping+the+rain+out+and+and+producing+some
found 1 videos: [['/talks/liz_diller_the_blur_building_and_other_tech_empowered_architecture', '2008']]
selected: /talks/liz_diller_the_blur_building_and_other_tech_empowered_architecture
sleep 3 seconds to avoid blocking
------<1331>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LizDiller_2012.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+conventionally+divide+space+into+private+and+public+realms++and+we+know+these+legal+distinctions+very+well+because+we+ve+become+experts+at+protecting+our
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=private+property+and+private+space++but+we+re+less+attuned+to+the+nuances+of
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+translates+generic+public+space+into+qualitative+space+i+mean+this+is+something+that+our+studio+has+been+working+on+for+the+past+decade++and+we+re+doing+this+through+some+case+studies
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+large+chunk+of+our+work+has+been+put+into+transforming+this+neglected+industrial+ruin+into+a+viable+post+industrial+space+that+looks+forward+and+backward+at+the+same+time
found 1 videos: [['/talks/liz_diller_a_new_museum_wing_in_a_giant_bubble', '2012']]
selected: /talks/liz_diller_a_new_museum_wing_in_a_giant_bubble
sleep 4 seconds to avoid blocking
------<1332>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LordNicholasStern_2014S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+remarkable+moment+in+time++we+face+over+the+next+two+decades+two+fundamental+transformations
found 1 videos: [['/talks/lord_nicholas_stern_the_state_of_the_climate_and_what_we_might_do_about_it', '2014']]
selected: /talks/lord_nicholas_stern_the_state_of_the_climate_and_what_we_might_do_about_it
sleep 5 seconds to avoid blocking
------<1333>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LorettaNapoleoni_2009G.stm
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=actually+interacts+with+our+daily+life++fifteen+years+ago+i+received+a+phone+call+from+a+friend+at+the+time+he+was+looking+after+the+rights+of+political
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+asked+me+if+i+wanted+to+interview+the+red+brigades++now+as+many+of+you+may+remember+the+red+brigades+was
found 1 videos: [['/talks/loretta_napoleoni_the_intricate_economics_of_terrorism', '2009']]
selected: /talks/loretta_napoleoni_the_intricate_economics_of_terrorism
sleep 1 seconds to avoid blocking
------<1334>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LorrieCranor_2014X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=computer+science+and+engineering+professor+here+at+carnegie+mellon+and+my+research+focuses+on+usable+privacy+and+security
found 1 videos: [['/talks/lorrie_faith_cranor_what_s_wrong_with_your_pa_w0rd', '2014']]
selected: /talks/lorrie_faith_cranor_what_s_wrong_with_your_pa_w0rd
sleep 4 seconds to avoid blocking
------<1335>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LouieSchwartzberg_2011U.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+great+being+here+at+ted
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know+i+think+there+might+be+some+presentations+that+will+go+over+my+head+but+the+most+amazing+concepts+are+the+ones+that+go+right+under+my+feet
error: request timeout
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sometimes+that+we+forget+about+like+pollination+that+we+take+for+granted
found 1 videos: [['/talks/louie_schwartzberg_the_hidden_beauty_of_pollination', '2011']]
selected: /talks/louie_schwartzberg_the_hidden_beauty_of_pollination
sleep 2 seconds to avoid blocking
------<1336>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LouieSchwartzberg_2011X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+moved+to+northern+california+and+i+lived+in+a+little+town+called+elk+on+the+mendocino+coast
found 1 videos: [['/talks/louie_schwartzberg_nature_beauty_gratitude', '2012']]
selected: /talks/louie_schwartzberg_nature_beauty_gratitude
sleep 3 seconds to avoid blocking
------<1337>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LouieSchwartzberg_2014.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+is+the+intersection+between+technology++art+and+science
found 3 videos: [['/talks/louie_schwartzberg_hidden_miracles_of_the_natural_world', '2014'], ['/talks/jedidah_isler_the_untapped_genius_that_could_change_science_for_the_better', '2015'], ['/talks/wanis_kabbaj_what_a_driverless_world_could_look_like', '2016']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=curiosity+and+wonder+because+it+drives+us+to+explore++because+we+re+surrounded+by
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=things+we+can+t+see+and+i+love+to+use+film
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+take+us+on+a+journey+through+portals+of+time+and+space+to+make+the+invisible+visible
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+what+that+does+it+expands+our+horizons+it+transforms+our+perception+it+opens+our+minds
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+touches+our+heart+so+here+are+some+scenes+from+my+3d+imax+film+mysteries+of+the+unseen
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+is+movement+which+is+too+slow+for+our+eyes+to+detect
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+time+lapse+makes+us+discover+and+broaden+our+perspective+of+life
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+can+see+how+organisms+emerge+and+grow
error: request timeout
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+creeping+from+the+forest+floor+to+look+at+the+sunlight
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+grand+scale+time+lapse+allows+us+to+see+our+planet+in+motion
found 1 videos: [['/talks/louie_schwartzberg_hidden_miracles_of_the_natural_world', '2014']]
selected: /talks/louie_schwartzberg_hidden_miracles_of_the_natural_world
sleep 1 seconds to avoid blocking
------<1338>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LouiseFresco_2009.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+not+at+all+a+cook++so+don+t+fear+this+is+not+going+to+be+a+cooking+demonstration++but+i+do+want+to+talk+to+you+about+something+that+i+think+is+dear+to+all+of+us+and+that+is+bread+something+which+is+as+simple
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+our+basic++most+fundamental+human+staple++and+i+think+few+of+us
found 1 videos: [['/talks/louise_fresco_we_need_to_feed_the_whole_world', '2009']]
selected: /talks/louise_fresco_we_need_to_feed_the_whole_world
sleep 4 seconds to avoid blocking
------<1339>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LouiseLeakey_2008.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+belong+to+the+family+called+the+hominidae
found 1 videos: [['/talks/louise_leakey_a_dig_for_humanity_s_origins', '2008']]
selected: /talks/louise_leakey_a_dig_for_humanity_s_origins
sleep 4 seconds to avoid blocking
------<1340>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LucaTurin_2005.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+fragrance+that+you+will+smell+you+will+never+be+able+to+smell+this+way+again+its+a+fragrance+called+beyond+paradise+which+you+can+find+in+any+store+in+the+nation+except+here+its+been+split+up+in+parts
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+by+the+perfumer+who+did+it++calice+becker++and+i+m+most+grateful+to+them+for+this
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+its+been+split+up+in+successive+bits+and+a+chord+so+what+youre+smelling+now
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+the+top+note++and+then+will+come+what+they+call+the+heart++the+lush+heart+note+i+will+show+it+to+you
found 1 videos: [['/talks/helen_fisher_why_we_love_why_we_cheat', '2006']]
selected: /talks/helen_fisher_why_we_love_why_we_cheat
sleep 4 seconds to avoid blocking
------<1341>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LucianneWalkowicz_2011G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=planetary+systems+outside+our+own+are+like+distant+cities
found 1 videos: [['/talks/lucianne_walkowicz_finding_planets_around_other_stars', '2011']]
selected: /talks/lucianne_walkowicz_finding_planets_around_other_stars
sleep 2 seconds to avoid blocking
------<1342>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LucianneWalkowicz_2015U.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+re+at+a+tipping+point+in+human+history+a+species+poised+between+gaining+the+stars+and+losing+the+planet+we+call+home
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=even+in+just+the+past+few+years+we+ve+greatly+expanded+our+knowledge+of+how+earth+fits+within+the+context+of+our+universe++nasa+s+kepler+mission+has
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=discovered+thousands+of+potential+planets+around+other+stars+indicating+that+earth+is+but+one+of+billions+of+planets+in+our+galaxy
found 1 videos: [['/talks/lucianne_walkowicz_let_s_not_use_mars_as_a_backup_planet', '2015']]
selected: /talks/lucianne_walkowicz_let_s_not_use_mars_as_a_backup_planet
sleep 3 seconds to avoid blocking
------<1343>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LucienEngelen_2011X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+would+like+to+talk+to+you+about+why+many+ehealth+projects+fail
found 1 videos: [['/talks/lucien_engelen_crowdsource_your_health', '2012']]
selected: /talks/lucien_engelen_crowdsource_your_health
sleep 4 seconds to avoid blocking
------<1344>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LucyKalanithi_2016P.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+few+days+after+my+husband+paul
found 4 videos: [['/talks/lucy_kalanithi_what_makes_life_worth_living_in_the_face_of_death', '2017'], ['/talks/bill_and_melinda_gates_why_giving_away_our_wealth_has_been_the_most_satisfying_thing_we_ve_done', '2014'], ['/talks/priya_vulchi_and_winona_guo_what_it_takes_to_be_racially_literate', '2018'], ['/talks/sarah_lewis_embrace_the_near_win', '2014']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+diagnosed+with+stage+iv+lung+cancer++we+were+lying+in+our+bed+at+home++and+paul+said+it
found 1 videos: [['/talks/lucy_kalanithi_what_makes_life_worth_living_in_the_face_of_death', '2017']]
selected: /talks/lucy_kalanithi_what_makes_life_worth_living_in_the_face_of_death
sleep 5 seconds to avoid blocking
------<1345>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LucyMcRae_2012.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+call+myself+a+body+architect++i+trained+in+classical+ballet+and+have+a+background+in+architecture+and+fashion
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+a+body+architect++i+fascinate+with+the+human+body+and+explore+how+i+can+transform+it
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+worked+at+philips+electronics+in+the+far+future+design+research+lab++looking+twenty+years+into+the+future
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+explored+the+human+skin+and+how+technology+can+transform+the+body
found 2 videos: [['/talks/lucy_mcrae_how_can_technology_transform_the_human_body', '2012'], ['/talks/louie_schwartzberg_hidden_miracles_of_the_natural_world', '2014']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+worked+on+concepts+like+an+electronic+tattoo++which+is+augmented+by+touch+or+dresses+that+blushed+and+shivered+with+light
found 1 videos: [['/talks/lucy_mcrae_how_can_technology_transform_the_human_body', '2012']]
selected: /talks/lucy_mcrae_how_can_technology_transform_the_human_body
sleep 5 seconds to avoid blocking
------<1346>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LudwickMarishane_2012S.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+grew+up+in+limpopo+on+the+border+of+limpopo+and+mpumalanga+a+little+town+called+motetema+water+and+electricity+supply+are+as+unpredictable+as+the+weather
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+growing+up+in+these+tough+situations+at+the+age+of+seventeen+i+was+relaxing+with+a+couple+of+friends+of+mine+in+winter
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+were+sunbathing+the+limpopo+sun+gets+really+hot+in+winter
found 1 videos: [['/talks/ludwick_marishane_a_bath_without_water', '2012']]
selected: /talks/ludwick_marishane_a_bath_without_water
sleep 3 seconds to avoid blocking
------<1347>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LuisVonAhn_2011X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=had+to+fill+out+some+sort+of+web+form+where+you+ve+been+asked+to+read+a+distorted+sequence+of+characters+like+this+how+many+of+you+found+it+really+really+annoying
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=okay+outstanding+so+i+invented+that+or
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+the+people+who+did+it+that+thing+is+called+a+captcha++and+the+reason+it+is+there+is+to+make+sure+you+the+entity+filling+out+the+form+are+actually+a+human+and+not+some+sort+of+computer+program+that+was+written+to+submit+the+form+millions+and+millions+of+times
found 1 videos: [['/talks/luis_von_ahn_massive_scale_online_collaboration', '2011']]
selected: /talks/luis_von_ahn_massive_scale_online_collaboration
sleep 5 seconds to avoid blocking
------<1348>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LukeSyson_2013X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=two+years+ago++i+have+to+say+there+was+no+problem+two+years+ago+i+knew+exactly+what+an+icon+looked+like++it+looks+like+this
found 1 videos: [['/talks/luke_syson_how_i_learned_to_stop_worrying_and_love_useless_art', '2014']]
selected: /talks/luke_syson_how_i_learned_to_stop_worrying_and_love_useless_art
sleep 1 seconds to avoid blocking
------<1349>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LuxNarayan_2017S.stm
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=used+to+jog+around+the+stanford+campus+and+he+was+struck
found 1 videos: [['/talks/lux_narayan_what_i_learned_from_2_000_obituaries', '2017']]
selected: /talks/lux_narayan_what_i_learned_from_2_000_obituaries
sleep 5 seconds to avoid blocking
------<1350>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/LZGranderson_2012X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+was+about+sixteen+years+old
found 5 videos: [['/talks/maysoon_zayid_i_got_99_problems_palsy_is_just_one', '2014'], ['/talks/nancy_duarte_the_secret_structure_of_great_talks', '2012'], ['/talks/joel_levine_why_we_need_to_go_back_to_mars', '2010'], ['/talks/rainer_strack_the_workforce_crisis_of_2030_and_how_to_start_solving_it_now', '2014'], ['/talks/james_flynn_why_our_iq_levels_are_higher_than_our_grandparents', '2013']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+can+remember+flipping+through+channels+at+home+during+summer+vacation+looking+for+a+movie+to+watch+on+hbo+and+how+many+of+you+remember+ferris+bueller+s+day+off
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+saw+matthew+broderick+on+the+screen+and+so+i+thought+sweet+ferris+bueller+i+ll+watch+this+it
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=wasn+t+ferris+bueller+and+forgive+me+matthew+broderick+i+know+you+ve+done+other+movies+besides+ferris+bueller+but+that+s+how+i+remember+you+you+re+ferris++but+you+weren+t+doing+ferris+y+things+at+the+time+you+were
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=doing+gay+things+at+the+time++he+was+in+a+movie+called+torch+song+trilogy+and+torch+song+trilogy+was+based+on+a+play
found 1 videos: [['/talks/lz_granderson_the_myth_of_the_gay_agenda', '2012']]
selected: /talks/lz_granderson_the_myth_of_the_gay_agenda
sleep 4 seconds to avoid blocking
------<1351>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MaajidNawaz_2011G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+you+ever+wondered+why+extremism+seems+to+have+been+on+the+rise+in++muslim+majority+countries+over+the+course+of+the+last+decade
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+you+ever+wondered+how+such+a+situation+can+be+turned+around+have+you+ever
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=looked+at+the+arab+uprisings+and+thought+how+could+we+have+predicted+that+or+how+could+we+have+better+prepared+for+that
found 1 videos: [['/talks/maajid_nawaz_a_global_culture_to_fight_extremism', '2011']]
selected: /talks/maajid_nawaz_a_global_culture_to_fight_extremism
sleep 3 seconds to avoid blocking
------<1352>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MacBarnett_2014X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+mac+my+job+is+that+i+lie+to+children++but+they+re+honest+lies++i+write+children+s+books++and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+a+quote+from+pablo+picasso
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+know+that+art+is+not+truth+art+is+a+lie+that+makes+us+realize+truth
found 14 videos: [['/talks/mac_barnett_why_a_good_book_is_a_secret_door', '2014'], ['/talks/mia_birdsong_the_story_we_tell_about_poverty_isn_t_true', '2015'], ['/talks/eduardo_saenz_de_cabezon_math_is_forever', '2015'], ['/talks/meera_vijayann_find_your_voice_against_gender_violence', '2014'], ['/talks/elizabeth_lesser_say_your_truths_and_seek_them_in_others', '2016'], ['/talks/dan_gross_why_gun_violence_can_t_be_our_new_normal', '2016'], ['/talks/peter_saul_let_s_talk_about_dying', '2012'], ['/talks/melvin_russell_i_love_being_a_police_officer_but_we_need_reform', '2016'], ['/talks/geena_rocero_why_i_must_come_out', '2014'], ['/talks/suki_kim_this_is_what_it_s_like_to_go_undercover_in_north_korea', '2015'], ['/talks/jason_mccue_terrorism_is_a_failed_brand', '2012'], ['/talks/siyanda_mohutsiwa_how_young_africans_found_a_voice_on_twitter', '2016'], ['/talks/parul_sehgal_an_ode_to_envy', '2013'], ['/talks/kevin_breel_confessions_of_a_depressed_comic', '2013']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+at+least+the+truth+that+is+given+us+to+understand+the+artist+must+know+the+manner+whereby+to+convince+others+of+the+truthfulness+of+his+lies
found 1 videos: [['/talks/mac_barnett_why_a_good_book_is_a_secret_door', '2014']]
selected: /talks/mac_barnett_why_a_good_book_is_a_secret_door
sleep 2 seconds to avoid blocking
------<1353>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MacStone_2015X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+great+privilege+of+traveling+to+some+incredible+places+photographing+these
found 1 videos: [['/talks/mac_stone_stunning_photos_of_the_endangered_everglades', '2015']]
selected: /talks/mac_stone_stunning_photos_of_the_endangered_everglades
sleep 4 seconds to avoid blocking
------<1354>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MadeleineAlbright_2010W.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+spend+when+i+get+up+in+the+morning+is+trying+to+figure+out+what+is+going+to+happen+and+none+of+this+pin+stuff+would+have+happened+if+it+hadn+t+been+for+saddam
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=tell+you+what+happened+i+went+to+the+united+nations+as+an+ambassador+and+it+was+after+the+gulf+war+and+i+was+an+instructed+ambassador++and
found 1 videos: [['/talks/madeleine_albright_on_being_a_woman_and_a_diplomat', '2011']]
selected: /talks/madeleine_albright_on_being_a_woman_and_a_diplomat
sleep 5 seconds to avoid blocking
------<1355>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MaeJemison_2002.stm
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+to+spend+some+time+talking+about+some+stuff+that+s+sort+of+given+me+a+little+bit+of+existential+angst
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+lack+of+a+better+word+over+the+past+couple+of+years+and+basically+these+three+quotes
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=tell+what+s+going+on+when+god+made+the+color+purple+god+was+just+showing+off+alice+walker+wrote+in+the+color+purple
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+zora+neale+hurston+in+dust+tracks+on+a+road
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=research+is+a+formalized+curiosity+it+s+poking+and+prying+with+a+purpose
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+finally+when+i+think+about+the+near+future+you+know+we+have+this+attitude+well+whatever+happens+happens+right+so+that+goes+along+with
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+cheshire+cat+saying+if+you+don+t+care+much+where+you+want+to+get+to+it+doesn+t+much+matter+which+way+you+go+but+i+think+it+does+matter
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+way+we+go+and+what+road+we+take+because+when+i+think+about+design+in+the+near+future
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+i+think+are+the+most+important+issues+what+s+really+crucial+and+vital+is+that+we+need+to+revitalize+the+arts+and+sciences+right+now+in+two+thousand+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+we+describe+the+near+future+as+ten+twenty+fifteen+years+from+now+that+means
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+what+we+do+today+is+going+to+be+critically+important+because+in+the+year+twenty+fifteen+in+the+year+twenty+twenty+twenty+twenty+five+the+world+our+society+is+going+to+be+building+on+the+basic+knowledge+and+abstract+ideas+the+discoveries+that+we+came+up+with+today
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+all+these+wonderful+things+we+re+hearing+about+here+at+the+ted+conference+that+we+take+for+granted+in+the+world+right+now+were+really+knowledge+and+ideas+that+came+up+in+the+fiftys+the+sixtys+and+the+seventys
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+the+substrate+that+we+re+exploring+today+whether+it+s+the+internet+genetic+engineering+laser+scanners+guided+missiles+fiber+optics+high+definition+television
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sensing+remote+sensing+from+space+and+the+wonderful+remote
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sensing+photos+that+we+re+seeing+threed+weaving+tv+programs+like+tracker+and+enterprise+cd+read+write+drives+flat+screen+alvin+ailey+s+suite+otis
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+sarah+jones+your+revolution+will+not+be+between+these+thighs+which+by+the+way+is+banned+by+the+fcc+or+ska+all+of+these+things+without+question
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=almost+without+exception+are+really+based+on+ideas+and+abstract+and+creativity
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=from+years+before+so+we+have+to+ask+ourselves+what+are+we+contributing+to+that+legacy+right+now
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+when+i+think+about+it+i+m+really+worried+to+be+quite+frank+i+m+concerned+i+m+skeptical+that+we+re+doing+very+much+of+anything
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+re+in+a+sense+failing+to+act+in+the+future+we+are+purposefully+consciously+being+laggards+we+re+lagging+behind
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+was+a+psychiatrist+from+martinque+said+each+generation+must+out+of+relative+obscurity+discover+its+mission+and+fulfill+or+betray+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+is+our+mission+what+do+we+have+to+do+i+think+our+mission+is+to+reconcile+to+reintegrate+science+and+the+arts+because+right+now+there+s+a+schism+that+exists+in+popular+culture
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know+people+have+this+idea
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+science+and+the+arts+are+really+separate+we+think+of+them+as+separate+and+different+things+and+this+idea+was+probably+introduced+centuries+ago+but+it+s+really+becoming+critical+now
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+we+re+making+decisions+about+our+society+every+day
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+if+we+keep+thinking+that+the+arts+are+separate+from+the+sciences+and+we+keep+thinking+it+s+cute+to+say+i+don+t+understand+anything+about+this+one+i+don+t+understand+anything
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+the+other+one+then+we+are+going+to+have+problems+now+i+know+no+one+here+at+ted+thinks+this+all+of+us+we+already+know+that+they+re+very+connected+but+i+m+going+to+let+you+know+that+some+folks+in+the+outside+world
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=believe+it+or+not+they+think+it+s+neat+when+they+say+you+know+scientists+and+science+is+not+creative
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=artists+are+not+analytical+they+re+ingenious+perhaps
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+when+these+concepts+underlie+our+teaching+and+what+we+think+about+the+world
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=then+we+have+a+problem+because+we+stymie+support+for+everything+by+accepting+this+dichotomy+whether+it+s+tongue+in+cheek
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+we+attempt+to+accommodate+it+in+our+world+and+we+try+to+build+our+foundation+for+the+world+we+re+messing+up+the+future
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+who+wants+to+be+uncreative
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+wants+to+be+illogical+talent+would+run+from+either+of+these+fields+if+you+said+you+have+to+choose+either+then+they+re+going+to+go+to+something+where+they+think+well+i+can+be+creative+and+logical+at+the+same+time
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+i+grew+up+in+the+sixtys+and+i+ll+admit+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=actually+my+childhood+spanned+the+sixtys+and+i+was+a+wanna+be+hippie+and+i+always+resented+the+fact+that+i+wasn+t+really+old+enough+to
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=be+a+hippie+i+know+there+are+people+here+you+know+the+younger+generation+of+wanna+be+hippies
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+talk+about+the+sixtys+all+the+time+and+they+talk+about+the+anarchy+that+was+there+but+when+i+think+about+the+sixtys+what+i+took+away+from+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+that+there+was+hope+for+the+future+we+thought+everyone+could+participate+there+were+wonderful+incredible+ideas+that+were+always+percolating+and+so+much+of+what+s+cool+or+hot+today+is+really+based+on
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+of+those+concepts+whether+it+s+people+trying+to+use+a+prime+directive+from+star+trek+being+involved+in+things
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+again+that+three+dimensional+weaving+and+fax+machines+that+i+read+about+in+my+weekly+readers+as+the+technology+and+engineering+was+just+getting+started
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+the+sixtys+left+me+with+a+problem+you+see
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+always+assumed+i+would+go+into+space
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+i+followed+all+of+this+but+i+also+loved+the+arts+and+sciences+you+see+when+i+was+growing+up+as+a+little+girl+and+a+teenager+i+loved+designing+and+making+doll+clothes
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+wanted+to+be+a+fashion+designer+i+took+art+and+ceramics+i+loved+dance
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=infinity+and+the+big+bang+theory+and+when+i+was+at+stanford+i+found+myself+my+senior+year+chemical+engineering+major+half+the+folks+thought+i+was+a+political+science+and+performing+arts+major+which
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+sort+of+true+because+i+was+black+student+union+president+and+i+did+major+in+some+other+things
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=producing+and+choreographing+a+dance+production
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+had+to+do+the+lighting+and+the+design+work
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+trying+to+figure+out+do+i+go+to+new+york+city+to+try+to+become+a+professional+dancer+or+do+i+go+to+medical+school
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+my+mother+helped+me+figure+that+one+out
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+when+i+went+into+space+when+i+went+into+space+i+carried+a+number+of+things+up+with+me+i+carried+a+poster+by+alvin+ailey+who+you+can+figure
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=out+now+i+love+the+dance+company+an+alvin+ailey+poster+of+judith+jameson+performing+the+dance+cry
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=dedicated+to+all+black+women+everywhere+a+bundu+statue+which+was+from+the+women+s+society+in+sierra+leone+and+a+certificate+for+the+chicago+public+school+students+to+work+to+improve+their+science+and+math
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+take+up+what+you+took+up+i+had+to+say+because+it+represents+human+creativity
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+creativity+that+allowed+us+that+we+were+required+to+have+to+conceive+and+build+and+launch+the+space+shuttle+springs+from+the+same+source+of+imagination+and+analysis+that+it+took+to+carve+a+bundu+statue
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+the+ingenuity+it+took+to+design+choreograph+and+stage+cry
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=each+one+of+them+are+different+manifestations+incarnations+of+creativity+avatars
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+s+what+we+have+to+reconcile+in+our+minds+how+these+things+fit+together+the+difference+between+arts+and+sciences+is+not+analytical+versus+intuitive+right+e+equal+mc
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+you+had+to+do+the+analysis+afterwards
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=einstein+said+in+fact+the+most+beautiful+thing+we+can+experience+is+the+mysterious+it+is+the+source+of+all+true
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=dance+requires+us+to+express+and+want+to+express+the+jubilation+in+life+but+then+you+have+to+figure+out+exactly+what+movement+do+i+do+to+make+sure+that+it+comes+across+correctly
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+difference+between+arts+and+sciences+is+also+not+constructive+versus+deconstructive+right+a+lot+people+think+of+the+sciences+as+deconstructive+you+have+to+pull+things+apart+yes+subatomic+physics+is+deconstructive+you+literally
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=try+to+tear+atoms+apart+to+understand+what+s+inside+of+them+but+sculpture+from+what+i+understand+from+great+sculptors
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+deconstructive+because+you+see+a+piece+and+you+remove+what+doesn+t+need+to+be+there+biotechnology+is+constructive
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=orchestral+arranging+is+constructive+so+in+fact+we+use+constructive+and+deconstructive+techniques+in+everything
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+difference+between+science+and+the+arts+is
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+that+they+are+different+sides+of+the+same+coin+even+or+even+different+parts+of+the+same+continuum+but+rather+they+are+manifestations+of+the+same+thing
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=our+attempt+as+humans+to+build+an+understanding+of+the+universe+the+world+around+us+it+s+our+attempt+to+influence+things+the+universe+internal+to+ourselves+and+external+to+us
error: request timeout
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+manifestations+of+our+attempt+to+express+or+share+our+understanding+our+experience+to+influence+the+universe+external+to+ourselves
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+doesn+t+rely+on+us+as+individuals
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+a+universe+as+experience+by+everyone
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+arts+manifest+our+desire+our+attempt+to+share+or+influence+others+through+experiences+that+are+peculiar+to+us+as+individuals
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+me+say+it+again+another+way+science+provides+an+understanding+of+a+universal+experience+arts+provides+a+universal+understanding+of+a+personal+experience
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+what+we+have+to+think+about
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+they+are+all+part+of+us+they+re+all+part+of+a+continuum+it+s+not+just+the+tools+it+s+not+just+the+sciences+you+know+the+mathematics+and+the+numerical+stuff+and+the+statistics+because+we+heard+very+much+on+this+stage+people+talked+about+music+being+mathematical
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=arts+don+t+just+use+clay+are+not+the+only+ones+who+use+clay+light+and+sound+and+movement
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+people+might+say+well+i+still+like+that+intuitive+versus+analytical+thing+because+everybody+wants+to+do+the+right+brain+left+brain+thing+right+we+ve+all+been+accused+of+being+right+brain+or+left+brain+at+some+point+in+time+depending+on+who+we+disagreed+with+when
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+say+intuitive+that+s+like+you+re+in+touch+with+nature+in+touch+with+yourself+and+relationships+analytical+you+put+your+mind+to+work+and+i
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+a+little+secret+you+all+know+this+though+but+sometimes+people+use+this+analysis+idea+that+things+are+outside+of+ourselves+to+say+that+this+is+what+we+re+going+to
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=elevate+as+the+true+most+important+sciences+right
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+you+have+artists+and+you+all+know+this+is+true+as+well+artists+will+say+things+about+scientists
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+they+say+they+are+too+concrete+they+are+disconnected+with+the+world+but
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+ve+even+had+that+here+on+stage+so+don+t+act+like+that+you+all+don+t+know+what+i+m+talking+about+we+had+the
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+had+folks+talking+about+the+flat+earth+society+and+flower+arrangers+so+there+is+this+whole+dichotomy+that+we+continue+to+carry+along+even+when+we+know+better
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+folks+say+we+need+to+chose+either+or
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+it+would+really+be+foolish+to+chose
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=either+one+right+intuitive+versus+analytical
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+a+foolish+choice+that+s+foolish+just+like+trying+to+choose+between+being+realistic+or+idealistic+you+need+both+in+life
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=why+do+people+do+this+i+m+just+going+to+quote+a+molecular+biologist+sydney+brenner+who+is+seventy+years+old+so+he+can+say+this+he+said+it+s+always+important+to+distinguish+between+chastity+and+impotence
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+share+with+you+i+want+to+share+with+you+a+little+equation+okay+how+do+understanding+science+and+the+arts
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fit+in+to+our+lives+and+what+s+going+on+and+the+things+that+we+re+talking+about+here+at+the+design+conference+and+this+is+a+little+thing+i+came+up+with+understanding+and+our+resources+and+our+will
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=cause+us+to+have+outcomes+our+understanding+is+our+science+our+arts+our+religion+how+we+see+the+universe+around+us+our+resources+our+money+our+labor
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=our+minerals+those+things+that+are+out+there+in+the+world+that+we+have+to+work+with+but+more+importantly+there+s+our+will
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+our+vision+our+aspirations+of+the+future+our+hopes+our+dreams+our+struggles+and+our+fears+our+successes+and+our+failures+influence+what+we+do+with+all+of+those+and+to+me+design+and+engineering+craftsmanship+and+skilled+labor+are+all+the
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=things+that+work+on+this+to+have+our+outcome+which+is+our+human+quality+of+life
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+s+what+we+have+to
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+me+finish+by+saying+that+my+personal+design+issue+in+the+future
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+really+about+integrating+to+think+about+that+intuitive+and+that+analytical+the+arts+and+sciences+are+not+separate
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=physics+lesson+before+we+leave+high+school+physics+teacher+used+to+hold+up+a+ball+she+would+say+this+ball+has+potential+energy
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+nothing+will+happen+to+it+it+can+t+do+any+work+until+i+drop+it+and+it+changes+states
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+like+to+think+of+ideas+as+potential+energy+they+re+really+wonderful+but+nothing+will+happen+until+we+risk+putting+them+into+action+this+conference+is+filled+with+wonderful+ideas
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+re+going+to+share+lots+of+things+with+people
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+nothing+is+going+to+happen+until+we+risk+putting+those+ideas+into+action+we+need+to+revitalize+the+arts+and+sciences+today+we+need+to+take+responsibility+for+the+future
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+can+t+hide+behind+saying+it+s+just+for+company+profits+profits+or+it+s+just+a+business+or+i+m+an+artist+or+an+academician
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fran+lebowitz+my+favorite+cynic+she+said+the+three+questions+of+greatest+concern+now+i+m+going+to+add+on+to+design+is
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+the+intuitive+is+it+amusing+the+analytical+and+does+it+know+its+place+the+balance+thank+you+very+much
found 0 videos: []
error: no video is found.
sleep 4 seconds to avoid blocking
------<1356>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MagdaSayeg_2015Y.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+a+textile+artist+most+widely+known+for+starting+the+yarn+bombing+movement+yarn+bombing+is+when+you+take+knitted+or+crocheted+material+out+into+the+urban+environment
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=more+specifically++without+permission+and+unsanctioned++but+when+i+started+this+over+ten+years+ago
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=didn+t+have+a+word+for+it++i+didn+t+have+any+ambitious+notions+about+it++i+had+no+visions+of+grandeur+all+i+wanted+to+see+was+something+warm+and+fuzzy+and+human+like+on+the+cold+steel+gray+facade+that+i+looked+at+everyday
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+wrapped+the+door+handle
found 2 videos: [['/talks/magda_sayeg_how_yarn_bombing_grew_into_a_worldwide_movement', '2016'], ['/talks/jennifer_brea_what_happens_when_you_have_a_disease_doctors_can_t_diagnose', '2017']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+call+this+the+alpha+piece
found 2 videos: [['/talks/magda_sayeg_how_yarn_bombing_grew_into_a_worldwide_movement', '2016'], ['/talks/carl_safina_what_are_animals_thinking_and_feeling', '2015']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=little+did+i+know+that+this+tiny+piece+would+change+the+course+of+my+life++so+clearly+the+reaction+was+interesting+it+intrigued+me+and+i+thought
found 1 videos: [['/talks/magda_sayeg_how_yarn_bombing_grew_into_a_worldwide_movement', '2016']]
selected: /talks/magda_sayeg_how_yarn_bombing_grew_into_a_worldwide_movement
sleep 5 seconds to avoid blocking
------<1357>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MagnusLarsson_2009G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=funny+to+be+at+a+conference+dedicated+to+things+not+seen++and+present+my+proposal+to+build+a
found 1 videos: [['/talks/magnus_larsson_turning_dunes_into_architecture', '2009']]
selected: /talks/magnus_larsson_turning_dunes_into_architecture
sleep 4 seconds to avoid blocking
------<1358>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MairaKalman_2007.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+i+am+always+thinking+about+is
found 2 videos: [['/talks/david_s_rose_how_to_pitch_to_a_vc', '2008'], ['/talks/alain_de_botton_a_kinder_gentler_philosophy_of_success', '2009']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+what+this+session+is+about+which+is+called+simplicity+and+almost+i+would+almost+call+it+being+simple+minded+but+in+the+best+sense+of+the+word
found 1 videos: [['/talks/maira_kalman_the_illustrated_woman', '2007']]
selected: /talks/maira_kalman_the_illustrated_woman
sleep 5 seconds to avoid blocking
------<1359>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MajoraCarter_2006.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+re+here+today+and+i+m+very+happy+that+you+are
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+ve+all+heard+about+how+sustainable+development+will+save+us+from+ourselves++however++when+we+re+not+at+ted++we+are+often+told+that+a+real
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=policy+agenda+is+just+not+feasible+especially+in+large+urban+areas+like+new+york+city
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+s+because+most+people+with+decision+making+powers+in+both+the+public+and+the+private+sector
found 1 videos: [['/talks/jacqueline_novogratz_patient_capitalism', '2007']]
selected: /talks/jacqueline_novogratz_patient_capitalism
sleep 5 seconds to avoid blocking
------<1360>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MajoraCarter_2010X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+tell+you+about+some+people+who+didn+t+move+out+of+their+neighborhoods++the+first+one+is+happening+right+here+in+chicago+brenda
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hired+to+help+ex+convicts+reenter+society+and+keep+them+from+going+back+into+prison
found 1 videos: [['/talks/majora_carter_3_stories_of_local_eco_entrepreneurship', '2010']]
selected: /talks/majora_carter_3_stories_of_local_eco_entrepreneurship
sleep 3 seconds to avoid blocking
------<1361>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MalcolmGladwell_2004.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+i+was+supposed+to+talk+about+my+new+book+which
found 1 videos: [['/talks/cameron_sinclair_my_wish_a_call_for_open_source_architecture', '2006']]
selected: /talks/cameron_sinclair_my_wish_a_call_for_open_source_architecture
sleep 2 seconds to avoid blocking
------<1362>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MalcolmGladwell_2011G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+be+here+i+last+did+a+ted+talk+i+think+about+seven+years+ago+or+so+i+talked+about+spaghetti+sauce++and
found 1 videos: [['/talks/malcolm_gladwell_the_strange_tale_of_the_norden_bombsight', '2011']]
selected: /talks/malcolm_gladwell_the_strange_tale_of_the_norden_bombsight
sleep 1 seconds to avoid blocking
------<1363>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MalcolmGladwell_2013S.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+wanted+to+tell+a+story+that+that+really+obsessed+me+when+i+was+writing+my+new+book+and
found 2 videos: [['/talks/andrew_solomon_depression_the_secret_we_share', '2013'], ['/talks/malcolm_gladwell_the_unheard_story_of_david_and_goliath', '2013']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+a+story+of+something+that+happened+three+thousand+years+ago+when+the+kingdom+of+israel+was+in+its
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+takes+place+in+an+area+called+the+shephelah
found 1 videos: [['/talks/malcolm_gladwell_the_unheard_story_of_david_and_goliath', '2013']]
selected: /talks/malcolm_gladwell_the_unheard_story_of_david_and_goliath
sleep 1 seconds to avoid blocking
------<1364>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MalcolmLondon_2013S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=open+the+doors+to+a+building+dedicated+to+building++yet+only+breaks+me+down+i+march
found 1 videos: [['/talks/malcolm_london_high_school_training_ground', '2013']]
selected: /talks/malcolm_london_high_school_training_ground
sleep 3 seconds to avoid blocking
------<1365>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MallikaSarabhai_2009I.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=came+into+the+forest+under+a+tree+she+saw+a+woman+meditating+furiously
found 1 videos: [['/talks/mallika_sarabhai_dance_to_change_the_world', '2009']]
selected: /talks/mallika_sarabhai_dance_to_change_the_world
sleep 2 seconds to avoid blocking
------<1366>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MallorySoldner_2016S.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+landed+for+the+first+time+in+rome+italy++i+wasn+t+there+to+sightsee++i+was+there+to+solve+world+hunger
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=armed+with+a+prototype+tool+developed+back+at+my+university++and+i+was+going+to+help+the+world+food+programme+fix+hunger
found 1 videos: [['/talks/mallory_freeman_your_company_s_data_could_help_end_world_hunger', '2016']]
selected: /talks/mallory_freeman_your_company_s_data_could_help_end_world_hunger
sleep 5 seconds to avoid blocking
------<1367>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MalteSpitz_2012G.stm
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+a+mobile+phone++you+can+shoot+a+crime+against+humanity+in+syria
found 1 videos: [['/talks/malte_spitz_your_phone_company_is_watching', '2012']]
selected: /talks/malte_spitz_your_phone_company_is_watching
sleep 3 seconds to avoid blocking
------<1368>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ManalAlSharif_2013G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+start+this+talk+with+a+question+to+everyone
found 14 videos: [['/talks/ricardo_semler_how_to_run_a_company_with_almost_no_rules', '2015'], ['/talks/uri_alon_why_science_demands_a_leap_into_the_unknown', '2014'], ['/talks/paul_pholeros_how_to_reduce_poverty_fix_homes', '2013'], ['/talks/jason_mccue_terrorism_is_a_failed_brand', '2012'], ['/talks/bryan_stevenson_we_need_to_talk_about_an_injustice', '2012'], ['/talks/amory_lovins_a_40_year_plan_for_energy', '2012'], ['/talks/dan_pallotta_the_way_we_think_about_charity_is_dead_wrong', '2013'], ['/talks/sheryl_sandberg_so_we_leaned_in_now_what', '2014'], ['/talks/mellody_hobson_color_blind_or_color_brave', '2014'], ['/talks/jim_simons_the_mathematician_who_cracked_wall_street', '2015'], ['/talks/allan_savory_how_to_fight_desertification_and_reverse_climate_change', '2013'], ['/talks/mohamed_hijri_a_simple_solution_to_the_coming_phosphorus_crisis', '2013'], ['/talks/andrew_solomon_love_no_matter_what', '2013'], ['/talks/wes_moore_how_to_talk_to_veterans_about_war', '2014']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know+that+all+over+the+world++people+fight
found 11 videos: [['/talks/hans_and_ola_rosling_how_not_to_be_ignorant_about_the_world', '2014'], ['/talks/jimmy_nelson_gorgeous_portraits_of_the_world_s_vanishing_people', '2015'], ['/talks/andrew_solomon_depression_the_secret_we_share', '2013'], ['/talks/keren_elazari_hackers_the_internet_s_immune_system', '2014'], ['/talks/bruce_aylward_humanity_vs_ebola_how_we_could_win_a_terrifying_war', '2015'], ['/talks/tim_berners_lee_a_magna_carta_for_the_web', '2014'], ['/talks/william_noel_revealing_the_lost_codex_of_archimedes', '2012'], ['/talks/margaret_heffernan_the_dangers_of_willful_blindness', '2013'], ['/talks/scilla_elworthy_fighting_with_nonviolence', '2012'], ['/talks/sarah_kay_how_many_lives_can_you_live', '2011'], ['/talks/io_tillett_wright_fifty_shades_of_gay', '2013']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+their+freedom++fight+for+their+rights++some+battle+oppressive+governments+others
found 1 videos: [['/talks/manal_al_sharif_a_saudi_woman_who_dared_to_drive', '2013']]
selected: /talks/manal_al_sharif_a_saudi_woman_who_dared_to_drive
sleep 1 seconds to avoid blocking
------<1369>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MandyLenCatron_2015X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+published+this+article++in+the+new+york+times+modern+love+column+in+january+of+this+year+to
found 1 videos: [['/talks/mandy_len_catron_falling_in_love_is_the_easy_part', '2015']]
selected: /talks/mandy_len_catron_falling_in_love_is_the_easy_part
sleep 3 seconds to avoid blocking
------<1370>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MandyLenCatron_SFU_2015X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=today+i+want+to+talk+about+how+we+talk+about+love+and+specifically+i+want+to+talk+about+what+s+wrong+with+how+we+talk+about+love
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=most+of+us+will+probably+fall+in+love+a+few+times+over+the+course+of+our+lives++and+in+the+english+language+this+metaphor
found 1 videos: [['/talks/mandy_len_catron_a_better_way_to_talk_about_love', '2017']]
selected: /talks/mandy_len_catron_a_better_way_to_talk_about_love
sleep 1 seconds to avoid blocking
------<1371>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ManuelLima_2015.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=over+the+past+ten+years++i+ve+been+researching+the+way
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+ve+noticed+an+interesting+shift
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+a+long+period+of+time++we+believed+in+a+natural+ranking+order+in+the+world+around+us+also+known+as+the+great+chain
found 1 videos: [['/talks/manuel_lima_a_visual_history_of_human_knowledge', '2015']]
selected: /talks/manuel_lima_a_visual_history_of_human_knowledge
sleep 5 seconds to avoid blocking
------<1372>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ManuPrakash_2012G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+curious+little+invention+is+being+talked+about+it+s+called+a+microscope
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+it+allows+you+to+do+is+see+tiny+little+lifeforms+that+are+invisible+to+the+naked+eye++soon+comes+the+medical+discovery
found 1 videos: [['/talks/manu_prakash_a_50_cent_microscope_that_folds_like_origami', '2014']]
selected: /talks/manu_prakash_a_50_cent_microscope_that_folds_like_origami
sleep 5 seconds to avoid blocking
------<1373>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ManwarAli_2016X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=today+i+stand+before+you+as+a+man+who+lives+life+to+the+full
found 17 videos: [['/talks/ozlem_cekic_why_i_have_coffee_with_people_who_send_me_hate_mail', '2018'], ['/talks/megan_phelps_roper_i_grew_up_in_the_westboro_baptist_church_here_s_why_i_left', '2017'], ['/talks/sarah_parcak_help_discover_ancient_ruins_before_it_s_too_late', '2017'], ['/talks/manwar_ali_inside_the_mind_of_a_former_radical_jihadist', '2016'], ['/talks/hugh_evans_what_does_it_mean_to_be_a_citizen_of_the_world', '2016'], ['/talks/t_morgan_dixon_and_vanessa_garrison_the_trauma_of_systematic_racism_is_killing_black_women_a_first_step_toward_change', '2017'], ['/talks/ben_saunders_to_the_south_pole_and_back_the_hardest_105_days_of_my_life', '2014'], ['/talks/casey_gerald_the_gospel_of_doubt', '2016'], ['/talks/christian_picciolini_my_descent_into_america_s_neo_nazi_movement_and_how_i_got_out', '2018'], ['/talks/the_ted_interview_sir_ken_robinson_still_wants_an_education_revolution', '2018'], ['/talks/thordis_elva_and_tom_stranger_our_story_of_rape_and_reconciliation', '2017'], ['/talks/anjali_kumar_my_failed_mission_to_find_god_and_what_i_found_instead', '2018'], ['/talks/raj_panjabi_no_one_should_die_because_they_live_too_far_from_a_doctor', '2017'], ['/talks/talithia_williams_own_your_body_s_data', '2014'], ['/talks/andrew_youn_3_reasons_why_we_can_win_the_fight_against_poverty', '2016'], ['/talks/eldra_jackson_how_i_unlearned_dangerous_lessons_about_masculinity', '2018'], ['/talks/kelli_jean_drinkwater_enough_with_the_fear_of_fat', '2016']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+here+and+now+but+for+a+long+time+i+lived+for+death
found 8 videos: [['/talks/manwar_ali_inside_the_mind_of_a_former_radical_jihadist', '2016'], ['/talks/bj_miller_what_really_matters_at_the_end_of_life', '2015'], ['/talks/jason_b_rosenthal_the_journey_through_loss_and_grief', '2018'], ['/talks/will_macaskill_what_are_the_most_important_moral_problems_of_our_time', '2018'], ['/talks/soka_moses_for_survivors_of_ebola_the_crisis_isn_t_over', '2018'], ['/talks/kevin_briggs_the_bridge_between_suicide_and_life', '2014'], ['/talks/t_morgan_dixon_and_vanessa_garrison_the_trauma_of_systematic_racism_is_killing_black_women_a_first_step_toward_change', '2017'], ['/talks/anand_giridharadas_a_tale_of_two_americas_and_the_mini_mart_where_they_collided', '2015']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+a+young+man+who+believed+that+jihad
found 4 videos: [['/talks/manwar_ali_inside_the_mind_of_a_former_radical_jihadist', '2016'], ['/talks/dalia_mogahed_what_it_s_like_to_be_muslim_in_america', '2016'], ['/talks/chetan_bhatt_dare_to_refuse_the_origin_myths_that_claim_who_you_are', '2017'], ['/talks/anand_giridharadas_a_tale_of_two_americas_and_the_mini_mart_where_they_collided', '2015']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+to+be+understood+in+the+language+of+force+and+violence
found 2 videos: [['/talks/manwar_ali_inside_the_mind_of_a_former_radical_jihadist', '2016'], ['/talks/judith_heumann_our_fight_for_disability_rights_and_why_we_re_not_done_yet', '2018']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+tried+to+right+wrongs+through+power+and+aggression+i+had+deep+concerns
found 2 videos: [['/talks/manwar_ali_inside_the_mind_of_a_former_radical_jihadist', '2016'], ['/talks/gretchen_carlson_david_brooks_political_common_ground_in_a_polarized_united_states', '2017']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+the+suffering+of+others+and+a+strong+desire+to+help+and+bring+relief+to+them
found 1 videos: [['/talks/manwar_ali_inside_the_mind_of_a_former_radical_jihadist', '2016']]
selected: /talks/manwar_ali_inside_the_mind_of_a_former_radical_jihadist
sleep 2 seconds to avoid blocking
------<1374>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MarcAbrahams_2014P.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=charlotte+blonsky+who+were+a+married+couple+living+in+the+bronx+in+new+york+city++invented+something+they+got+a+patent+in
error: request timeout
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+device+consists+of+a+large++round+table+and+some+machinery
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+the+woman+is+ready+to+deliver+her+child+she+lies+on+her+back+she+is+strapped+down+to+the+table
found 1 videos: [['/talks/marc_abrahams_a_science_award_that_makes_you_laugh_then_think', '2014']]
selected: /talks/marc_abrahams_a_science_award_that_makes_you_laugh_then_think
sleep 3 seconds to avoid blocking
------<1375>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MarcelDicke_2010G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=m+going+to+show+you+again+something+about+our+diets+and
found 2 videos: [['/talks/ben_goldacre_battling_bad_science', '2011'], ['/talks/anthony_atala_growing_new_organs', '2010']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+would+like+to+know+what+the+audience+is+and+so+who+of+you+ever+ate+insects
found 11 videos: [['/talks/marcel_dicke_why_not_eat_insects', '2010'], ['/talks/anil_gupta_india_s_hidden_hotbeds_of_invention', '2010'], ['/talks/emma_teeling_the_secret_of_the_bat_genome', '2012'], ['/talks/nathan_myhrvold_could_this_laser_zap_malaria', '2010'], ['/talks/cary_fowler_one_seed_at_a_time_protecting_the_future_of_food', '2009'], ['/talks/beau_lotto_amy_o_toole_science_is_for_everyone_kids_included', '2012'], ['/talks/sam_harris_science_can_answer_moral_questions', '2010'], ['/talks/dennis_vanengelsdorp_a_plea_for_bees', '2008'], ['/talks/penelope_boston_there_might_just_be_life_on_mars', '2008'], ['/talks/willard_wigan_hold_your_breath_for_micro_sculpture', '2009'], ['/talks/eric_sanderson_new_york_before_the_city', '2009']]
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+still+you+re+not+representing+the+overall+population+of+the+earth+laughter
found 1 videos: [['/talks/michael_merzenich_growing_evidence_of_brain_plasticity', '2009']]
selected: /talks/michael_merzenich_growing_evidence_of_brain_plasticity
sleep 1 seconds to avoid blocking
------<1376>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MarcGoodman_2012G.stm
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+future+of+crime+and+terrorism
found 6 videos: [['/talks/marc_goodman_a_vision_of_crimes_in_the_future', '2012'], ['/talks/edward_snowden_here_s_how_we_take_back_the_internet', '2014'], ['/talks/shyam_sankar_the_rise_of_human_computer_cooperation', '2012'], ['/talks/heather_brooke_my_battle_to_expose_government_corruption', '2012'], ['/talks/richard_ledgett_the_nsa_responds_to_edward_snowden_s_ted_talk', '2014'], ['/talks/william_ury_the_walk_from_no_to_yes', '2010']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+frankly++i+m+afraid++i+m+afraid+by+what+i+see++i+sincerely
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+we+ve+been+promised+but+you+see++i+ve+spent+a+career+in+law+enforcement
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+s+informed+my+perspective+on+things+i+ve+been+a+street+police+officer+an+undercover+investigator+a+counter+terrorism+strategist++and+i+ve+worked+in+more+than+seventy+countries+around+the+world
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+had+to+see+more+than+my+fair+share+of+violence
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+darker+underbelly+of+society+and
found 1 videos: [['/talks/marc_goodman_a_vision_of_crimes_in_the_future', '2012']]
selected: /talks/marc_goodman_a_vision_of_crimes_in_the_future
sleep 1 seconds to avoid blocking
------<1377>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MarcinJakubowski_2011U.stm
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+born+in+poland+now+in+the+u+s
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+started+a+group+called+open+source+ecology+we+ve+identified+the+fifty+most+important+machines+that+we+think+it+takes+for+modern+life+to+exist
error: request timeout
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=bread+ovens++circuit+makers+then+we+set+out+to+create+an+open+source+diy+do+it+yourself+version
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+anyone+can+build+and+maintain+at+a+fraction+of+the+cost+we+call+this+the+global+village+construction+set+so+let+me+tell+you+a+story+so+i+finished+my+20s
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+a+ph+d+in+fusion+energy+and+i+discovered
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+useless++i+had+no+practical+skills
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=world+presented+me+with+options+and+i+took+them++i+guess+you+can+call+it+the+consumer+lifestyle++so+i+started+a+farm
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+missouri+and+learned+about+the+economics+of+farming++i+bought+a+tractor
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=then+it+broke++i+paid+to+get+it+repaired+then+it+broke+again++then+pretty+soon++i+was+broke+too
found 1 videos: [['/talks/marcin_jakubowski_open_sourced_blueprints_for_civilization', '2011']]
selected: /talks/marcin_jakubowski_open_sourced_blueprints_for_civilization
sleep 2 seconds to avoid blocking
------<1378>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MarcKoska_2009G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=years+ago+i+read+a+newspaper+article+which+said+that
found 12 videos: [['/talks/charles_leadbeater_the_era_of_open_innovation', '2007'], ['/talks/marc_koska_1_3m_reasons_to_re_invent_the_syringe', '2009'], ['/talks/benoit_mandelbrot_fractals_and_the_art_of_roughness', '2010'], ['/talks/tom_honey_why_would_god_create_a_tsunami', '2007'], ['/talks/sergey_brin_larry_page_the_genesis_of_google', '2007'], ['/talks/carl_honore_in_praise_of_slowness', '2007'], ['/talks/jonathan_harris_the_web_s_secret_stories', '2007'], ['/talks/aimee_mullins_the_opportunity_of_adversity', '2010'], ['/talks/justin_hall_tipping_freeing_energy_from_the_grid', '2011'], ['/talks/doris_kearns_goodwin_lessons_from_past_presidents', '2008'], ['/talks/jean_baptiste_michel_erez_lieberman_aiden_what_we_learned_from_5_million_books', '2011'], ['/talks/adam_savage_my_obsession_with_objects_and_the_stories_they_tell', '2009']]
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=syringes+would+be+one+of+the+major+causes+of+the+spread+of+aids+the+transmission+of+aids+i+thought+this+was+unacceptable+so+i+decided+to+do+something+about+it
found 1 videos: [['/talks/marc_koska_1_3m_reasons_to_re_invent_the_syringe', '2009']]
selected: /talks/marc_koska_1_3m_reasons_to_re_invent_the_syringe
sleep 5 seconds to avoid blocking
------<1379>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MarcKushner_2014.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=today+i+m+going+to+speak+to+you+about+the+last+thirty+years+of+architectural+history
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+a+lot+to+pack+into+eighteen+minutes++it+s+a+complex+topic++so+we+re+just+going+to+dive+right+in+at+a+complex+place
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=from+jersey++and+i+was+six++and+i+lived+there+in+my+parents++house+in+a+town+called+livingston
found 1 videos: [['/talks/marc_kushner_why_the_buildings_of_the_future_will_be_shaped_by_you', '2015']]
selected: /talks/marc_kushner_why_the_buildings_of_the_future_will_be_shaped_by_you
sleep 3 seconds to avoid blocking
------<1380>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MarcoAnnunziata_2013S.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+never+think+about+the+future+it+comes+soon+enough
found 11 videos: [['/talks/marco_annunziata_welcome_to_the_age_of_the_industrial_internet', '2013'], ['/talks/nicholas_negroponte_a_30_year_history_of_the_future', '2014'], ['/talks/bj_miller_what_really_matters_at_the_end_of_life', '2015'], ['/talks/hans_and_ola_rosling_how_not_to_be_ignorant_about_the_world', '2014'], ['/talks/sting_how_i_started_writing_songs_again', '2014'], ['/talks/michel_laberge_how_synchronized_hammer_strikes_could_generate_nuclear_fusion', '2014'], ['/talks/jessica_shortall_the_us_needs_paid_family_leave_for_the_sake_of_its_future', '2015'], ['/talks/pico_iyer_the_art_of_stillness', '2014'], ['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013'], ['/talks/michael_green_why_we_should_build_wooden_skyscrapers', '2013'], ['/talks/dave_isay_everyone_around_you_has_a_story_the_world_needs_to_hear', '2015']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+he+was+right+of+course++so+today++i+m+here+to+ask+you+to+think+of+how+the+future+is+happening+now
found 1 videos: [['/talks/anant_agarwal_why_massive_open_online_courses_still_matter', '2014']]
selected: /talks/anant_agarwal_why_massive_open_online_courses_still_matter
sleep 5 seconds to avoid blocking
------<1381>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MarcoTempest_2011G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+type+of+magic+i+like+and+i+m+a+magician+is+magic+that+uses+technology+to+create+illusions
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+would+like+to+show+you+something+i+ve+been+working+on+it+s+an+application+that+i+think+will+be+useful+for+artists+multimedia+artists+in+particular
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=screens+of+mobile+devices+i+borrowed+these+three+ipods+from+people+here+in+the+audience+to+show+you+what+i+mean
found 1 videos: [['/talks/marco_tempest_the_magic_of_truth_and_lies_and_ipods', '2011']]
selected: /talks/marco_tempest_the_magic_of_truth_and_lies_and_ipods
sleep 4 seconds to avoid blocking
------<1382>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MarcoTempest_2012.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+i+d+like+to+show+you+today+is+something+in+the+way+of+an+experiment++today+s+its+debut+it+s+a+demonstration+of+augmented+reality
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+visuals+you+re+about+to+see+are+not
found 6 videos: [['/talks/dan_meyer_math_class_needs_a_makeover', '2010'], ['/talks/chip_kidd_designing_books_is_no_laughing_matter_ok_it_is', '2012'], ['/talks/daniel_suarez_the_kill_decision_shouldn_t_belong_to_a_robot', '2013'], ['/talks/deb_roy_the_birth_of_a_word', '2011'], ['/talks/steve_ramirez_and_xu_liu_a_mouse_a_laser_beam_a_manipulated_memory', '2013'], ['/talks/daniel_wolpert_the_real_reason_for_brains', '2011']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+are+live+and+reacting+to+me+in+real+time+i+like+to+think+of+it+as+a+kind+of+technological+magic+so
found 1 videos: [['/talks/marco_tempest_a_magical_tale_with_augmented_reality', '2012']]
selected: /talks/marco_tempest_a_magical_tale_with_augmented_reality
sleep 2 seconds to avoid blocking
------<1383>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MarcoTempest_2012G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+magic+is+an+excellent+way+for+staying+ahead+of+the+reality+curve+to+make+possible+today
found 1 videos: [['/talks/marco_tempest_a_cyber_magic_card_trick_like_no_other', '2012']]
selected: /talks/marco_tempest_a_cyber_magic_card_trick_like_no_other
sleep 5 seconds to avoid blocking
------<1384>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MarcoTempest_2014.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+me+introduce+you+to+something+i+ve+been+working+on
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+what+the+victorian+illusionists+would+have+described+as+a+mechanical+marvel+an+automaton+a
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+mechanical+performers+were+popular+throughout+europe+audiences+marveled+at+the+way+they+moved+it
found 1 videos: [['/talks/marco_tempest_and_for_my_next_trick_a_robot', '2014']]
selected: /talks/marco_tempest_and_for_my_next_trick_a_robot
sleep 5 seconds to avoid blocking
------<1385>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MarcoTempest_Session4_2012.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=always+interested+in+performances+that+incorporate+elements+of+illusion
found 1 videos: [['/talks/marco_tempest_the_electric_rise_and_fall_of_nikola_tesla', '2012']]
selected: /talks/marco_tempest_the_electric_rise_and_fall_of_nikola_tesla
sleep 2 seconds to avoid blocking
------<1386>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MarcoTempest_Session7_2011G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+magic+is+a+very+introverted+field++while+scientists+regularly+publish+their+latest+research++we+magicians+do+not+like+to+share+our+methods+and+secrets+that+s+true+even+amongst+peers
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+if+you+look+at+creative+practice+as+a+form+of+research+or+art+as+a+form+of
found 6 videos: [['/talks/marco_tempest_augmented_reality_techno_magic', '2011'], ['/talks/anil_gupta_india_s_hidden_hotbeds_of_invention', '2010'], ['/talks/margaret_heffernan_dare_to_disagree', '2012'], ['/talks/sheena_iyengar_the_art_of_choosing', '2010'], ['/talks/stuart_brown_play_is_more_than_just_fun', '2009'], ['/talks/dan_pink_the_puzzle_of_motivation', '2009']]
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=then+how+could+a+cyber+illusionist+like+myself+share+his+research++now+my+own+speciality+is+combining+digital+technology+and+magic
found 1 videos: [['/talks/marco_tempest_augmented_reality_techno_magic', '2011']]
selected: /talks/marco_tempest_augmented_reality_techno_magic
sleep 2 seconds to avoid blocking
------<1387>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MarcPachter_2008P.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+national+portrait+gallery+is+the+place+dedicated+to+presenting+great+american+lives+amazing+people+and
found 1 videos: [['/talks/marc_pachter_the_art_of_the_interview', '2009']]
selected: /talks/marc_pachter_the_art_of_the_interview
sleep 1 seconds to avoid blocking
------<1388>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MarcusByrne_2012X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+what+i+want+to+do+today+is+share+my+passion+for+poo+with+you
found 12 videos: [['/talks/marcus_byrne_the_dance_of_the_dung_beetle', '2012'], ['/talks/anil_gupta_india_s_hidden_hotbeds_of_invention', '2010'], ['/talks/renata_salecl_our_unhealthy_obsession_with_choice', '2014'], ['/talks/r_a_mashelkar_breakthrough_designs_for_ultra_low_cost_products', '2010'], ['/talks/chris_anderson_how_web_video_powers_global_innovation', '2010'], ['/talks/david_byrne_how_architecture_helped_music_evolve', '2010'], ['/talks/julie_burstein_4_lessons_in_creativity', '2012'], ['/talks/elif_shafak_the_politics_of_fiction', '2010'], ['/talks/mellody_hobson_color_blind_or_color_brave', '2014'], ['/talks/eve_ensler_embrace_your_inner_girl', '2010'], ['/talks/kevin_bales_how_to_combat_modern_slavery', '2010'], ['/talks/neil_pasricha_the_3_a_s_of_awesome', '2011']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+might+be+quite+difficult++but+i+think+what+you+might+find+more+fascinating+is+the+way+these+small+animals+deal+with+poo
found 2 videos: [['/talks/marcus_byrne_the_dance_of_the_dung_beetle', '2012'], ['/talks/james_cameron_before_avatar_a_curious_boy', '2010']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+animal+here+has+got+a+brain+about+the+size+of+a+grain+of+rice
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+yet+it+can+do+things+that+you+and+i+couldn+t+possibly+entertain+the+idea+of+doing++and+basically+it+s+all+evolved+to+handle+its+food+source++which+is+dung
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+the+question+is+where+do+we+start+this+story++and+it+seems+appropriate+to+start+at+the+end
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+this+is+a+waste+product+that+comes+out+of+other
found 19 videos: [['/talks/jason_mccue_terrorism_is_a_failed_brand', '2012'], ['/talks/leyla_acaroglu_paper_beats_plastic_how_to_rethink_environmental_folklore', '2014'], ['/talks/marcus_byrne_the_dance_of_the_dung_beetle', '2012'], ['/talks/lisa_harouni_a_primer_on_3d_printing', '2012'], ['/talks/jeff_iliff_one_more_reason_to_get_a_good_night_s_sleep', '2014'], ['/talks/michael_porter_the_case_for_letting_business_solve_social_problems', '2013'], ['/talks/tyler_cowen_be_suspicious_of_simple_stories', '2012'], ['/talks/elon_musk_the_mind_behind_tesla_spacex_solarcity', '2013'], ['/talks/kiran_bedi_a_police_chief_with_a_difference', '2010'], ['/talks/natalie_jeremijenko_the_art_of_the_eco_mindshift', '2010'], ['/talks/thomas_pogge_medicine_for_the_99_percent', '2011'], ['/talks/jonathan_trent_energy_from_floating_algae_pods', '2012'], ['/talks/majora_carter_3_stories_of_local_eco_entrepreneurship', '2010'], ['/talks/marcel_dicke_why_not_eat_insects', '2010'], ['/talks/steve_howard_let_s_go_all_in_on_selling_sustainability', '2013'], ['/talks/kirk_sorensen_thorium_an_alternative_nuclear_fuel', '2012'], ['/talks/mike_biddle_we_can_recycle_plastic', '2011'], ['/talks/eben_bayer_are_mushrooms_the_new_plastic', '2010'], ['/talks/arthur_potts_dawson_a_vision_for_sustainable_restaurants', '2010']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=animals++but+it+still+contains+nutrients+and+there+are+sufficient+nutrients+in+there+for+dung+beetles+basically+to+make+a+living++and+so+dung+beetles+eat+dung++and
found 1 videos: [['/talks/marcus_byrne_the_dance_of_the_dung_beetle', '2012']]
selected: /talks/marcus_byrne_the_dance_of_the_dung_beetle
sleep 4 seconds to avoid blocking
------<1389>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MarcusduSautoy_2009G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+walking+to+market+that+morning+ran+towards+where+the+gunshot+had+come+from+and+found+a+young+man+writhing+in+agony
found 1 videos: [['/talks/marcus_du_sautoy_symmetry_reality_s_riddle', '2009']]
selected: /talks/marcus_du_sautoy_symmetry_reality_s_riddle
sleep 4 seconds to avoid blocking
------<1390>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MargaretBourdeaux_2015X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+have+you+ever+wondered+what+it+would+be+like+to+live+in+a+place+with+no+rules+that+sounds+pretty+cool
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+wake+up+one+morning+however+and+you+discover+that+the+reason+there+are+no+rules+is+because+there+s+no+government+and+there+are+no+laws+in+fact
error: request timeout
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+there+s+no+schools+there+s+no+hospitals+there+s+no+police+there+s+no+banks+there+s+no+athletic+clubs
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+know+a+little+bit+about+what+this+is+like+because+when+i+was+a+medical+student+in+one+thousand
found 9 videos: [['/talks/russ_altman_what_really_happens_when_you_mix_medications', '2016'], ['/talks/adam_de_la_zerda_we_can_start_winning_the_war_against_cancer', '2016'], ['/talks/margaret_bourdeaux_why_civilians_suffer_more_once_a_war_is_over', '2017'], ['/talks/adam_grant_are_you_a_giver_or_a_taker', '2017'], ['/talks/thomas_insel_toward_a_new_understanding_of_mental_illness', '2013'], ['/talks/robert_gordon_the_death_of_innovation_the_end_of_growth', '2013'], ['/talks/siddhartha_roy_science_in_service_to_the_public_good', '2017'], ['/talks/alex_kipman_a_futuristic_vision_of_the_age_of_holograms', '2016'], ['/talks/nick_hanauer_beware_fellow_plutocrats_the_pitchforks_are_coming', '2014']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+worked+in+a+refugee+camp+in+the+balkans+during+the+kosovo+war+when+the+war+was+over+i+got+permission+unbelievably+from+my+medical+school
found 1 videos: [['/talks/margaret_bourdeaux_why_civilians_suffer_more_once_a_war_is_over', '2017']]
selected: /talks/margaret_bourdeaux_why_civilians_suffer_more_once_a_war_is_over
sleep 3 seconds to avoid blocking
------<1391>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MargaretHeffernan_2012G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+oxford+in+the+1950s+there+was+a+fantastic+doctor+who+was+very+unusual+named+alice+stewart
found 1 videos: [['/talks/margaret_heffernan_dare_to_disagree', '2012']]
selected: /talks/margaret_heffernan_dare_to_disagree
sleep 5 seconds to avoid blocking
------<1392>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MargaretHeffernan_2013X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+northwest+corner+of+the+united+states+right+up+near+the+canadian+border+there+s+a+little+town+called+libby+montana
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+s+surrounded+by+pine+trees+and+lakes+and+just+amazing
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=wildlife+and+these+enormous+trees+that+scream+up+into+the+sky
found 1 videos: [['/talks/margaret_heffernan_the_dangers_of_willful_blindness', '2013']]
selected: /talks/margaret_heffernan_the_dangers_of_willful_blindness
sleep 4 seconds to avoid blocking
------<1393>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MargaretHeffernan_2015W.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=evolutionary+biologist+at+purdue+university+named+william+muir
found 1 videos: [['/talks/margaret_heffernan_forget_the_pecking_order_at_work', '2015']]
selected: /talks/margaret_heffernan_forget_the_pecking_order_at_work
sleep 5 seconds to avoid blocking
------<1394>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MargaretStewart_2010U.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+re+in+the+audience+today+or+maybe+you+re+watching+this+talk+in+some+other+time+or+place+you+are+a+participant+in+the+digital+rights+ecosystem
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=whether+you+re+an+artist+a+technologist+a+lawyer+or+a+fan+the+handling+of+copyright+directly+impacts+your+life
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=rights+management+is+no+longer+simply+a
found 20 videos: [['/talks/margaret_gould_stewart_how_youtube_thinks_about_copyright', '2010'], ['/talks/kristina_gjerde_making_law_on_the_high_seas', '2010'], ['/talks/dan_pink_the_puzzle_of_motivation', '2009'], ['/talks/john_underkoffler_pointing_to_the_future_of_ui', '2010'], ['/talks/john_gerzema_the_post_crisis_consumer', '2009'], ['/talks/caroline_casey_looking_past_limits', '2011'], ['/talks/hanna_rosin_new_data_on_the_rise_of_women', '2010'], ['/talks/willie_smits_how_to_restore_a_rainforest', '2009'], ['/talks/jane_mcgonigal_the_game_that_can_give_you_10_extra_years_of_life', '2012'], ['/talks/david_damberger_what_happens_when_an_ngo_admits_failure', '2011'], ['/talks/rebecca_mackinnon_let_s_take_back_the_internet', '2011'], ['/talks/clay_shirky_institutions_vs_collaboration', '2008'], ['/talks/eric_dishman_take_health_care_off_the_mainframe', '2010'], ['/talks/dean_ornish_healing_through_diet', '2008'], ['/talks/johan_rockstrom_let_the_environment_guide_our_development', '2010'], ['/talks/antonio_damasio_the_quest_to_understand_consciousness', '2011'], ['/talks/itay_talgam_lead_like_the_great_conductors', '2009'], ['/talks/irwin_redlener_how_to_survive_a_nuclear_attack', '2008'], ['/talks/deborah_gordon_the_emergent_genius_of_ant_colonies', '2008'], ['/talks/stewart_brand_mark_z_jacobson_debate_does_the_world_need_nuclear_energy', '2010']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=question+of+ownership+it+s+a+complex+web+of+relationships+and+a+critical+part+of+our+cultural+landscape
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=youtube+cares+deeply+about+the+rights+of+content+owners
found 2 videos: [['/talks/margaret_gould_stewart_how_youtube_thinks_about_copyright', '2010'], ['/talks/lawrence_lessig_re_examining_the_remix', '2010']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+in+order+to+give+them+choices+about+what+they+can+do+with+copies+mashups+and+and+more
found 1 videos: [['/talks/margaret_gould_stewart_how_youtube_thinks_about_copyright', '2010']]
selected: /talks/margaret_gould_stewart_how_youtube_thinks_about_copyright
sleep 4 seconds to avoid blocking
------<1395>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MargaretStewart_2014.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+do+you+think+of+when+i+say+the+word+design
found 13 videos: [['/talks/sebastian_deterding_what_your_designs_say_about_you', '2012'], ['/talks/leyla_acaroglu_paper_beats_plastic_how_to_rethink_environmental_folklore', '2014'], ['/talks/julian_treasure_why_architects_need_to_use_their_ears', '2012'], ['/talks/regina_dugan_from_mach_20_glider_to_hummingbird_drone', '2012'], ['/talks/margaret_gould_stewart_how_giant_websites_design_for_you_and_a_billion_others_too', '2014'], ['/talks/tristan_harris_how_better_tech_could_protect_us_from_distraction', '2016'], ['/talks/bj_miller_what_really_matters_at_the_end_of_life', '2015'], ['/talks/bob_mankoff_anatomy_of_a_new_yorker_cartoon', '2013'], ['/talks/philippa_neave_the_unexpected_challenges_of_a_country_s_first_election', '2016'], ['/talks/jeff_speck_the_walkable_city', '2013'], ['/talks/john_maeda_how_art_technology_and_design_inform_creative_leaders', '2012'], ['/talks/andy_yen_think_your_email_s_private_think_again', '2015'], ['/talks/barry_schwartz_the_way_we_think_about_work_is_broken', '2015']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+probably+think+of+things+like+this+finely+crafted+objects+that+you+can+hold+in+your+hand+or+maybe+logos+and+posters+and+maps+that+visually+explain+things+classic+icons+of+timeless+design
found 1 videos: [['/talks/margaret_gould_stewart_how_giant_websites_design_for_you_and_a_billion_others_too', '2014']]
selected: /talks/margaret_gould_stewart_how_giant_websites_design_for_you_and_a_billion_others_too
sleep 2 seconds to avoid blocking
------<1396>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MargaretWertheim_2009.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+june+said+to+talk+about+a+project+that+my+twin+sister+and+i+have+been+doing+for+the+past+three+and+half+years+we+re+crocheting+a+coral+reef
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+we+ve+actually+been+now+joined+by+hundreds+of+people+around+the+world+who+are+doing+it+with+us++indeed+thousands+of+people+have+actually+been+involved+in+this+project+in+many+of
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=its+different+aspects++it+s+a+project+that+now+reaches+across+three+continents
found 1 videos: [['/talks/margaret_wertheim_the_beautiful_math_of_coral', '2009']]
selected: /talks/margaret_wertheim_the_beautiful_math_of_coral
sleep 5 seconds to avoid blocking
------<1397>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MariaBezaitis_2013S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+have+heard+that+phrase+uttered+by+your+friends++family+schools+and+the+media+for+decades+it+s+a+norm++it+s+a+social+norm
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+it+s+a+special+kind+of+social+norm++because+it+s+a+social+norm+that+wants+to+tell
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=us+who+we+can+relate+to+and+who+we+shouldn+t+relate+to+don+t+talk+to+strangers+says
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=from+anyone+who+s+not+familiar+to+you++stick+with+the+people+you+know++stick+with+people+like+you
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+we+re+at+our+best+we+reach+out+to+people+who+are+not+like+us++because+when+we+do+that+we+learn+from+people+who+are+not+like+us
found 1 videos: [['/talks/dame_ellen_macarthur_the_surprising_thing_i_learned_sailing_solo_around_the_world', '2015']]
selected: /talks/dame_ellen_macarthur_the_surprising_thing_i_learned_sailing_solo_around_the_world
sleep 5 seconds to avoid blocking
------<1398>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MarianaMazzucato_2013G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+you+ever+asked+yourselves+why+it+is+that+companies+the+really+cool+companies+the+innovative+ones+the+creative+new+economy+type+companies
found 1 videos: [['/talks/mariana_mazzucato_government_investor_risk_taker_innovator', '2013']]
selected: /talks/mariana_mazzucato_government_investor_risk_taker_innovator
sleep 5 seconds to avoid blocking
------<1399>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MarianBantjes_2010.stm
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=oh+beloved+dentist+your+rubber+fingers+in+my+mouth+your+voice+so+soft+and+muffled
found 1 videos: [['/talks/marian_bantjes_intricate_beauty_by_design', '2010']]
selected: /talks/marian_bantjes_intricate_beauty_by_design
sleep 5 seconds to avoid blocking
------<1400>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MarianoSigman_2016.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+have+historical+records+that+allow+us+to+know+how+the+ancient+greeks+dressed+how+they+lived+how+they+fought++but+how+did+they+think
found 1 videos: [['/talks/mariano_sigman_your_words_may_predict_your_future_mental_health', '2016']]
selected: /talks/mariano_sigman_your_words_may_predict_your_future_mental_health
sleep 3 seconds to avoid blocking
------<1401>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MarinaAbramovic_2015.stm
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+there+is+a+young+girl++age+twenty+three+standing+in+the+middle+of+the+space
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+front+of+her+is+a+table+on+the+table+there
error: request timeout
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+of+the+objects+are+a+glass+of+water+a+coat+a+shoe
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+rose++but+also+the+knife+the+razor+blade++the+hammer
found 1 videos: [['/talks/marina_abramovic_an_art_made_of_trust_vulnerability_and_connection', '2015']]
selected: /talks/marina_abramovic_an_art_made_of_trust_vulnerability_and_connection
sleep 1 seconds to avoid blocking
------<1402>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MarisaFickJordan_2007G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+decorative+use+of+wire+in+southern+africa+dates+back+hundreds+of+years
found 1 videos: [['/talks/marisa_fick_jordan_the_wonder_of_zulu_wire_art', '2008']]
selected: /talks/marisa_fick_jordan_the_wonder_of_zulu_wire_art
sleep 4 seconds to avoid blocking
------<1403>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MarisaFickJordan_2007G2.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+wire+in+southern+africa+dates+back+hundreds+of+years
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+modernization+actually+brought+communication+and+a+whole+new+material+in+the+form+of+telephone+wire
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=rural+to+urban+migration+meant+that+newfound+industrial+materials
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+replace+hard+to+come+by
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=natural+grasses+so+here+you+can+see+the+change+from+use+starting+to+use
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+pieces+date+back+from+the+fortys+to+the+late+fiftys+in+the++ninetys+my+interest+and+passion+for+transitional+art+forms+led+me+to+a+new+form
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+came+from+a+squatter+camp+outside+durban
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+got+the+opportunity+to+start+working+with+this+community
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+that+point+and+started+developing+really+and+mentoring+them+in+terms+of+scale+in+terms+of+the+design+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+project+soon+grew+from+five+to+fifty+weavers+in+about+a+year
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=soon+we+had+outgrown+the+scrap+yards+what+they+could+provide+so+we+coerced+a+wire+manufacturer+to+help+us+and+not
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=only+to+supply+the+materials+on+bobbins+but+to+produce+to+our+color+specifications
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+the+same+time+i+was+thinking+well+there+s+lots+of+possibility+here+to+produce+contemporary+products+away+from+the+ethnic+a+little+bit+more+contemporary
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+developed+a+whole+range+around+mass+produced+range
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+obviously+fitted+into+a+much+higher+end+decor+market+that+could+be+exported+and+also+service+our+local+market
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+started+experimenting+as+you+can+see+in+terms+of+shapes
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=forms+the+scale+became+very+important+and+it+s
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=become+our+pet+project+it+s+successful+it+s+been+running+for+twelve+years+and
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+supply+the+conran+shops+and+donna+karan+and+so+it+s+kind+of+great
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+our+group+our+main+group+of+weavers+they+come+on+a+weekly+basis+to+durban+they+all+have+bank+accounts+they+ve+all+moved+back+to+the+rural+area+where+they+came+from
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+a+weekly+turnaround+of+production
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+the+community+that+i+originally+showed+you+the+slide+of+and+that+s+also+modernized+today+and+it+s+supporting+work+for+three+hundred+weavers
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+rest+says+it+all
found 0 videos: []
sleep 3 seconds to avoid blocking
error: no video is found.
sleep 2 seconds to avoid blocking
------<1404>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MarkApplebaum_2012X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thought+if+i+skipped+it+might+help+my+nerves+but+i+m
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=actually+having+a+paradoxical+reaction+to+that+so+that+was+a+bad+idea+anyway+i+was+really+delighted+to+receive+the+invitation
found 1 videos: [['/talks/mark_applebaum_the_mad_scientist_of_music', '2012']]
selected: /talks/mark_applebaum_the_mad_scientist_of_music
sleep 2 seconds to avoid blocking
------<1405>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MarkBezos_2011U.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=back+in+new+york+i+am+the+head+of+development+for+a+non+profit+called+robin+hood+when+i+m+not+fighting+poverty+i+m+fighting+fires+as+the+assistant+captain+of+a+volunteer+fire+company
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+in+our+town+where+the+volunteers+supplement+a+highly+skilled+career+staff+you+have+to+get+to+the+fire+scene+pretty+early+to+get+in+on
found 1 videos: [['/talks/mark_bezos_a_life_lesson_from_a_volunteer_firefighter', '2011']]
selected: /talks/mark_bezos_a_life_lesson_from_a_volunteer_firefighter
sleep 1 seconds to avoid blocking
------<1406>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MarkBittman_2007P.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=write+about+food+i+write+about+cooking+i+take+it+quite+seriously++but+i+m+here+to+talk+about+something+that+s
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=become+very+important+to+me+in+the+last+year+or+two+it+is+about+food+but+it+s+not+about
found 2 videos: [['/talks/dan_gilbert_why_we_make_bad_decisions', '2008'], ['/talks/dan_gilbert_the_surprising_science_of_happiness', '2006']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=start+with+this+picture+of+a+beautiful+cow++i+m+not+a+vegetarian+this+is+the+old+nixon+line+right+but+i+still+think+that
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now++that+is+only+a+little+bit+hyperbolic+and+why+do+i+say+it
found 4 videos: [['/talks/margaret_wertheim_the_beautiful_math_of_coral', '2009'], ['/talks/mark_bittman_what_s_wrong_with_what_we_eat', '2008'], ['/talks/sheila_patek_the_shrimp_with_a_kick', '2007'], ['/talks/bruce_mccall_what_is_retro_futurism', '2009']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+only+once+before+has+the+fate+of+individual+people
found 7 videos: [['/talks/amy_tan_where_does_creativity_hide', '2008'], ['/talks/mark_bittman_what_s_wrong_with_what_we_eat', '2008'], ['/talks/wade_davis_dreams_from_endangered_cultures', '2007'], ['/talks/nathan_wolfe_the_jungle_search_for_viruses', '2009'], ['/talks/clay_shirky_how_social_media_can_make_history', '2009'], ['/talks/richard_preston_the_mysterious_lives_of_giant_trees', '2008'], ['/talks/david_logan_tribal_leadership', '2009']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+fate+of+all+of+humanity+been+so+intertwined++there+was+the+bomb
found 1 videos: [['/talks/mark_bittman_what_s_wrong_with_what_we_eat', '2008']]
selected: /talks/mark_bittman_what_s_wrong_with_what_we_eat
sleep 3 seconds to avoid blocking
------<1407>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MarkForsyth_2012X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+my+favorite+words+in+the+whole+of+the+oxford+english+dictionary+is+snollygoster
found 1 videos: [['/talks/mark_forsyth_what_s_a_snollygoster_a_short_lesson_in_political_speak', '2012']]
selected: /talks/mark_forsyth_what_s_a_snollygoster_a_short_lesson_in_political_speak
sleep 4 seconds to avoid blocking
------<1408>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MarkhamNolan_2012S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+been+a+journalist+now+since+i+was+about+seventeen
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+s+an+interesting+industry+to+be+in+at+the+moment+because+as+you+all+know+there+s+a+huge+amount+of+upheaval+going+on+in+media+and+most+of+you+probably+know+this+from+the+business+angle+which+is+that+the
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=business+model+is+pretty+screwed+and+as+my+grandfather+would+say
found 1 videos: [['/talks/markham_nolan_how_to_separate_fact_and_fiction_online', '2012']]
selected: /talks/markham_nolan_how_to_separate_fact_and_fiction_online
sleep 5 seconds to avoid blocking
------<1409>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MarkKendall_2013G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+a+pleasure+to+be+here+in+edinburgh++scotland+the+birthplace+of+the+needle+and+syringe++less+than+a+mile+from+here+in+this+direction
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+scotsman+filed+his+very+first+patent+on+the+needle+and+syringe+his+name+was+alexander+wood++and+it+was+at+the+royal+college+of
error: request timeout
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+blows+my+mind+when+i+look+at+it+even+today+is+that+it+looks+almost+identical+to+the+needle+in+use+today++yet+it+s+one+hundred+and+sixty+years+old
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+we+turn+to+the+field+of+vaccines+most+vaccines+are+delivered+with+the+needle+and
found 1 videos: [['/talks/mark_kendall_demo_a_needle_free_vaccine_patch_that_s_safer_and_way_cheaper', '2014']]
selected: /talks/mark_kendall_demo_a_needle_free_vaccine_patch_that_s_safer_and_way_cheaper
sleep 1 seconds to avoid blocking
------<1410>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MarkPagel_2011G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=each+of+you+possesses+the+most+powerful++dangerous+and+subversive+trait+that+natural+selection+has+ever+devised
found 1 videos: [['/talks/mark_pagel_how_language_transformed_humanity', '2011']]
selected: /talks/mark_pagel_how_language_transformed_humanity
sleep 4 seconds to avoid blocking
------<1411>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MarkPlotkin_2014G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+scientist+who+works+in+the+rainforest+to+document+how+people+use+local+plants+i+ve+been+doing+this+for+a+long+time
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+want+to+tell+you+these+people+know+these+forests+and+these+medicinal+treasures+better+than+we+do+and+better+than+we+ever+will
found 1 videos: [['/talks/mark_plotkin_what_the_people_of_the_amazon_know_that_you_don_t', '2014']]
selected: /talks/mark_plotkin_what_the_people_of_the_amazon_know_that_you_don_t
sleep 3 seconds to avoid blocking
------<1412>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MarkRonson_2014.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+assuming+everyone+here+has+watched+a+ted+talk+online+at+one+time+or+another+right
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+what+i+m+going+to+do+is+play+this+this+is+the+song+from+the+ted+talks+online
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+slow+it+down+because+things+sound+cooler+when+they+re+slower
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+do+so+in+a+way+that+tells+a+story+tod+machover+something+nobody+s+ever+heard+before+ks+i+have+a+crossfader+julian+treasure+i+call+this+the+mixer
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=computers+and+synthesizers+to+create+works+it+s+a+language+that+s+still
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=turn+on+the+radio+pop+into+the+discotheque+you+will+know+what+this+person+is+doing+moving+to+the+music
found 1 videos: [['/talks/mark_ronson_how_sampling_transformed_music', '2014']]
selected: /talks/mark_ronson_how_sampling_transformed_music
sleep 5 seconds to avoid blocking
------<1413>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MarkRoth_2010.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+talk+to+you+today+about+my+work+on+suspended+animation
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now++usually+when+i+mention+suspended+animation++people+will+flash+me+the+vulcan+sign+and+laugh++but+now+i+m+not+talking+about+gorking+people+out+to+fly+to+mars+or+even+pandora
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=much+fun+as+that+may+be+i+m+talking+about
found 4 videos: [['/talks/emily_levine_a_theory_of_everything', '2009'], ['/talks/james_randi_homeopathy_quackery_and_fraud', '2010'], ['/talks/john_maeda_my_journey_in_design', '2009'], ['/talks/dennis_hong_my_seven_species_of_robot_and_how_we_created_them', '2010']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+concept+of+using+suspended+animation
found 3 videos: [['/talks/mark_roth_suspended_animation_is_within_our_grasp', '2010'], ['/talks/george_dyson_the_birth_of_the_computer', '2008'], ['/talks/dennis_hong_my_seven_species_of_robot_and_how_we_created_them', '2010']]
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+what+do+i+mean+when+i+say+suspended+animation+it+is+the+process+by+which
found 1 videos: [['/talks/mark_roth_suspended_animation_is_within_our_grasp', '2010']]
selected: /talks/mark_roth_suspended_animation_is_within_our_grasp
sleep 4 seconds to avoid blocking
------<1414>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MarkShaw_2013.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+here+to+show+you+how+something+you+can+t+see+can+be+so+much+fun+to+look+at+you+re+about+to+experience
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+new++available+and+exciting+technology+that+s+going+to+make+us+rethink+how+we+waterproof+our+lives+what+i+have+here+is+a+cinder+block
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+we+ve+coated+half+with+a+nanotechnology+spray+that+can+be+applied+to+almost+any+material++it+s+called+ultra+ever+dry++and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+you+apply+it+to+any+material+it+turns+into+a+superhydrophobic+shield
found 1 videos: [['/talks/mark_shaw_one_very_dry_demo', '2013']]
selected: /talks/mark_shaw_one_very_dry_demo
sleep 4 seconds to avoid blocking
------<1415>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MarkusFischer_2011G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=dream+of+mankind+to+fly+like+a+bird++birds+are+very+agile+they+fly+not+with+rotating+components+so+they+fly+only+by+flapping+their
found 1 videos: [['/talks/markus_fischer_a_robot_that_flies_like_a_bird', '2011']]
selected: /talks/markus_fischer_a_robot_that_flies_like_a_bird
sleep 2 seconds to avoid blocking
------<1416>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MarlaSpivak_2013G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+our+life+with+bees
found 16 videos: [['/talks/marla_spivak_why_bees_are_disappearing', '2013'], ['/talks/anand_varma_the_first_21_days_of_a_bee_s_life', '2015'], ['/talks/emma_bryce_the_case_of_the_vanishing_honeybees', '2014'], ['/talks/beau_lotto_amy_o_toole_science_is_for_everyone_kids_included', '2012'], ['/talks/gary_greenberg_the_beautiful_nano_details_of_our_world', '2012'], ['/talks/louie_schwartzberg_the_hidden_beauty_of_pollination', '2011'], ['/talks/renata_salecl_our_unhealthy_obsession_with_choice', '2014'], ['/talks/pam_warhurst_how_we_can_eat_our_landscapes', '2012'], ['/talks/jane_hirshfield_the_art_of_the_metaphor', '2012'], ['/talks/don_tapscott_four_principles_for_the_open_world', '2012'], ['/talks/anand_giridharadas_a_tale_of_two_americas_and_the_mini_mart_where_they_collided', '2015'], ['/talks/edward_tenner_unintended_consequences', '2011'], ['/talks/alex_steffen_the_shareable_future_of_cities', '2011'], ['/talks/maya_penn_meet_a_young_entrepreneur_cartoonist_designer_activist', '2014'], ['/talks/vijay_kumar_the_future_of_flying_robots', '2015'], ['/talks/dustin_yellin_a_journey_through_the_mind_of_an_artist', '2015']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+is+our+life+without+bees
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=bees+are+the+most+important+pollinators+of+our+fruits+and+vegetables+and+flowers+and+crops+like+alfalfa+hay+that+feed+our+farm+animals+more+than
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+third+of+the+world+s+crop+production+is+dependent+on+bee+pollination+but+the+ironic+thing+is+that+bees+are+not+out+there+pollinating+our+food
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=intentionally+they+re+out+there+because+they+need+to+eat+bees+get+all+of+the+protein+they+need+in+their+diet+from+pollen
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+all+of+the+carbohydrates+they+need+from
found 4 videos: [['/talks/nicole_avena_how_sugar_affects_the_brain', '2014'], ['/talks/russell_foster_why_do_we_sleep', '2013'], ['/talks/marla_spivak_why_bees_are_disappearing', '2013'], ['/talks/robert_lustig_sugar_hiding_in_plain_sight', '2014']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+as+they+move+from+flower+to+flower+basically+on+a+shopping+trip+at+the+local+floral+mart+they+end+up+providing+this+valuable+pollination+service
found 1 videos: [['/talks/marla_spivak_why_bees_are_disappearing', '2013']]
selected: /talks/marla_spivak_why_bees_are_disappearing
sleep 4 seconds to avoid blocking
------<1417>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MarleneZuk_2015W.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+are+more+afraid+of+insects+than+they+are+of+dying+at+least+according+to+a+one+thousand+nine+hundred+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=seventy+three+book+of+lists+survey+which
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=online+best+worst+funniest+lists+that+you
found 1 videos: [['/talks/marlene_zuk_what_we_learn_from_insects_sex_lives', '2015']]
selected: /talks/marlene_zuk_what_we_learn_from_insects_sex_lives
sleep 3 seconds to avoid blocking
------<1418>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MarlonPeterson_2016S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+become+famous++i+will+tell+everyone+that+i+know+a+hero+named+marlon+peterson
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=heroes+rarely+look+like+me+in+fact++i+m+what+garbage+looks
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+the+most+appealing+way+to+open+a+talk+or+start+a+conversation+and+perhaps+you+have+some+questions+going+through+your+head+about+that
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=why+would+this+man+say+such+a+thing+about+himself+what+does+he+mean
found 11 videos: [['/talks/marlon_peterson_am_i_not_human_a_call_for_criminal_justice_reform', '2017'], ['/talks/jonathan_tepperman_the_risky_politics_of_progress', '2016'], ['/talks/sheryl_sandberg_so_we_leaned_in_now_what', '2014'], ['/talks/the_ted_interview_sir_ken_robinson_still_wants_an_education_revolution', '2018'], ['/talks/laurel_braitman_depressed_dogs_cats_with_ocd_what_animal_madness_means_for_us_humans', '2014'], ['/talks/steven_pinker_and_rebecca_newberger_goldstein_the_long_reach_of_reason', '2014'], ['/talks/leah_chase_and_pat_mitchell_an_interview_with_the_queen_of_creole_cuisine', '2017'], ['/talks/gretchen_carlson_david_brooks_political_common_ground_in_a_polarized_united_states', '2017'], ['/talks/emma_marris_nature_is_everywhere_we_just_need_to_learn_to_see_it', '2016'], ['/talks/karima_bennoune_when_people_of_muslim_heritage_challenge_fundamentalism', '2014'], ['/talks/susan_etlinger_what_do_we_do_with_all_this_big_data', '2014']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+can+someone+view+him+as+a+as+a+hero+when+he+sees+himself+as+garbage
found 1 videos: [['/talks/marlon_peterson_am_i_not_human_a_call_for_criminal_justice_reform', '2017']]
selected: /talks/marlon_peterson_am_i_not_human_a_call_for_criminal_justice_reform
sleep 1 seconds to avoid blocking
------<1419>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MartineRothblatt_2015.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+guess+what+we+re+going+to+do+is+we+re+going+to
found 7 videos: [['/talks/john_green_the_nerd_s_guide_to_learning_everything_online', '2015'], ['/talks/danny_hillis_the_internet_could_crash_we_need_a_plan_b', '2013'], ['/talks/amy_webb_how_i_hacked_online_dating', '2013'], ['/talks/norman_spack_how_i_help_transgender_teens_become_who_they_want_to_be', '2014'], ['/talks/luma_mufleh_don_t_feel_sorry_for_refugees_believe_in_them', '2017'], ['/talks/peter_weinstock_lifelike_simulations_that_make_real_life_surgery_safer', '2017'], ['/talks/jean_paul_mari_the_chilling_aftershock_of_a_brush_with_death', '2015']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=talk+about+your+life+and+using+some+pictures+that+you+shared+with+me+and+i+think+we+should+start+right+here+with+this+one++okay+now
found 7 videos: [['/talks/martine_rothblatt_my_daughter_my_wife_our_robot_and_the_quest_for_immortality', '2015'], ['/talks/chip_kidd_the_art_of_first_impressions_in_design_and_life', '2015'], ['/talks/bill_and_melinda_gates_why_giving_away_our_wealth_has_been_the_most_satisfying_thing_we_ve_done', '2014'], ['/talks/nicholas_negroponte_a_30_year_history_of_the_future', '2014'], ['/talks/nick_bostrom_what_happens_when_our_computers_get_smarter_than_we_are', '2015'], ['/talks/james_lyne_everyday_cybercrime_and_what_you_can_do_about_it', '2013'], ['/talks/richard_ledgett_the_nsa_responds_to_edward_snowden_s_ted_talk', '2014']]
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=son+eli++he+was+about+age+five+this+is+taken+in+nigeria+right+after+having+taken+the+washington+d+c+bar+exam+ca
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=okay+but+this+doesn+t+really+look+like+a+martine+mr
found 1 videos: [['/talks/bob_mankoff_anatomy_of_a_new_yorker_cartoon', '2013']]
selected: /talks/bob_mankoff_anatomy_of_a_new_yorker_cartoon
sleep 2 seconds to avoid blocking
------<1420>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MartinHanczyc_2011S.stm
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+has+been+a+huge+divide+between+what+people+consider+to+be+non+living+systems+on+one+side
found 1 videos: [['/talks/martin_hanczyc_the_line_between_life_and_not_life', '2011']]
selected: /talks/martin_hanczyc_the_line_between_life_and_not_life
sleep 3 seconds to avoid blocking
------<1421>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MartinJacques_2010S.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=changing+with+really+remarkable+speed++if+you+look+at+the+chart+at+the+top+here+you+ll+see+that+in
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+goldman+sachs+projections+suggest+that+the+chinese+economy+will+be+almost+the+same+size+as+the+american+economy+and+if+you+look+at+the
found 1 videos: [['/talks/martin_jacques_understanding_the_rise_of_china', '2011']]
selected: /talks/martin_jacques_understanding_the_rise_of_china
sleep 2 seconds to avoid blocking
------<1422>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MartinPistorius_2015X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=being+trapped+inside+your+body++a+body+that+doesn+t+respond+to
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=surrounded+by+people+yet+utterly+alone++wishing+you+could+reach+out+to+connect
found 1 videos: [['/talks/martin_pistorius_how_my_mind_came_back_to_life_and_no_one_knew', '2015']]
selected: /talks/martin_pistorius_how_my_mind_came_back_to_life_and_no_one_knew
sleep 2 seconds to avoid blocking
------<1423>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MartinRees_2005G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+something+in+common+their+interests+in+business+lie+on+or+near+the+earth+s+surface++the+odd+one+out+is+an
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+talk+will+be+in+two+parts+i+ll+talk+first+as+an+astronomer++and+then+as+a+worried+member+of+the+human+race
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+remembering+that+darwin+showed+how+we+re+the+outcome+of+four+billion+years+of+evolution
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+what+we+try+to+do+in+astronomy+and+cosmology+is+to+go+back+before+darwin+s+simple+beginning+to+set+our+earth+in+a+cosmic+context
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+let+me+just+run+through+a+few+slides
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+was+the+impact+that+happened+last+week+on+a+comet
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+they+d+sent+a+nuke++it+would+have+been+rather+more+spectacular+than+what+actually+happened+last+monday+so+that+s+another+project+for+nasa+that+s
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=mars+from+the+european+mars+express
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+artist+s+impression+turned+into+reality+when+a+parachute+landed+on+titan++saturn+s+giant+moon
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+landed+on+the+surface++this+is+pictures+taken+on+the+way+down+that+looks+like+a+coastline+it+is+indeed+but+the+ocean+is+liquid+methane+the+temperature+minus+one+hundred+and+seventy+degrees+centigrade
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+we+go+beyond+our+solar+system
found 5 videos: [['/talks/martin_rees_is_this_our_final_century', '2007'], ['/talks/stephen_petranek_10_ways_the_world_could_end', '2007'], ['/talks/david_deutsch_chemical_scum_that_dream_of_distant_quasars', '2006'], ['/talks/carolyn_porco_this_is_saturn', '2007'], ['/talks/juan_enriquez_using_biology_to_rethink_the_energy_challenge', '2007']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=twinkly+points+of+light+each+one+is+like+a+sun+with+a+retinue+of+planets+orbiting+around+it
found 1 videos: [['/talks/martin_rees_is_this_our_final_century', '2007']]
selected: /talks/martin_rees_is_this_our_final_century
sleep 5 seconds to avoid blocking
------<1424>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MartinReeves_2016S.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+you+are+a+product+designer+and+you+ve+designed+a+product+a+new+type+of+product++called+the+human+immune+system
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+re+pitching+this+product+to+a
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+s+call+him+bob++i+think+we+all+know+at+least+one+bob+right
found 2 videos: [['/talks/gretchen_carlson_david_brooks_political_common_ground_in_a_polarized_united_states', '2017'], ['/talks/roman_mars_why_city_flags_may_be_the_worst_designed_thing_you_ve_never_noticed', '2015']]
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=bob++i+ve+got+this+incredible+idea+for+a+completely+new+type+of+personal+health+product++it+s+called+the+human+immune+system
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+can+see+from+your+face+that+you+re+having+some+problems+with+this+don+t+worry+i+know+it+s+very+complicated+i+don+t+want+to+take+you+through+the
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+just+want+to+tell+you+about+some+of+the+amazing+features+of+this+product
found 14 videos: [['/talks/jeremy_heimans_what_new_power_looks_like', '2014'], ['/talks/martin_reeves_how_to_build_a_business_that_lasts_100_years', '2016'], ['/talks/leyla_acaroglu_paper_beats_plastic_how_to_rethink_environmental_folklore', '2014'], ['/talks/mckenna_pope_want_to_be_an_activist_start_with_your_toys', '2014'], ['/talks/tony_fadell_the_first_secret_of_design_is_noticing', '2015'], ['/talks/katie_bouman_how_to_take_a_picture_of_a_black_hole', '2017'], ['/talks/jason_shen_looking_for_a_job_highlight_your_ability_not_your_experience', '2018'], ['/talks/matt_russo_what_does_the_universe_sound_like_a_musical_tour', '2018'], ['/talks/tabetha_boyajian_the_most_mysterious_star_in_the_universe', '2016'], ['/talks/jeremy_howard_the_wonderful_and_terrifying_implications_of_computers_that_can_learn', '2014'], ['/talks/andres_ruzo_the_boiling_river_of_the_amazon', '2016'], ['/talks/mandy_len_catron_falling_in_love_is_the_easy_part', '2015'], ['/talks/emily_nagoski_the_truth_about_unwanted_arousal', '2018'], ['/talks/rob_knight_how_our_microbes_make_us_who_we_are', '2015']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=first+of+all+it+cleverly+uses+redundancy+by+having+millions+of+copies+of+each+component+leukocytes+white+blood+cells
found 1 videos: [['/talks/martin_reeves_how_to_build_a_business_that_lasts_100_years', '2016']]
selected: /talks/martin_reeves_how_to_build_a_business_that_lasts_100_years
sleep 1 seconds to avoid blocking
------<1425>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MartinSeligman_2004.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=an+encounter+i+had+with+cnn
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=summarizes+what+i+m+going+to+be+talking+about+today+which+is+the+eleventh+reason+to+be+optimistic+the
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ten+of+them+i+m+going+to+give+you+the+eleventh++so+they+came+to+me+cnn+and+they+said+professor+seligman
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=would+you+tell+us+about+the+the+state+of+psychology+today+we+d+like+to+interview+you+about+that
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=really+better+give+you+a+longer+sound+bite+how+many+words+do+i+get+this+time
found 2 videos: [['/talks/david_pogue_simplicity_sells', '2006'], ['/talks/aubrey_de_grey_a_roadmap_to_end_aging', '2006']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=give+you+a+real+sound+bite++this+time+you+can+have+three+words++professor+seligman+what+is+the+state+of+psychology+today
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+what+i+m+going+to+be+talking+about+i+want+to+say+why+psychology+was+good+why+it+was+not+good+and+how+it
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=may+become+in+the+next+ten+years+good+enough++and+by+parallel
found 1 videos: [['/talks/burt_rutan_the_real_future_of_space_exploration', '2006']]
selected: /talks/burt_rutan_the_real_future_of_space_exploration
sleep 1 seconds to avoid blocking
------<1426>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MartinVilleneuve_2013.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+made+a+film+that+was+impossible+to+make++but
found 10 videos: [['/talks/martin_villeneuve_how_i_made_an_impossible_film', '2013'], ['/talks/vincent_moon_and_nana_vasconcelos_hidden_music_rituals_around_the_world', '2014'], ['/talks/natalie_warne_being_young_and_making_an_impact', '2011'], ['/talks/sarah_kay_if_i_should_have_a_daughter', '2011'], ['/talks/jeremy_gilley_one_day_of_peace', '2011'], ['/talks/rob_legato_the_art_of_creating_awe', '2012'], ['/talks/charmian_gooch_meet_global_corruption_s_hidden_players', '2013'], ['/talks/john_hunter_teaching_with_the_world_peace_game', '2011'], ['/talks/sugata_mitra_build_a_school_in_the_cloud', '2013'], ['/talks/beeban_kidron_the_shared_wonder_of_film', '2012']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+didn+t+know+it+was+impossible+and
found 5 videos: [['/talks/lesley_hazleton_the_doubt_essential_to_faith', '2013'], ['/talks/charles_hazlewood_trusting_the_ensemble', '2011'], ['/talks/roger_mcnamee_6_ways_to_save_the_internet', '2011'], ['/talks/luis_von_ahn_massive_scale_online_collaboration', '2011'], ['/talks/ash_beckham_when_to_take_a_stand_and_when_to_let_it_go', '2015']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+how+i+was+able+to+do+it
found 15 videos: [['/talks/cheryl_hayashi_the_magnificence_of_spider_silk', '2011'], ['/talks/james_gillies_dark_matter_the_matter_we_can_t_see', '2013'], ['/talks/peter_diamandis_abundance_is_our_future', '2012'], ['/talks/regina_dugan_from_mach_20_glider_to_hummingbird_drone', '2012'], ['/talks/simon_lewis_don_t_take_consciousness_for_granted', '2011'], ['/talks/sandra_fisher_martins_the_right_to_understand', '2011'], ['/talks/danny_hillis_back_to_the_future_of_1994', '2012'], ['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013'], ['/talks/roger_stein_a_bold_new_way_to_fund_drug_research', '2014'], ['/talks/deborah_rhodes_a_test_that_finds_3x_more_breast_tumors_and_why_it_s_not_available_to_you', '2011'], ['/talks/charles_hazlewood_trusting_the_ensemble', '2011'], ['/talks/david_birch_a_new_way_to_stop_identity_theft', '2012'], ['/talks/morgan_spurlock_the_greatest_ted_talk_ever_sold', '2011'], ['/talks/seth_shostak_et_is_probably_out_there_get_ready', '2012'], ['/talks/ben_goldacre_battling_bad_science', '2011']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=mars+et+avril+is+a+science+fiction+film+it+s+set+in+montreal+some+fifty+years+in+the+future++no+one+had+done+that
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=kind+of+movie+in+quebec+before+because+it+s+expensive+it+s+set
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+future+and+it+s+got+tons+of+visual+effects+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+shot+on+green+screen++yet+this+is+the+kind+of+movie+that+i+wanted+to+make+ever+since+i+was+a+kid+really+back+when+i+was+reading+some+comic+books+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=dreaming+about+what+the+future+might+be++when+american
found 8 videos: [['/talks/martin_villeneuve_how_i_made_an_impossible_film', '2013'], ['/talks/stephen_burt_why_people_need_poetry', '2014'], ['/talks/ben_saunders_to_the_south_pole_and_back_the_hardest_105_days_of_my_life', '2014'], ['/talks/laura_schulz_the_surprisingly_logical_minds_of_babies', '2015'], ['/talks/mellody_hobson_color_blind_or_color_brave', '2014'], ['/talks/wadah_khanfar_a_historic_moment_in_the_arab_world', '2011'], ['/talks/anant_agarwal_why_massive_open_online_courses_still_matter', '2014'], ['/talks/daniel_wolpert_the_real_reason_for_brains', '2011']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+only+two+point+three+million+so+you+might+wonder+what+s+the+deal+here+how+did+i+do+this+well
found 3 videos: [['/talks/josh_luber_why_sneakers_are_a_great_investment', '2015'], ['/talks/paul_greenberg_the_four_fish_we_re_overeating_and_what_to_eat_instead', '2015'], ['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+two+things+first+it+s+time++when+you+don+t+have+money+you+must+take+time+and+it+took+me+seven+years+to+do
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+got+tons+and+tons+of+generosity+from+everyone+involved++and+it+seems+like+every+department+had+nothing+so+they+had+to+rely+on+our+on+our+creativity+and+turn+every+problem
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=into+an+opportunity++and+that+brings+me+to+the+point+of+my+talk+actually+how+constraints+big+creative+constraints+can+boost+creativity
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+did+some+graphic+novels+but+they+weren+t+your+usual+graphic+novels+they+were+books+telling+a+science+fiction+story+through+images+and+text+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=most+of+the+actors+who+are+now+starring+in+the+movie+adaptation+they+were+already+involved+in+these+in+these+books+portraying+characters+into
found 1 videos: [['/talks/martin_villeneuve_how_i_made_an_impossible_film', '2013']]
selected: /talks/martin_villeneuve_how_i_made_an_impossible_film
sleep 5 seconds to avoid blocking
------<1427>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MarvinMinsky_2003.stm
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+part+of+psychology+do+they+think+is+hard+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+say+well+what+about+thinking+and+emotions+most+people+will+say+emotions+are+terribly+hard+they
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=re+incredibly+complex+they+can+t+i+have+no+idea+of+how+they+work
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+thinking+is+really+very+straightforward+it+s+just+sort+of+some+kind+of+logical+reasoning+or+something
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+that+s+not+the+hard+part+so+here+s+a+list+of+problems
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+come+up+one+nice+problem+is+what+do+we+do+about+health+the+other+day+i+was+reading+something+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+person+said+probably+the+largest+single+cause+of+disease+is+handshaking
error: request timeout
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+was+a+little+study+about+people+who+don+t+handshake+and
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=comparing+them+with+ones+who+do+handshake
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+haven+t+the+foggiest+idea+of+where+you+find+the+ones+that+don+t+handshake++because+they+must+be+hiding
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+people+who+avoid+that
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+thirty+percent+less+infectious+disease+or+something+or+maybe+it+was+thirty+one+and+a+quarter+percent
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+if+you+really+want+to+solve+the+problem+of+epidemics+and+so+forth+let+s+start+with+that+and+since+i+got+that+idea++i+ve+had+to
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=shake+hundreds+of+hands++and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+the+only+way+to+avoid+it+is+to+have+some+horrible+visible+disease+and
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+get+them+to+understand+that+what+they+re+being+told+is+a+whole+lot+of+nonsense
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+of+course+you+have+to+do+something+about+how+to+moderate+that+so+that+anybody+can
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+they+ll+listen+to+you+pollution+energy+shortage+environmental+diversity++poverty+how+do+we+make
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=re+lots+of+problems+to+worry+about+anyway+the+question+i+think+people+should+talk+about+and+it+s+absolutely+taboo+is+how+many+people+should+there+be
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+it+should+be+about+one+hundred+million+or
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+notice+that+a+great+many+of+these+problems+disappear+if+you+had+one+hundred+million+people+properly+spread+out
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+there+s+some+garbage+you+throw+it+away
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=preferably+where+you+can+t+see+it+and+it+will+rot+or+you
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=throw+it+into+the+ocean+and+some+fish+will+benefit+from+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+problem+is+how+many+people+should+there+be++and+it+s+a+sort+of+choice+we+have+to+make+most+people+are+about+sixty+inches+high+or+more
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=laws+so+if+you+make+them+this+big++by+using+nanotechnology+i+suppose
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+would+solve+the+problem+but+i+don+t+see+anybody+doing+any+research+on+making+people+smaller+now+it+s+nice+to+reduce+the+population+but+a+lot+of+people+want+to+have+children
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+there+s+one+solution+that+s+probably+only+a
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=re+lucky+you+ve+got+twenty+three+from+each+parent++sometimes+you+get+an+extra+one+or+drop+one+out+but
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+you+can+skip+the+grandparent+and+great+grandparent+stage+and+go+right+to+the
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+have+forty+six+people+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+give+them+a+scanner+or+whatever+you+need+and+they+look+at+their+chromosomes+and+each+of+them+says+which+one+he+likes+best+or+she
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=no+reason+to+have+just+two+sexes+any+more+even+so+each+child+has+forty+six+parents++and+i+suppose+you+could+let+each
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=group+of+forty+six+parents+have+fifteen+children+wouldn
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=t+that+be+enough++and+then+the+children+would+get+plenty+of+support+and+nurturing+and+mentoring+and
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+world+population+would+decline+very+rapidly+and+everybody+would+be+totally+happy
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=timesharing+is+a+little+further+off+in+the+future++and+there+s+this+great+novel+that+arthur+clarke+wrote+twice+called+against+the+fall+of+night
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+city+and+the+stars
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+re+both+wonderful+and+largely+the+same+except+that+computers+happened+in+between
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+arthur+was+looking+at+this+old+book+and+he+said+well+that+was+wrong+the+future+must+have+some+computers+so+in+the+second+version+of+it
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+are+one+hundred+billion+or+one+thousand+billion+people+on+earth++but
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+re+all+stored+on+hard+disks+or+floppies+or+whatever+they+have+in+the+future
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+let+a+few+million+of+them+out+at+a+time+a+person+comes+out+they+live+for+a+thousand+years
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=doing+whatever+they+do+and+then
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+it+s+time+to+go+back+for+a+billion+years+or+a+million+i+forget+the+numbers+don+t+matter
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+there+really+aren+t+very+many+people+on+earth+at+a+time++and+you+get+to+think+about+yourself+and+your+memories+and+before+you+go+back+into
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=your+memories+and+you+change+your+personality+and+so+forth++the+plot+of+the+book+is+that
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+that+the+people+who+designed+the+city+make+sure+that+every+now+and+then+an+entirely+new+person+is+created++and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+novel+a+particular+one+named+alvin+is+created+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+says+maybe+this+isn+t+the+best+way+and+wrecks+the+whole+system
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+don+t+think+the+solutions+that+i+proposed+are+good+enough+or+smart+enough++i+think+the+big+problem
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+understand+which+of+the+problems+we+re+facing+are+good+enough++therefore+we+have+to+build+super+intelligent+machines+like+hal
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+you+remember+at+some+point+in+the+book+for+two+thousand+and+one+hal+realizes+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+universe+is+too+big+and+grand+and+profound+for+those+really+stupid+astronauts+if+you+contrast+hal+s+behavior+with+the+triviality
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+the+people+on+the+spaceship+you+can+see+what+s+written+between+the+lines+well+what+are+we+going+to+do+about+that+we+could+get+smarter
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+that+we+re+pretty+smart+as+compared+to+chimpanzees
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+we+re+not+smart+enough+to+deal+with+the
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=colossal+problems+that+we+face+either+in
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=abstract+mathematics+or+in+figuring+out+economies+or
error: request timeout
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+one+thing+we+can+do+is+live+longer++and+nobody+knows+how+hard+that+is+but+we+ll+probably+find+out+in+a+few+years+you+see
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+two+forks+in+the+road+we+know+that
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+live+twice+as+long+as+chimpanzees+almost++and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=nobody+lives+more+than+one+hundred+and+twenty+years
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=reasons+that+aren+t+very+well+understood++but+lots+of+people+now+live+to+ninety+or+one+hundred+unless+they+shake+hands+too+much+or+something+like+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+maybe+if+we+lived+two+hundred+years+we+could+accumulate+enough+skills+and+knowledge+to
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+solve+some+problems+so+that+that+s+one+way+of+going+about+it++and+as+i+said+we+don+t+know+how+hard+that+is+it+might+be
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=long+as+the+chimpanzee+so+we+re+sort+of+three+and+a+half+or+four+times+have+four+times+the+longevity+of+most+mammals++and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+case+of+the+primates+we+have+almost+the+same+genes+we+only+differ+from+chimpanzees
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+present+state+of+knowledge+which+is+absolute+hogwash
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=maybe+by+just+a+few+hundred+genes++what+i+think+is+that+the+gene+counters+don+t+know+what+they+re+doing+yet
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=whatever+you+do+don+t+read+anything+about+genetics+that+s+published+within+your+lifetime+or+something
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+stuff+has+a+very+short+half+life+same+with+brain+science++and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+it+might+be+that+if+we+just+fix+four+or+five+genes++we+can+live+two+hundred
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+it+might+be+that+it+s+just+thirty+or+forty++and+i+doubt+that+it+s+several+hundred+so+this+is+something+that+people+will+be+discussing
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know+an+ethicist+is+somebody+who+sees+something+wrong+with+whatever+you+have+in+mind+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+very+hard+to+find+an+ethicist+who+considers+any+change+worth+making++because
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+about+the+consequences+and+of+course+we+re+not+responsible+for+the+consequences+of+what+we+re+doing+now+are+we
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+all+this+complaint+about+clones+and+yet+two+random+people+will+mate+and+have+this+child+and
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=pretty+rotten+genes+and+the+child+is+likely+to+come+out+to+be+average+which+by+chimpanzee+standards+is+very+good+indeed
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+we+do+have+longevity+then+we+ll+have+to+face+the+population+growth+problem+anyway+because+if+people+live+two+hundred+or+one+thousand+years++then+we+can+t+let+them+have
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+child+more+than+about+once+every+two+hundred+or+one+thousand+years++and+so+there+won+t+be+any+workforce
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+one+of+the+things+laurie+garrett+pointed+out+and+others+have+is+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+doesn+t+have+people+of+working+age+is+in+real+trouble+and+things+are+going+to+get+worse+because+there+s+nobody+to+educate+the+children+or+to
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=feed+the+old++and+when+i+m+talking+about+a+long+lifetime+of+course+i+don+t+want+somebody
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+s+two+hundred+years+old+to+be+like+our+image+of+what
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+which+is+dead+actually++you+know+there+s+about+four+hundred+different+parts+of+the+brain+which+seem+to+have+different+functions+nobody+knows+how+most
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+them+work+in+detail+but+we+do+know+that
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+re+lots+of+different+things+in+there+and+they+don+t+always+work+together+i+like+freud+s+theory+that+most+of+them+are+cancelling+each+other+out
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+if+you+think+of+yourself+as
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+a+sort+of+city+with+a+hundred+resources+then+when+you+re+afraid
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=discard+your+long+range+goals+but+you+may+think+deeply+and+focus+on+exactly+how+to+achieve+that+particular+goal+you+throw+everything+else+away+you+become+a+monomaniac
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+you+care+about+is+not+stepping+out+on+that+platform
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+when+you+re+hungry++food+becomes+more+attractive+and+so+forth++so+i+see+emotions+as
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=subsets+of+your+capability+emotion+is+not+something+added+to+thought+an+emotional+state+is+what+you+get+when+you+remove
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+hundred+or+two+hundred+of+your+normally+available+resources++so+thinking+of+emotions+as+the+opposite+of
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+something+less+than+thinking+is+immensely+productive+and+i+hope+in+the+next+few+years+to+show+that+this+will+lead+to+smart+machines+and+i+guess+i+better+skip+all+the
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=recognizes+that+a+certain+kind+of+problem+is+facing+you+this+is+a+problem+of+such+and+such+a+type++and+therefore
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+a+certain+way+or+ways+of+thinking+that+are+good+for+that
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=problem++so+i+think+the+future+main+problem+of+psychology+is+to+classify+types+of+predicaments+types+of+situations++types+of+obstacles
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+also+to+classify+available+and+possible+ways+to+think+and+pair+them+up++so+you+see+it+s+almost+like+a+pavlovian
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+lost+the+first+hundred+years+of+psychology+by+really+trivial+theories+where+you+say+how+do+people+learn+how+to+react+to
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=situation+what+i+m+saying+is+after+we+go+through+a+lot+of+levels++including+designing
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+huge+messy+system+with+thousands+of+ports+we+ll+end+up+again+with+the+central+problem+of+psychology
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+what+are+the+situations+but+what+are+the+kinds+of+problems+and+what+are+the+kinds+of+strategies+how+do+you+learn+them+how+do+you+connect
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=them+up+how+does+a+really+creative+person+invent+a+new+way+of+thinking+out+of+the+available+resources+and+and+so+forth+so
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+in+the+next+twenty+years+if+we+can+get+rid+of+all+of+the+traditional+approaches+to+artificial+intelligence+like+neural+nets+and+genetic+algorithms+and++rule+based+systems
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+just+turn+our+sights+a+little
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=bit+higher+to+say+can+we+make+a+system+that+can+use+all+those+things
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+the+right+kind+of+problem+some+problems+are+good+for+neural+nets+we+know+that+others+neural+nets+are+hopeless+on+them
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=genetic+algorithms+are+great+for+certain+things+i+suspect+i+know+what+they+re+bad+at++and+i+won+t+tell+you
found 0 videos: []
error: no video is found.
sleep 4 seconds to avoid blocking
------<1428>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MarwaAlSabouni_2016V.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=six+years+of+war+homs+is+now+a+half+destroyed+city
found 3 videos: [['/talks/marwa_al_sabouni_how_syria_s_architecture_laid_the_foundation_for_brutal_war', '2016'], ['/talks/melissa_fleming_a_boat_carrying_500_refugees_sunk_at_sea_the_story_of_two_survivors', '2015'], ['/talks/melissa_fleming_let_s_help_refugees_thrive_not_just_survive', '2014']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+family+and+i+were+lucky+our+place+is+still
found 17 videos: [['/talks/sakena_yacoobi_how_i_stopped_the_taliban_from_shutting_down_my_school', '2015'], ['/talks/anne_marie_slaughter_can_we_all_have_it_all', '2014'], ['/talks/robert_swan_let_s_save_the_last_pristine_continent', '2015'], ['/talks/khadija_gbla_my_mother_s_strange_definition_of_empowerment', '2015'], ['/talks/ameera_harouda_why_i_put_myself_in_danger_to_tell_the_stories_of_gaza', '2016'], ['/talks/mary_maker_why_i_fight_for_the_education_of_refugee_girls_like_me', '2018'], ['/talks/luma_mufleh_don_t_feel_sorry_for_refugees_believe_in_them', '2017'], ['/talks/lisa_genova_what_you_can_do_to_prevent_alzheimer_s', '2017'], ['/talks/sayu_bhojwani_immigrant_voices_make_democracy_stronger', '2016'], ['/talks/arik_hartmann_our_treatment_of_hiv_has_advanced_why_hasn_t_the_stigma_changed', '2018'], ['/talks/mac_stone_stunning_photos_of_the_endangered_everglades', '2015'], ['/talks/eve_abrams_the_human_stories_behind_mass_incarceration', '2018'], ['/talks/olutimehin_adegbeye_who_belongs_in_a_city', '2017'], ['/talks/susan_pinker_the_secret_to_living_longer_may_be_your_social_life', '2017'], ['/talks/dave_isay_everyone_around_you_has_a_story_the_world_needs_to_hear', '2015'], ['/talks/andrew_solomon_how_the_worst_moments_in_our_lives_make_us_who_we_are', '2014'], ['/talks/tim_ferriss_why_you_should_define_your_fears_instead_of_your_goals', '2017']]
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=although+for+two+years++we+were+like+prisoners+at+home++outside+there+were+demonstrations+and+battles+and+bombings+and+snipers
found 1 videos: [['/talks/marwa_al_sabouni_how_syria_s_architecture_laid_the_foundation_for_brutal_war', '2016']]
selected: /talks/marwa_al_sabouni_how_syria_s_architecture_laid_the_foundation_for_brutal_war
sleep 4 seconds to avoid blocking
------<1429>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MaryBassett_2015P.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=social+justice+was+at+the+core+of+zimbabwe+s+national+health+policy+the+new+government
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=emerged+from+a+long+war+of+independence+and+immediately+proclaimed+a+socialist+agenda+health+care+services+primary+education
found 1 videos: [['/talks/mary_bassett_why_your_doctor_should_care_about_social_justice', '2016']]
selected: /talks/mary_bassett_why_your_doctor_should_care_about_social_justice
sleep 5 seconds to avoid blocking
------<1430>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MaryJepsen_2013.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+had+brain+surgery+eighteen+years+ago+and+since+that+time+brain+science+has+become+a+personal+passion+of+mine++i+m+actually+an+engineer
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+first+let+me+say++i+recently+joined+google
found 4 videos: [['/talks/mary_lou_jepsen_could_future_devices_read_images_from_our_brains', '2014'], ['/talks/jane_mcgonigal_the_game_that_can_give_you_10_extra_years_of_life', '2012'], ['/talks/ajit_narayanan_a_word_game_to_communicate_in_any_language', '2014'], ['/talks/edward_snowden_here_s_how_we_take_back_the_internet', '2014']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+moonshot+group+where+i+had+a+division+the+display+division+in+google+x++and+the+brain+science+work+i+m+speaking+about+today+is+work+i+did+before+i+joined+google+and+on+the+side+outside+of+google+so
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+said++there+s+a+stigma+when+you+have+brain+surgery++are+you+still+smart+or+not
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+if+not+can+you+make+yourself+smart+again
found 3 videos: [['/talks/amy_cuddy_your_body_language_may_shape_who_you_are', '2012'], ['/talks/david_brooks_the_social_animal', '2011'], ['/talks/mary_lou_jepsen_could_future_devices_read_images_from_our_brains', '2014']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=part+of+my+brain+was+missing++and+i+had+to
found 12 videos: [['/talks/sarah_jayne_blakemore_the_mysterious_workings_of_the_adolescent_brain', '2012'], ['/talks/mary_lou_jepsen_could_future_devices_read_images_from_our_brains', '2014'], ['/talks/yoav_medan_ultrasound_surgery_healing_without_cuts', '2011'], ['/talks/jackson_katz_violence_against_women_it_s_a_men_s_issue', '2013'], ['/talks/stuart_firestein_the_pursuit_of_ignorance', '2013'], ['/talks/jonathan_haidt_religion_evolution_and_the_ecstasy_of_self_transcendence', '2012'], ['/talks/noreena_hertz_how_to_use_experts_and_when_not_to', '2011'], ['/talks/iain_hutchison_saving_faces_a_facial_surgeon_s_craft', '2011'], ['/talks/erin_mckean_go_ahead_make_up_new_words', '2014'], ['/talks/jeremy_howard_the_wonderful_and_terrifying_implications_of_computers_that_can_learn', '2014'], ['/talks/verna_myers_how_to_overcome_our_biases_walk_boldly_toward_them', '2014'], ['/talks/nicholas_negroponte_a_30_year_history_of_the_future', '2014']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=deal+with+that+it+wasn+t+the+grey+matter+but+it+was+the+gooey+part+dead+center+that+makes+key+hormones+and+neurotransmitters
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=immediately+after+my+surgery++i+had+to+decide+what+amounts+of+each+of+over+a+dozen+powerful+chemicals+to+take+each+day
found 1 videos: [['/talks/mary_lou_jepsen_could_future_devices_read_images_from_our_brains', '2014']]
selected: /talks/mary_lou_jepsen_could_future_devices_read_images_from_our_brains
sleep 2 seconds to avoid blocking
------<1431>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MarynMcKenna_2015.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+my+great+uncle+my+father+s+father+s+younger+brother+his+name+was+joe+mckenna++he+was
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+young+husband+and+a+semi+pro+basketball+player+and+a+fireman+in+new+york+city++family+history
found 1 videos: [['/talks/maryn_mckenna_what_do_we_do_when_antibiotics_don_t_work_any_more', '2015']]
selected: /talks/maryn_mckenna_what_do_we_do_when_antibiotics_don_t_work_any_more
sleep 5 seconds to avoid blocking
------<1432>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MaryNorris_2016.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+have+spent+the+past+thirty+eight+years+trying+to+be+invisible
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+work+at+the+new+yorker+and+copyediting+for+the+new+yorker+is+like+playing+shortstop+for+a+major+league+baseball+team
found 1 videos: [['/talks/mary_norris_the_nit_picking_glory_of_the_new_yorker_s_comma_queen', '2016']]
selected: /talks/mary_norris_the_nit_picking_glory_of_the_new_yorker_s_comma_queen
sleep 3 seconds to avoid blocking
------<1433>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MaryRoach_2009.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+show+you+a+couple+of+images+from+a+very+diverting+paper+in+the
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+journal+of+ultrasound+in+medicine++i+m+going+to+go+way+out+on+a+limb+and+say+that+it+is+the+most+diverting
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=paper+ever+published+in+the+journal+of+ultrasound+in+medicine++the+title+is+observations+of
found 1 videos: [['/talks/mary_roach_10_things_you_didn_t_know_about_orgasm', '2009']]
selected: /talks/mary_roach_10_things_you_didn_t_know_about_orgasm
sleep 2 seconds to avoid blocking
------<1434>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MaryRobinson_2015W.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+question+i+m+often+asked+is+where+did+i+get+my+passion+for+human+rights
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+grew+up+in+the+west+of+ireland++wedged+between+four+brothers+two+older+than+me+and+two+younger+than+me
found 1 videos: [['/talks/mary_robinson_why_climate_change_is_a_threat_to_human_rights', '2015']]
selected: /talks/mary_robinson_why_climate_change_is_a_threat_to_human_rights
sleep 4 seconds to avoid blocking
------<1435>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MassimoBanzi_2012G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=few+weeks+ago+a+friend+of+mine+gave+this+toy+car+to+his+8+year+old+son++but+instead+of+going+into+a+store
found 1 videos: [['/talks/massimo_banzi_how_arduino_is_open_sourcing_imagination', '2012']]
selected: /talks/massimo_banzi_how_arduino_is_open_sourcing_imagination
sleep 1 seconds to avoid blocking
------<1436>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MathiasJud_2015G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+year+ago++we+were+invited+by+the+swiss+embassy+in+berlin+to+present+our+art+projects
found 1 videos: [['/talks/mathias_jud_art_that_lets_you_talk_back_to_nsa_spies', '2015']]
selected: /talks/mathias_jud_art_that_lets_you_talk_back_to_nsa_spies
sleep 4 seconds to avoid blocking
------<1437>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MathieuLehanneur_2009G.stm
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+this+a+weird+freak+with+huge+hands+huge+mouth++and+a+tiny+bottom
found 1 videos: [['/talks/mathieu_lehanneur_science_inspired_design', '2009']]
selected: /talks/mathieu_lehanneur_science_inspired_design
sleep 4 seconds to avoid blocking
------<1438>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MattCutts_2011U.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+few+years+ago++i+felt+like+i+was+stuck+in+a+rut
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+decided+to+follow+in+the+footsteps+of+the+great+american+philosopher+morgan+spurlock+and+try+something+new+for+thirty+days
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+idea+is+actually+pretty+simple+think+about+something+you+ve+always+wanted+to+add+to+your+life+and+try+it+for+the+next+thirty+days
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+turns+out+thirty+days+is+just+about+the+right+amount+of+time+to+add+a+new+habit+or+subtract+a+habit+like+watching+the+news+from+your+life
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+a+few+things+i+learned+while+doing+these+30+day+challenges
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+first+was+instead+of+the+months+flying+by
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+time+was+much+more+memorable
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+was+part+of+a+challenge+i+did+to+take+a+picture+every+day+for+a+month+and+i+remember+exactly+where+i+was+and+what+i+was+doing+that+day
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+also+noticed+that+as+i+started+to+do+more+and+harder+30+day+challenges+my+self+confidence+grew
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+went+from+desk+dwelling+computer+nerd+to+the+kind+of+guy+who+bikes+to+work
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=even+last+year++i+ended+up+hiking+up+mt+kilimanjaro+the+highest+mountain+in+africa
found 1 videos: [['/talks/matt_cutts_try_something_new_for_30_days', '2011']]
selected: /talks/matt_cutts_try_something_new_for_30_days
sleep 3 seconds to avoid blocking
------<1439>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MatthewCarter_2014.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=type+is+something+we+consume+in+enormous+quantities+in+much+of+the+world+it+s+completely+inescapable++but+few+consumers+are+concerned+to+know
found 1 videos: [['/talks/matthew_carter_my_life_in_typefaces', '2014']]
selected: /talks/matthew_carter_my_life_in_typefaces
sleep 1 seconds to avoid blocking
------<1440>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MatthewChilds_2009U.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+pretty+simple+there+are+nine+sort+of+rules+that+i+discovered+after+thirty+five+years+of+rock+climbing
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=most+of+them+are+pretty+basic++number+one+don+t+let+go
found 4 videos: [['/talks/luis_von_ahn_massive_scale_online_collaboration', '2011'], ['/talks/amory_lovins_winning_the_oil_endgame', '2007'], ['/talks/jacqueline_novogratz_patient_capitalism', '2007'], ['/talks/juan_enriquez_the_life_code_that_will_reshape_the_future', '2007']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=very+sure+success+method++but+really+truly+often+you+think
found 1 videos: [['/talks/matthew_childs_9_life_lessons_from_rock_climbing', '2009']]
selected: /talks/matthew_childs_9_life_lessons_from_rock_climbing
sleep 1 seconds to avoid blocking
------<1441>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MatthewOReilly_2014S.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+been+a+critical+care+emt+for+the+past+seven+years+in+suffolk+county+new+york++i+ve+been+a+first+responder+in+a+number+of+incidents+ranging+from+car+accidents+to+hurricane+sandy
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+are+like+most+people+death+might+be+one+of+your+greatest+fears++some+of+us+will+see+it+coming++some+of+us+won
found 2 videos: [['/talks/alice_rawsthorn_pirates_nurses_and_other_rebel_designers', '2016'], ['/talks/joshua_foer_feats_of_memory_anyone_can_do', '2012']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=medical+term+called+impending+doom+it
found 1 videos: [['/talks/matthew_o_reilly_am_i_dying_the_honest_answer', '2014']]
selected: /talks/matthew_o_reilly_am_i_dying_the_honest_answer
sleep 4 seconds to avoid blocking
------<1442>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MatthewWilliams_2015X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+name+is+matthew+williams++and+i+am+a+champion
found 1 videos: [['/talks/matthew_williams_special_olympics_let_me_be_myself_a_champion', '2016']]
selected: /talks/matthew_williams_special_olympics_let_me_be_myself_a_champion
sleep 2 seconds to avoid blocking
------<1443>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MatthieuRicard_2004.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+guess+it+is+a+result+of+globalization+that+you+can+find++coca+cola+tins+on+top+of+everest+and+a+buddhist+monk+in+monterey
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+i+just+came+two+days+ago+from+the+himalayas
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+your+kind+invitation+so+i+would+like+to+invite+you+also++for+a+while+to+the+himalayas+themselves+and
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=meditators++like+me+who+began+with+being+a+molecular+biologist+in+pasteur+institute++and+found+their+way+to+the+mountains
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+these+are+a+few+images+i+was+lucky+to+to+take+and+be+there+there
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+mount+kailash+in+eastern+tibet+wonderful
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=setting++this+is+from+marlboro+country+this+is+a
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+meditator+this+is+the+hottest+day+of+the+year+somewhere
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=august+one+and+the+night+before++we+camped+and+my+tibetan+friends+said
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=happiness+is+not+at+all+interesting+i+just+wrote+an+essay+on+happiness+and+there+was+a+controversy+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=someone+wrote+an+article+saying+don+t+impose+on+us+the+dirty+work+of+happiness
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+don+t+care+about+being+happy+we+need+to+live+with+passion++we+like+the+ups+and+downs+of+life++we+like+our+suffering+because+it+s+so+good+when+it+ceases+for+a+while
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+what+i+see+from+the+balcony+of+my+hermitage+in+the+himalayas
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+about+two+meters+by+three+and+you+are+all+welcome+any+time
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+let+s+come+to+happiness
found 1 videos: [['/talks/dan_gilbert_the_surprising_science_of_happiness', '2006']]
selected: /talks/dan_gilbert_the_surprising_science_of_happiness
sleep 5 seconds to avoid blocking
------<1444>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MatthieuRicard_2014G.stm
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=extraordinary+potential+for+goodness++but+also+an+immense+power+to+do+harm++any+tool
found 1 videos: [['/talks/matthieu_ricard_how_to_let_altruism_be_your_guide', '2015']]
selected: /talks/matthieu_ricard_how_to_let_altruism_be_your_guide
sleep 5 seconds to avoid blocking
------<1445>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MattKenyon_2015U.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+this+quote+by+activist+and+punk+rock+musician+jello+biafra+that+i+love+he+says+don+t+hate+the+media++be+the+media
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+an+artist++i
found 4 videos: [['/talks/megan_washington_why_i_live_in_mortal_dread_of_public_speaking', '2014'], ['/talks/dan_bell_inside_america_s_dead_shopping_malls', '2017'], ['/talks/jay_silver_hack_a_banana_make_a_keyboard', '2013'], ['/talks/cameron_russell_looks_aren_t_everything_believe_me_i_m_a_model', '2013']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+working+with+media+and+technology+because
found 15 videos: [['/talks/jim_yong_kim_doesn_t_everyone_deserve_a_chance_at_a_good_life', '2017'], ['/talks/martine_rothblatt_my_daughter_my_wife_our_robot_and_the_quest_for_immortality', '2015'], ['/talks/serena_williams_and_gayle_king_on_tennis_love_and_motherhood', '2017'], ['/talks/ellen_jorgensen_what_you_need_to_know_about_crispr', '2016'], ['/talks/susan_etlinger_what_do_we_do_with_all_this_big_data', '2014'], ['/talks/bettina_warburg_how_the_blockchain_will_radically_transform_the_economy', '2016'], ['/talks/julio_gil_future_tech_will_give_you_the_benefits_of_city_life_anywhere', '2017'], ['/talks/ryan_holladay_to_hear_this_music_you_have_to_be_there_literally', '2014'], ['/talks/mitch_resnick_let_s_teach_kids_to_code', '2013'], ['/talks/zeynep_tufekci_online_social_change_easy_to_organize_hard_to_win', '2015'], ['/talks/edward_snowden_here_s_how_we_take_back_the_internet', '2014'], ['/talks/ameenah_gurib_fakim_and_stephanie_busari_an_interview_with_mauritius_s_first_female_president', '2017'], ['/talks/sheryl_sandberg_so_we_leaned_in_now_what', '2014'], ['/talks/r_luke_dubois_insightful_human_portraits_made_from_data', '2016'], ['/talks/travis_kalanick_uber_s_plan_to_get_more_people_into_fewer_cars', '2016']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+i+m+familiar+with+them+and+i+like+the+power+they+hold++and+b++i+hate+them+and+i+m+terrified+of+the+power+they+hold
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+remember+watching+in+two+thousand+and+three+an+interview+between+fox+news+host+tony+snow+and
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+were+talking+about+the+recent+invasion+of+iraq++and+rumsfeld+is+asked+the+question+well+we+re+hear+about+our+body+counts
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+we+never+hear+about+theirs++why+and+rumsfeld+s+answer+is
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well++we+don+t+do+body+counts+on+other+people
found 4 videos: [['/talks/mike_kinney_a_pro_wrestler_s_guide_to_confidence', '2017'], ['/talks/stella_young_i_m_not_your_inspiration_thank_you_very_much', '2014'], ['/talks/kelli_jean_drinkwater_enough_with_the_fear_of_fat', '2016'], ['/talks/salil_dudani_how_jails_extort_the_poor', '2017']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+estimated+that+between+one+hundred+and+fifty+thousand+to+one+million+iraqis+civilians+have+died+as+a+result+of+the+us+led+invasion+in+two+thousand+and+three
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+in+stark+contrast+with+the+four+thousand+four+hundred+and+eighty+six+us+service+members+who+died+during+that+same+window+of+time
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+wanted+to+do+more+than+just+bring+awareness+to+this+terrifying+number
found 1 videos: [['/talks/matt_kenyon_a_secret_memorial_for_civilian_casualties', '2015']]
selected: /talks/matt_kenyon_a_secret_memorial_for_civilian_casualties
sleep 1 seconds to avoid blocking
------<1446>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MattKillingsworth_2011X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+want+a+lot+of+things+out+of+life++but+i+think+more+than+anything+else+they+want+happiness
found 13 videos: [['/talks/david_steindl_rast_want_to_be_happy_be_grateful', '2013'], ['/talks/matt_killingsworth_want_to_be_happier_stay_in_the_moment', '2012'], ['/talks/andrew_solomon_depression_the_secret_we_share', '2013'], ['/talks/michael_norton_how_to_buy_happiness', '2012'], ['/talks/srikumar_rao_plug_into_your_hard_wired_happiness', '2010'], ['/talks/peter_singer_the_why_and_how_of_effective_altruism', '2013'], ['/talks/david_cameron_the_next_age_of_government', '2010'], ['/talks/daniel_kahneman_the_riddle_of_experience_vs_memory', '2010'], ['/talks/nancy_etcoff_happiness_and_its_surprises', '2009'], ['/talks/jane_mcgonigal_the_game_that_can_give_you_10_extra_years_of_life', '2012'], ['/talks/jamie_oliver_teach_every_child_about_food', '2010'], ['/talks/roz_savage_why_i_m_rowing_across_the_pacific', '2010'], ['/talks/barry_schwartz_using_our_practical_wisdom', '2010']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=aristotle+called+happiness+the+chief+good+the+end+towards+which+all+other+things+aim
found 1 videos: [['/talks/matt_killingsworth_want_to_be_happier_stay_in_the_moment', '2012']]
selected: /talks/matt_killingsworth_want_to_be_happier_stay_in_the_moment
sleep 5 seconds to avoid blocking
------<1447>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MattMills_2012G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+wouldn+t+it+be+amazing+if+our+phones+could+see+the+world+in+the+same+way+that+we+do
found 4 videos: [['/talks/bill_ford_a_future_beyond_traffic_gridlock', '2011'], ['/talks/stanley_mcchrystal_listen_learn_then_lead', '2011'], ['/talks/daniel_kraft_medicine_s_future_there_s_an_app_for_that', '2011'], ['/talks/haas_hahn_how_painting_can_transform_communities', '2014']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+we+re+walking+around+being+able+to+to+point+a+phone+at+anything++and+then+have+it+actually+recognize+images+and+objects+like+the+human
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+be+able+to+pull+in+information+from+an+almost+infinite+library+of+of+knowledge+and+experiences+and+ideas+well
found 1 videos: [['/talks/matt_mills_image_recognition_that_triggers_augmented_reality', '2012']]
selected: /talks/matt_mills_image_recognition_that_triggers_augmented_reality
sleep 5 seconds to avoid blocking
------<1448>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MattRidley_2010G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+was+a+student+here+in+oxford+in+the+1970s+the+future+of+the+world+was+bleak
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+population+explosion+was+unstoppable+global+famine+was+inevitable+a+cancer+epidemic+caused+by+chemicals+in+the+environment+was+going+to+shorten+our+lives
error: request timeout
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+falling+on+the+forests+the+desert+was+advancing+by+a+mile+or+two+a+year+the+oil+was+running+out+and+a+nuclear+winter+would+finish+us+off
found 1 videos: [['/talks/matt_ridley_when_ideas_have_sex', '2010']]
selected: /talks/matt_ridley_when_ideas_have_sex
sleep 4 seconds to avoid blocking
------<1449>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MauriceConti_2016X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+maybe+you+just+have+a+really+big+imagination++show+of+hands+that+s+most+of+you
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+have+some+news+for+us+creatives++over+the+course+of+the+next+twenty
found 2 videos: [['/talks/graham_allison_is_war_between_china_and_the_us_inevitable', '2018'], ['/talks/pico_iyer_the_art_of_stillness', '2014']]
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=more+will+change+around+the+way+we+do+our+work
found 21 videos: [['/talks/sean_follmer_shape_shifting_tech_will_change_work_as_we_know_it', '2016'], ['/talks/peter_calthorpe_7_principles_for_building_better_cities', '2017'], ['/talks/natalie_panek_let_s_clean_up_the_space_junk_orbiting_earth', '2016'], ['/talks/david_lee_why_jobs_of_the_future_won_t_feel_like_work', '2017'], ['/talks/david_autor_will_automation_take_away_all_our_jobs', '2016'], ['/talks/chelsea_shields_how_i_m_working_for_change_inside_my_church', '2015'], ['/talks/maurice_conti_the_incredible_inventions_of_intuitive_ai', '2017'], ['/talks/johann_hari_everything_you_think_you_know_about_addiction_is_wrong', '2015'], ['/talks/tammy_lally_let_s_get_honest_about_our_money_problems', '2018'], ['/talks/daniel_susskind_3_myths_about_the_future_of_work_and_why_they_re_not_true', '2018'], ['/talks/victoria_pratt_how_judges_can_show_respect', '2017'], ['/talks/juno_mac_the_laws_that_sex_workers_really_want', '2016'], ['/talks/lera_boroditsky_how_language_shapes_the_way_we_think', '2018'], ['/talks/maryn_mckenna_what_do_we_do_when_antibiotics_don_t_work_any_more', '2015'], ['/talks/david_eagleman_can_we_create_new_senses_for_humans', '2015'], ['/talks/benjamin_grant_what_it_feels_like_to_see_earth_from_space', '2017'], ['/talks/frances_frei_how_to_build_and_rebuild_trust', '2018'], ['/talks/alice_bows_larkin_climate_change_is_happening_here_s_how_we_adapt', '2015'], ['/talks/elizabeth_blackburn_the_science_of_cells_that_never_get_old', '2017'], ['/talks/jeremy_howard_the_wonderful_and_terrifying_implications_of_computers_that_can_learn', '2014'], ['/talks/dan_reisel_the_neuroscience_of_restorative_justice', '2014']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=than+has+happened+in+the+last+two+thousand
found 14 videos: [['/talks/anders_fjellberg_two_nameless_bodies_washed_up_on_the_beach_here_are_their_stories', '2015'], ['/talks/ray_kurzweil_get_ready_for_hybrid_thinking', '2014'], ['/talks/mandy_len_catron_falling_in_love_is_the_easy_part', '2015'], ['/talks/stephen_petranek_your_kids_might_live_on_mars_here_s_how_they_ll_survive', '2016'], ['/talks/tasso_azevedo_hopeful_lessons_from_the_battle_to_save_rainforests', '2015'], ['/talks/mel_robbins_how_to_stop_screwing_yourself_over', '2018'], ['/talks/marc_kushner_why_the_buildings_of_the_future_will_be_shaped_by_you', '2015'], ['/talks/bill_and_melinda_gates_why_giving_away_our_wealth_has_been_the_most_satisfying_thing_we_ve_done', '2014'], ['/talks/raj_panjabi_no_one_should_die_because_they_live_too_far_from_a_doctor', '2017'], ['/talks/gwynne_shotwell_spacex_s_plan_to_fly_you_across_the_globe_in_30_minutes', '2018'], ['/talks/steven_pinker_is_the_world_getting_better_or_worse_a_look_at_the_numbers', '2018'], ['/talks/matthieu_ricard_how_to_let_altruism_be_your_guide', '2015'], ['/talks/will_macaskill_what_are_the_most_important_moral_problems_of_our_time', '2018'], ['/talks/mac_stone_stunning_photos_of_the_endangered_everglades', '2015']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+fact++i+think+we+re+at+the+dawn+of+a+new+age+in+human+history
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now++there+have+been+four+major+historical+eras+defined+by+the+way+we+work
found 1 videos: [['/talks/maurice_conti_the_incredible_inventions_of_intuitive_ai', '2017']]
selected: /talks/maurice_conti_the_incredible_inventions_of_intuitive_ai
sleep 5 seconds to avoid blocking
------<1450>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MaurizioSeracini_2012G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+met+in+florence+a+professor+carlo+pedretti+my+former
found 1 videos: [['/talks/maurizio_seracini_the_secret_lives_of_paintings', '2012']]
selected: /talks/maurizio_seracini_the_secret_lives_of_paintings
sleep 5 seconds to avoid blocking
------<1451>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MaxLittle_2012G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+do+applied+math+and+this+is+a+peculiar+problem+for+anyone+who+does+applied+math+is+that+we+are+like+management+consultants+no+one+knows+what+the+hell+we+do
found 1 videos: [['/talks/max_little_a_test_for_parkinson_s_with_a_phone_call', '2012']]
selected: /talks/max_little_a_test_for_parkinson_s_with_a_phone_call
sleep 3 seconds to avoid blocking
------<1452>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MayaBeiser_2011.stm
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=cello+concert+one+would+most+likely+think+of+johann+sebastian+bach+unaccompanied+cello+suites
found 1 videos: [['/talks/maya_beiser_a_cello_with_many_voices', '2011']]
selected: /talks/maya_beiser_a_cello_with_many_voices
sleep 1 seconds to avoid blocking
------<1453>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MayaPenn_2013W.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+have+pan+seared+registry+error+sprinkled+with+the+finest
found 1 videos: [['/talks/maya_penn_meet_a_young_entrepreneur_cartoonist_designer_activist', '2014']]
selected: /talks/maya_penn_meet_a_young_entrepreneur_cartoonist_designer_activist
sleep 3 seconds to avoid blocking
------<1454>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MayElKhalil_2013G.stm
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+believe+that+running+can+change+the+world++i+know+what+i+have+just+said+is+simply+not+obvious
found 4 videos: [['/talks/may_el_khalil_making_peace_is_a_marathon', '2013'], ['/talks/simon_berrow_how_do_you_save_a_shark_you_know_nothing_about', '2012'], ['/talks/todd_humphreys_how_to_fool_a_gps', '2012'], ['/talks/bryan_stevenson_we_need_to_talk_about_an_injustice', '2012']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know+lebanon+as+a+country+has+been+once+destroyed+by+a
found 2 videos: [['/talks/may_el_khalil_making_peace_is_a_marathon', '2013'], ['/talks/melissa_fleming_let_s_help_refugees_thrive_not_just_survive', '2014']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=long+and+bloody+civil+war++honestly++i+don+t+know+why+they+call+it+civil+war+when+there+is+nothing+civil+about+it+with
found 1 videos: [['/talks/may_el_khalil_making_peace_is_a_marathon', '2013']]
selected: /talks/may_el_khalil_making_peace_is_a_marathon
sleep 3 seconds to avoid blocking
------<1455>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MaysoonZayid_2013W.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+the+doctor+who+delivered+me+was+he+cut+my+mom+six+different+times+in+six+different+directions
found 1 videos: [['/talks/maysoon_zayid_i_got_99_problems_palsy_is_just_one', '2014']]
selected: /talks/maysoon_zayid_i_got_99_problems_palsy_is_just_one
sleep 5 seconds to avoid blocking
------<1456>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MazJobrani_2010G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+founding+members+of+the+axis+of+evil+comedy+tour+the+other+founding+members+included+ahmed+ahmed+who+is+an
found 1 videos: [['/talks/maz_jobrani_did_you_hear_the_one_about_the_iranian_american', '2010']]
selected: /talks/maz_jobrani_did_you_hear_the_one_about_the_iranian_american
sleep 1 seconds to avoid blocking
------<1457>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MazJobrani_2012S.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+love+coming+to+doha++it+s+such+an+international+place+it+feels+like+the+united+nations
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+land+at+the+airport+and+you+re+welcomed+by+an+indian+lady
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+takes+you+to+al+maha+services+where+you+meet+a+filipino+lady+who+hands+you+off+to+a+south+african+lady+who+then+takes+you+to+a+korean+who+takes+you+to
found 1 videos: [['/talks/maz_jobrani_a_saudi_an_indian_and_an_iranian_walk_into_a_qatari_bar', '2012']]
selected: /talks/maz_jobrani_a_saudi_an_indian_and_an_iranian_walk_into_a_qatari_bar
sleep 1 seconds to avoid blocking
------<1458>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/McKennaPope_2013Y.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+convinced+one+of+the+largest+toy+companies+toymakers+in+the+world+hasbro+to+change+the+way+that+they+marketed+one+of+their+most++best+selling+products
found 1 videos: [['/talks/mckenna_pope_want_to_be_an_activist_start_with_your_toys', '2014']]
selected: /talks/mckenna_pope_want_to_be_an_activist_start_with_your_toys
sleep 4 seconds to avoid blocking
------<1459>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MeaghanRamsey_2014S.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+my+niece+stella+she+s+just+turned+one+and+started+to+walk+and+she+s+walking+in+that+really+cool+way+that
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=things+to+do+at+the+moment+is+to+stare+at+herself+in+the+mirror++she+absolutely+loves+her+reflection
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=she+giggles+and+squeals+and+gives+herself+these+big+wet+kisses+it+is
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=apparently+all+of+her+friends+do+this
found 10 videos: [['/talks/khadija_gbla_my_mother_s_strange_definition_of_empowerment', '2015'], ['/talks/gabby_giffords_and_mark_kelly_be_passionate_be_courageous_be_your_best', '2014'], ['/talks/jenna_mccarthy_what_you_don_t_know_about_marriage', '2012'], ['/talks/todd_humphreys_how_to_fool_a_gps', '2012'], ['/talks/andres_ruzo_the_boiling_river_of_the_amazon', '2016'], ['/talks/clint_smith_the_danger_of_silence', '2014'], ['/talks/hubertus_knabe_the_dark_secrets_of_a_surveillance_state', '2014'], ['/talks/paul_bloom_can_prejudice_ever_be_a_good_thing', '2014'], ['/talks/j_d_vance_america_s_forgotten_working_class', '2016'], ['/talks/al_gore_the_case_for_optimism_on_climate_change', '2016']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+my+mom+tells+me+that+i+used+to+do+this+and+it+got+me+thinking+when+did+i+stop+doing
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+is+it+suddenly+not+okay
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+love+the+way+that+we+look++because+apparently+we+don+t+ten+thousand+people+every+month
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=google+am+i+ugly+this+is+faye+faye+is+thirteen+and+she+lives+in+denver++and+like+any+teenager
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=she+just+wants+to+be+liked+and+to+fit+in
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+sunday+night++she+s+getting+ready+for+the+week+ahead+at+school+and+she+s+slightly+dreading+it+and+she+s+a+bit+confused+because+despite+her+mom+telling+her
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+she+s+beautiful+every+day+at+school+someone+tells+her
found 2 videos: [['/talks/harry_baker_a_love_poem_for_lonely_prime_numbers', '2015'], ['/talks/regina_hartley_why_the_best_hire_might_not_have_the_perfect_resume', '2015']]
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+of+the+difference+between+what+her+mom+tells+her+and+what+her+friends+at+school+or+her+peers+at+school+are+telling+her
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=she+doesn+t+know+who+to+believe+so+she+takes+a+video
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+herself+she+posts+it+to+youtube
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+she+asks+people+to+please+leave+a+comment+am+i+pretty+or+am+i+ugly+well+so+far++faye+has+received+over+thirteen+thousand+comments
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+of+them+are+so+nasty+they+don+t+bear+thinking+about
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+an+average+healthy+looking+teenage+girl
found 1 videos: [['/talks/sarah_jayne_blakemore_the_mysterious_workings_of_the_adolescent_brain', '2012']]
selected: /talks/sarah_jayne_blakemore_the_mysterious_workings_of_the_adolescent_brain
sleep 2 seconds to avoid blocking
------<1460>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MechaiViravaidya_2010X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=welcome+to+thailand++now+when+i+was+a+young+man+forty+years+ago
found 1 videos: [['/talks/rory_sutherland_perspective_is_everything', '2012']]
selected: /talks/rory_sutherland_perspective_is_everything
sleep 3 seconds to avoid blocking
------<1461>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MeeraVijayann_2014X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=talking+about+empowerment+is+odd++because+when+we+talk+about+empowerment+what+affects+us+most+are+the+stories
found 1 videos: [['/talks/meera_vijayann_find_your_voice_against_gender_violence', '2014']]
selected: /talks/meera_vijayann_find_your_voice_against_gender_violence
sleep 3 seconds to avoid blocking
------<1462>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MeganKamerick_2011X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+most+journalists+i+m+an+idealist+i+love+unearthing+good+stories+especially+untold+stories
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+just+didn+t+think+that+in+two+thousand+and+eleven+women+would+still+be+in+that
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+the+president+of+the+journalism+and+women+symposium+jaws+that+s+sharky
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+joined+ten+years+ago+because+i+wanted+female+role+models+and+i+was+frustrated+by+the+lagging+status+of+women+in+our+profession+and+what+that+meant+for+our+image+in+the+media
found 1 videos: [['/talks/megan_kamerick_women_should_represent_women_in_media', '2012']]
selected: /talks/megan_kamerick_women_should_represent_women_in_media
sleep 3 seconds to avoid blocking
------<1463>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MeganPhelpsRoper_2017S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+joined+my+family+on+the+picket+line+for+the+first+time+my+mom+made+me+leave+my+dolls+in+the+minivan+i+d+stand+on+a+street+corner+in+the+heavy+kansas
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=surrounded+by+a+few+dozen+relatives+with+my+tiny+fists+clutching+a+sign+that+i+couldn+t+read+yet
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=our+protests+soon+became+a+daily+occurrence+and+an+international+phenomenon
found 1 videos: [['/talks/megan_phelps_roper_i_grew_up_in_the_westboro_baptist_church_here_s_why_i_left', '2017']]
selected: /talks/megan_phelps_roper_i_grew_up_in_the_westboro_baptist_church_here_s_why_i_left
sleep 5 seconds to avoid blocking
------<1464>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MeganWashington_2014X.stm
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+do+this+whether+i+was+expected+to+talk+or+to+sing+but+when+i+was+told+that+the
found 4 videos: [['/talks/megan_washington_why_i_live_in_mortal_dread_of_public_speaking', '2014'], ['/talks/j_d_vance_america_s_forgotten_working_class', '2016'], ['/talks/leila_hoteit_3_lessons_on_success_from_an_arab_businesswoman', '2016'], ['/talks/kevin_rudd_are_china_and_the_us_doomed_to_conflict', '2015']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+felt+that+i+had+to+speak+about+something+for+a+moment
error: request timeout
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+not+the+worst+thing+in+the+world+i+m+fine+i+m+not+on+fire
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+know+that+other+people+in+the+world+have+far+worse+things+to+to+deal+with+but+for+me
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=language+and+music+are+inextricably+linked+through
found 1 videos: [['/talks/megan_washington_why_i_live_in_mortal_dread_of_public_speaking', '2014']]
selected: /talks/megan_washington_why_i_live_in_mortal_dread_of_public_speaking
sleep 4 seconds to avoid blocking
------<1465>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MegJay_2013.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+saw+my+very+first+psychotherapy+client
found 1 videos: [['/talks/meg_jay_why_30_is_not_the_new_20', '2013']]
selected: /talks/meg_jay_why_30_is_not_the_new_20
sleep 2 seconds to avoid blocking
------<1466>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MehdiOrdikhaniSeyedlar_2017.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=paying+close+attention+to+something++not+that+easy+is+it+it
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+because+our+attention+is+pulled+in+so+many+different+directions+at+a+time++and+it+s+in+fact+pretty+impressive+if
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=stay+focused+many+people+think+that+attention+is+all+about+what+we+are+focusing+on++but+it+s+also+about+what+information
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=our+brain+is+trying+to+filter+out
found 9 videos: [['/talks/mehdi_ordikhani_seyedlar_what_happens_in_your_brain_when_you_pay_attention', '2017'], ['/talks/juan_enriquez_what_will_humans_look_like_in_100_years', '2016'], ['/talks/sue_klebold_my_son_was_a_columbine_shooter_this_is_my_story', '2017'], ['/talks/marco_alvera_the_surprising_ingredient_that_makes_businesses_work_better', '2018'], ['/talks/scott_galloway_how_amazon_apple_facebook_and_google_manipulate_our_emotions', '2017'], ['/talks/rebecca_kleinberger_why_you_don_t_like_the_sound_of_your_own_voice', '2018'], ['/talks/david_gruber_glow_in_the_dark_sharks_and_other_stunning_sea_creatures', '2016'], ['/talks/tim_harford_how_frustration_can_make_us_more_creative', '2016'], ['/talks/donald_hoffman_do_we_see_reality_as_it_is', '2015']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+are+two+ways+you+direct+your+attention
found 16 videos: [['/talks/mehdi_ordikhani_seyedlar_what_happens_in_your_brain_when_you_pay_attention', '2017'], ['/talks/amishi_jha_how_to_tame_your_wandering_mind', '2018'], ['/talks/shilpa_ravella_how_the_food_you_eat_affects_your_gut', '2017'], ['/talks/isaac_lidsky_what_reality_are_you_creating_for_yourself', '2016'], ['/talks/sandeep_jauhar_how_your_emotions_change_the_shape_of_your_heart', '2019'], ['/talks/christiana_figueres_and_chris_anderson_how_we_can_turn_the_tide_on_climate', '2019'], ['/talks/brittany_packnett_how_to_build_your_confidence_and_spark_it_in_others', '2019'], ['/talks/bob_langert_the_business_case_for_working_with_your_toughest_critics', '2019'], ['/talks/diane_wolk_rogers_a_parkland_teacher_s_homework_for_us_all', '2018'], ['/talks/chera_kowalski_the_critical_role_librarians_play_in_the_opioid_crisis', '2018'], ['/talks/neha_narula_the_future_of_money', '2016'], ['/talks/jack_dorsey_how_twitter_needs_to_change', '2019'], ['/talks/the_ted_interview_sir_ken_robinson_still_wants_an_education_revolution', '2018'], ['/talks/franklin_leonard_how_i_accidentally_changed_the_way_movies_get_made_apr_2018', '2018'], ['/talks/james_bridle_the_nightmare_videos_of_children_s_youtube_and_what_s_wrong_with_the_internet_today', '2018'], ['/talks/frances_frei_how_to_build_and_rebuild_trust', '2018']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=first+there+s+overt+attention++in+overt+attention++you+move+your+eyes+towards+something+in+order+to+pay+attention+to+it
found 1 videos: [['/talks/mariana_mazzucato_what_is_economic_value_and_who_creates_it', '2019']]
selected: /talks/mariana_mazzucato_what_is_economic_value_and_who_creates_it
sleep 2 seconds to avoid blocking
------<1467>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MeklitHadero_2015F.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+often+ask+me+about+my+influences
found 9 videos: [['/talks/jonathan_tepperman_the_risky_politics_of_progress', '2016'], ['/talks/meklit_hadero_the_unexpected_beauty_of_everyday_sounds', '2015'], ['/talks/vanessa_ruiz_the_spellbinding_art_of_human_anatomy', '2016'], ['/talks/thordis_elva_and_tom_stranger_our_story_of_rape_and_reconciliation', '2017'], ['/talks/emma_marris_nature_is_everywhere_we_just_need_to_learn_to_see_it', '2016'], ['/talks/anindya_kundu_the_boost_students_need_to_overcome_obstacles', '2017'], ['/talks/julia_bacha_how_women_wage_conflict_without_violence', '2016'], ['/talks/chelsea_shields_how_i_m_working_for_change_inside_my_church', '2015'], ['/talks/matthew_carter_my_life_in_typefaces', '2014']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+as+i+like+to+call+them+my+sonic+lineages
found 1 videos: [['/talks/meklit_hadero_the_unexpected_beauty_of_everyday_sounds', '2015']]
selected: /talks/meklit_hadero_the_unexpected_beauty_of_everyday_sounds
sleep 3 seconds to avoid blocking
------<1468>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MelatiWijsen_2015G.stm
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+generate+six+hundred+and+eighty+cubic+meters+of+plastic+garbage+a+day+that+s+about+a
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=building++and+when+it+comes+to+plastic+bags++less+than+five+percent+gets+recycled+mw
found 1 videos: [['/talks/melati_and_isabel_wijsen_our_campaign_to_ban_plastic_bags_in_bali', '2016']]
selected: /talks/melati_and_isabel_wijsen_our_campaign_to_ban_plastic_bags_in_bali
sleep 2 seconds to avoid blocking
------<1469>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MelindaGates_2010X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+my+favorite+parts+of+my+job+at+the+gates+foundation+is+that+i+get+to+travel+to+the+developing+world++and+i+do+that+quite+regularly
found 1 videos: [['/talks/melinda_gates_what_nonprofits_can_learn_from_coca_cola', '2010']]
selected: /talks/melinda_gates_what_nonprofits_can_learn_from_coca_cola
sleep 4 seconds to avoid blocking
------<1470>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MelindaGates_2012X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+to+talk+with+you+about+something+that+should+be
found 7 videos: [['/talks/shawn_achor_the_happy_secret_to_better_work', '2012'], ['/talks/jennifer_golbeck_your_social_media_likes_expose_more_than_you_think', '2014'], ['/talks/maz_jobrani_did_you_hear_the_one_about_the_iranian_american', '2010'], ['/talks/dimitar_sasselov_how_we_found_hundreds_of_potential_earth_like_planets', '2010'], ['/talks/julian_treasure_how_to_speak_so_that_people_want_to_listen', '2014'], ['/talks/jay_silver_hack_a_banana_make_a_keyboard', '2013'], ['/talks/hendrik_poinar_bring_back_the_woolly_mammoth', '2013']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+totally+uncontroversial+topic+but+unfortunately+it+s+become+incredibly+controversial
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+year+if+you+think+about+it+over+a+billion+couples+will+have+sex+with+one+another+couples+like+this+one
found 12 videos: [['/talks/melinda_gates_let_s_put_birth_control_back_on_the_agenda', '2012'], ['/talks/bill_and_melinda_gates_why_giving_away_our_wealth_has_been_the_most_satisfying_thing_we_ve_done', '2014'], ['/talks/ed_boyden_a_light_switch_for_neurons', '2011'], ['/talks/seth_shostak_et_is_probably_out_there_get_ready', '2012'], ['/talks/philip_k_howard_four_ways_to_fix_a_broken_legal_system', '2010'], ['/talks/nicholas_negroponte_a_30_year_history_of_the_future', '2014'], ['/talks/james_stavridis_a_navy_admiral_s_thoughts_on_global_security', '2012'], ['/talks/martin_jacques_understanding_the_rise_of_china', '2011'], ['/talks/brian_cox_why_we_need_the_explorers', '2010'], ['/talks/jody_williams_a_realistic_vision_for_world_peace', '2011'], ['/talks/bruce_aylward_how_we_ll_stop_polio_for_good', '2011'], ['/talks/jennifer_pahlka_coding_a_better_government', '2012']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+one++and+this+one+and+yes++even+this+one
found 8 videos: [['/talks/maysoon_zayid_i_got_99_problems_palsy_is_just_one', '2014'], ['/talks/daniel_goldstein_the_battle_between_your_present_and_future_self', '2011'], ['/talks/lesley_hazleton_on_reading_the_koran', '2011'], ['/talks/jeremy_gilley_one_day_of_peace', '2011'], ['/talks/mohamed_hijri_a_simple_solution_to_the_coming_phosphorus_crisis', '2013'], ['/talks/peter_van_uhm_why_i_chose_a_gun', '2012'], ['/talks/eric_x_li_a_tale_of_two_political_systems', '2013'], ['/talks/russell_foster_why_do_we_sleep', '2013']]
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+these+men+and+women+should+be+free+to+decide+whether+they+do+or+do+not+want+to+conceive+a+child
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+should+be+able+to+use
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+these+birth+control+methods
found 1 videos: [['/talks/melinda_gates_let_s_put_birth_control_back_on_the_agenda', '2012']]
selected: /talks/melinda_gates_let_s_put_birth_control_back_on_the_agenda
sleep 2 seconds to avoid blocking
------<1471>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MelissaFleming_2014G.stm
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+refugees+because+i+wanted+to+make+a+difference+and+making+a+difference+starts+with+telling+their+stories
found 1 videos: [['/talks/melissa_fleming_let_s_help_refugees_thrive_not_just_survive', '2014']]
selected: /talks/melissa_fleming_let_s_help_refugees_thrive_not_just_survive
sleep 2 seconds to avoid blocking
------<1472>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MelissaFleming_2015X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=every+day+i+listen+to+harrowing+stories+of+people+fleeing+for+their+lives
found 1 videos: [['/talks/melissa_fleming_a_boat_carrying_500_refugees_sunk_at_sea_the_story_of_two_survivors', '2015']]
selected: /talks/melissa_fleming_a_boat_carrying_500_refugees_sunk_at_sea_the_story_of_two_survivors
sleep 5 seconds to avoid blocking
------<1473>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MelissaMarshall_2012G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=five+years+ago++i+experienced+a+bit+of+what+it+must+have+been+like+to+be+alice+in+wonderland
found 1 videos: [['/talks/melissa_marshall_talk_nerdy_to_me', '2012']]
selected: /talks/melissa_marshall_talk_nerdy_to_me
sleep 4 seconds to avoid blocking
------<1474>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MelissaWalker_2015P.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=military+service+member+deployed+to+afghanistan
found 1 videos: [['/talks/melissa_walker_art_can_heal_ptsd_s_invisible_wounds', '2016']]
selected: /talks/melissa_walker_art_can_heal_ptsd_s_invisible_wounds
sleep 1 seconds to avoid blocking
------<1475>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MellodyHobson_2014.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+it+s+two+thousand+and+six+my+friend+harold+ford+calls+me+he+s+running+for
error: request timeout
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+he+says+mellody++i+desperately+need+some+national+press+do+you+have+any+ideas+so+i+had+an+idea+i+called+a+friend+who+was+in+new+york+at+one+of+the+most
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=successful+media+companies+in+the+world+and+she+said+why+don+t+we+host+an+editorial+board+lunch+for+harold+you+come+with+him
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=harold+and+i+arrive+in+new+york+we+are+in+our+best+suits++we+look+like+shiny+new+pennies
found 1 videos: [['/talks/mellody_hobson_color_blind_or_color_brave', '2014']]
selected: /talks/mellody_hobson_color_blind_or_color_brave
sleep 3 seconds to avoid blocking
------<1476>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MelvinRussell_2015X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+have+been+a+police+officer+for+a+very+very+long+time+and+you+see+these+notes+in+my+hand+because+i+m+also+a+black+preacher+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+know+anything+about+black+preachers+we+ll
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=keep+going+for+another+twenty+minutes+laughter
found 4 videos: [['/talks/sara_dewitt_3_fears_about_screen_time_for_kids_and_why_they_re_not_true', '2017'], ['/talks/laura_vanderkam_how_to_gain_control_of_your_free_time', '2016'], ['/talks/rutger_bregman_poverty_isn_t_a_lack_of_character_it_s_a_lack_of_cash', '2017'], ['/talks/talithia_williams_own_your_body_s_data', '2014']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+need+this+to+keep+pushing+this+thing+forward+i+ve+been+a+police+officer+for+a+very+long+time+and+i+mean+i+predated+technology+i+m+talking+about+before+pagers
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=laugh+if+you+want+to+but+i+m+telling+the+truth++i+predate+war+on
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=our+fellow+man+i+mean+war+on+drugs+i+predate+all+of+that
found 1 videos: [['/talks/melvin_russell_i_love_being_a_police_officer_but_we_need_reform', '2016']]
selected: /talks/melvin_russell_i_love_being_a_police_officer_but_we_need_reform
sleep 1 seconds to avoid blocking
------<1477>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MemoryBanda_2015W.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ll+begin+today+by+sharing+a+poem
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=written+by+my+friend+from+malawi++eileen+piri++eileen+is+only+thirteen+years+old
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+when+we+were+going+through+the+collection+of+poetry+that+we
found 5 videos: [['/talks/jake_barton_the_museum_of_you', '2013'], ['/talks/dave_isay_everyone_around_you_has_a_story_the_world_needs_to_hear', '2015'], ['/talks/elizabeth_lev_the_unheard_story_of_the_sistine_chapel', '2016'], ['/talks/linda_liukas_a_delightful_way_to_teach_kids_about_computers', '2016'], ['/talks/memory_banda_a_warrior_s_cry_against_child_marriage', '2015']]
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+interesting+so+motivating++so+i+ll+read+it+to+you
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=she+entitled+her+poem+i+ll+marry+when+i+want
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ll+marry+when+i+want++my+mother+can+t+force+me+to+marry
error: request timeout
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+uncle+my+aunt++my+brother+or+sister+cannot+force+me+to+marry
found 1 videos: [['/talks/memory_banda_a_warrior_s_cry_against_child_marriage', '2015']]
selected: /talks/memory_banda_a_warrior_s_cry_against_child_marriage
sleep 2 seconds to avoid blocking
------<1478>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MenaTrott_2006.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=over+the+past+couple+of+days+as+i+ve+been+preparing+for+my+speech+i+ve
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=become+more+and+more+nervous+about+what+i+m+going+to+say+and+about+being+on+the+same+same+stage+as+all+these+fascinating+people+being+on+the+same+stage+as+al+gore+who+was+the+first+person+i+ever+voted+for
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+was+getting+pretty+nervous+and+you+know+i+didn+t+know+that+chris+sits+on+the+stage
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+s+more+nerve+racking+but+then+i+started+thinking+about+my+family+i+started+thinking+about+my+father
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+realized+that+i+had+all+of+these+teds+going
found 3 videos: [['/talks/mena_trott_meet_the_founder_of_the_blog_revolution', '2006'], ['/talks/j_j_abrams_the_mystery_box', '2008'], ['/talks/daniel_goleman_why_aren_t_we_more_compassionate', '2007']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+am+i+chris+kind+of+mentioned+i+started+a+company+with+my+husband
found 1 videos: [['/talks/mena_trott_meet_the_founder_of_the_blog_revolution', '2006']]
selected: /talks/mena_trott_meet_the_founder_of_the_blog_revolution
sleep 3 seconds to avoid blocking
------<1479>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MeronGribetz_2016.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=today+s+computers+are+so+amazing
found 1 videos: [['/talks/neha_narula_the_future_of_money', '2016']]
selected: /talks/neha_narula_the_future_of_money
sleep 3 seconds to avoid blocking
------<1480>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MiaBirdsong_2015W.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+the+last+fifty+years+a+lot+of+smart+well+resourced+people+some+of+you+no+doubt
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+been+trying+to+figure+out+how+to+reduce+poverty+in+the+united+states
found 3 videos: [['/talks/mia_birdsong_the_story_we_tell_about_poverty_isn_t_true', '2015'], ['/talks/dambisa_moyo_is_china_the_new_idol_for_emerging_economies', '2013'], ['/talks/jim_yong_kim_doesn_t_everyone_deserve_a_chance_at_a_good_life', '2017']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+have+created+and+invested+millions+of+dollars+into+non+profit+organizations+with+the+mission+of+helping+people+who+are+poor
found 1 videos: [['/talks/mia_birdsong_the_story_we_tell_about_poverty_isn_t_true', '2015']]
selected: /talks/mia_birdsong_the_story_we_tell_about_poverty_isn_t_true
sleep 1 seconds to avoid blocking
------<1481>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MichaelAnti_2012G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+past+several+days+i+heard+people+talking+about+china+and+also+i+talked+to+friends+about+china
found 5 videos: [['/talks/michael_anti_behind_the_great_firewall_of_china', '2012'], ['/talks/richard_ledgett_the_nsa_responds_to_edward_snowden_s_ted_talk', '2014'], ['/talks/iwan_baan_ingenious_homes_in_unexpected_places', '2013'], ['/talks/sheryl_sandberg_so_we_leaned_in_now_what', '2014'], ['/talks/hanna_rosin_new_data_on_the_rise_of_women', '2010']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+chinese+internet+something+is+very+challenging+to+me+i+want+to+make+my+friends+understand+china+is+complicated
found 1 videos: [['/talks/michael_anti_behind_the_great_firewall_of_china', '2012']]
selected: /talks/michael_anti_behind_the_great_firewall_of_china
sleep 1 seconds to avoid blocking
------<1482>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MichaelArcher_2013X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+do+want+to+test+this+question+we+re+all+interested+in+does+extinction+have+to+be+forever
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+focused+on+two+projects+i+want+to+tell+you+about+one+is+the+thylacine+project+the+other+one+is+the+lazarus+project+and+that+s+focused+on+the+gastric+brooding+frog
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+would+be+a+fair+question+to+ask
found 10 videos: [['/talks/johann_hari_everything_you_think_you_know_about_addiction_is_wrong', '2015'], ['/talks/henry_lin_what_we_can_learn_from_galaxies_far_far_away', '2014'], ['/talks/yasheng_huang_does_democracy_stifle_economic_growth', '2011'], ['/talks/michael_archer_how_we_ll_resurrect_the_gastric_brooding_frog_the_tasmanian_tiger', '2013'], ['/talks/antonio_guterres_refugees_have_the_right_to_be_protected', '2015'], ['/talks/susan_etlinger_what_do_we_do_with_all_this_big_data', '2014'], ['/talks/timothy_bartik_the_economic_case_for_preschool', '2013'], ['/talks/bobby_ghosh_why_global_jihad_is_losing', '2012'], ['/talks/eric_x_li_a_tale_of_two_political_systems', '2013'], ['/talks/damon_horowitz_we_need_a_moral_operating_system', '2011']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+focused+on+these+two+animals+well++point+number+one
found 6 videos: [['/talks/diana_reiss_peter_gabriel_neil_gershenfeld_and_vint_cerf_the_interspecies_internet_an_idea_in_progress', '2013'], ['/talks/bill_and_melinda_gates_why_giving_away_our_wealth_has_been_the_most_satisfying_thing_we_ve_done', '2014'], ['/talks/michael_archer_how_we_ll_resurrect_the_gastric_brooding_frog_the_tasmanian_tiger', '2013'], ['/talks/lorrie_faith_cranor_what_s_wrong_with_your_pa_w0rd', '2014'], ['/talks/bob_mankoff_anatomy_of_a_new_yorker_cartoon', '2013'], ['/talks/sarah_kay_if_i_should_have_a_daughter', '2011']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=each+of+them+represents+a+unique+family+of+its+own+we+ve+lost+a+whole+family+that+s+a+big+chunk
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+the+global+genome+gone+i+d+like+it+back++the+second+reason
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+that+we+killed+these+things+in+the+case+of+the+thylacine
found 2 videos: [['/talks/michael_archer_how_we_ll_resurrect_the_gastric_brooding_frog_the_tasmanian_tiger', '2013'], ['/talks/stewart_brand_the_dawn_of_de_extinction_are_you_ready', '2013']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+shot+every+one+that+we+saw++we+slaughtered+them
found 4 videos: [['/talks/jean_paul_mari_the_chilling_aftershock_of_a_brush_with_death', '2015'], ['/talks/michael_archer_how_we_ll_resurrect_the_gastric_brooding_frog_the_tasmanian_tiger', '2013'], ['/talks/jeremy_gilley_one_day_of_peace', '2011'], ['/talks/jon_mooallem_how_the_teddy_bear_taught_us_compassion', '2014']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+case+of+the+gastric+brooding+frog
found 1 videos: [['/talks/michael_archer_how_we_ll_resurrect_the_gastric_brooding_frog_the_tasmanian_tiger', '2013']]
selected: /talks/michael_archer_how_we_ll_resurrect_the_gastric_brooding_frog_the_tasmanian_tiger
sleep 4 seconds to avoid blocking
------<1483>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MichaelBierut_2017S.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+there+s+this+thing+called+the
found 13 videos: [['/talks/roman_mars_why_city_flags_may_be_the_worst_designed_thing_you_ve_never_noticed', '2015'], ['/talks/neha_narula_the_future_of_money', '2016'], ['/talks/rich_benjamin_my_road_trip_through_the_whitest_towns_in_america', '2015'], ['/talks/kristie_overstreet_what_doctors_should_know_about_gender_identity', '2018'], ['/talks/dustin_yellin_a_journey_through_the_mind_of_an_artist', '2015'], ['/talks/tasos_frantzolas_everything_you_hear_on_film_is_a_lie', '2016'], ['/talks/caroline_harper_what_if_we_eliminated_one_of_the_world_s_oldest_diseases', '2018'], ['/talks/travis_kalanick_uber_s_plan_to_get_more_people_into_fewer_cars', '2016'], ['/talks/ryan_pfluger_the_therapeutic_value_of_photography', '2017'], ['/talks/mariana_mazzucato_what_is_economic_value_and_who_creates_it', '2019'], ['/talks/harry_baker_a_love_poem_for_lonely_prime_numbers', '2015'], ['/talks/priyanka_jain_how_to_make_applying_for_jobs_less_painful', '2019'], ['/talks/paul_greenberg_the_four_fish_we_re_overeating_and_what_to_eat_instead', '2015']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=law+of+unintended+consequences+i+thought+it+was+just+like+a+saying++but+it+actually+exists+i+guess+there+s+like+academic+papers+about+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+m+a+designer+i+don+t+like
found 1 videos: [['/talks/alex_rosenthal_the_joyful_perplexing_world_of_puzzle_hunts', '2018']]
selected: /talks/alex_rosenthal_the_joyful_perplexing_world_of_puzzle_hunts
sleep 2 seconds to avoid blocking
------<1484>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MichaelBodekaer_2015X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+am+going+to+show+you+how+this+tablet+and+this
found 16 videos: [['/talks/michael_bodekaer_this_virtual_lab_will_revolutionize_science_class', '2016'], ['/talks/levon_biss_mind_blowing_magnified_portraits_of_insects', '2017'], ['/talks/ash_beckham_we_re_all_hiding_something_let_s_find_the_courage_to_open_up', '2014'], ['/talks/jennifer_granholm_a_clean_energy_proposal_race_to_the_top', '2013'], ['/talks/vincent_moon_and_nana_vasconcelos_hidden_music_rituals_around_the_world', '2014'], ['/talks/tasha_eurich_increase_your_self_awareness_with_one_simple_fix', '2017'], ['/talks/yvette_alberdingk_thijm_the_power_of_citizen_video_to_create_undeniable_truths', '2017'], ['/talks/david_kwong_two_nerdy_obsessions_meet_and_it_s_magic', '2014'], ['/talks/marina_abramovic_an_art_made_of_trust_vulnerability_and_connection', '2015'], ['/talks/shonda_rhimes_my_year_of_saying_yes_to_everything', '2016'], ['/talks/chieko_asakawa_how_new_technology_helps_blind_people_explore_the_world', '2015'], ['/talks/tony_wyss_coray_how_young_blood_might_help_reverse_aging_yes_really', '2015'], ['/talks/jeffrey_brown_how_we_cut_youth_violence_in_boston_by_79_percent', '2015'], ['/talks/peter_attia_is_the_obesity_crisis_hiding_a_bigger_problem', '2013'], ['/talks/rives_the_museum_of_four_in_the_morning', '2014'], ['/talks/anas_aremeyaw_anas_how_i_named_shamed_and_jailed', '2013']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=headset+that+i+m+wearing+are+going+to+completely+revolutionize+science+education
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+m+also+going+to+show+you+how+it+can+make+any+science+teacher+more+than+twice+as
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+before+i+show+you+how+all+of+this+is+possible+let+s+talk+briefly+about+why+improving+the+quality+of+science+education+is+so+vitally+important
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+think+about+it+the+world+is+growing+incredibly+fast++and+with+that+growth+comes+a+whole+list+of+growing+challenges
found 2 videos: [['/talks/michael_bodekaer_this_virtual_lab_will_revolutionize_science_class', '2016'], ['/talks/angela_wang_how_china_is_changing_the_future_of_shopping', '2017']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=challenges+such+as+dealing+with+global+warming
found 1 videos: [['/talks/michael_bodekaer_this_virtual_lab_will_revolutionize_science_class', '2016']]
selected: /talks/michael_bodekaer_this_virtual_lab_will_revolutionize_science_class
sleep 3 seconds to avoid blocking
------<1485>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MichaelBotticelli_2016X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+a+broken+man++and+you+probably+wouldn+t+be+able+to+tell+that+if+you+met+me+i+had+a+good+job
found 1 videos: [['/talks/karen_lloyd_this_deep_sea_mystery_is_changing_our_understanding_of_life', '2018']]
selected: /talks/karen_lloyd_this_deep_sea_mystery_is_changing_our_understanding_of_life
sleep 2 seconds to avoid blocking
------<1486>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MichaelDickinson_2013X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+grew+up+watching+star+trek+i+love+star+trek+star+trek
found 2 videos: [['/talks/michael_dickinson_how_a_fly_flies', '2013'], ['/talks/bruce_aylward_how_we_ll_stop_polio_for_good', '2011']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=made+me+want+to+see+alien+creatures+creatures+from+a+far+distant+world++but+basically+i+figured
found 1 videos: [['/talks/michael_dickinson_how_a_fly_flies', '2013']]
selected: /talks/michael_dickinson_how_a_fly_flies
sleep 2 seconds to avoid blocking
------<1487>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MichaelGreen_2013.stm
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+grandfather+taught+me+to+work+with+wood+when+i+was+a+little+boy+and+he+also+taught+me+the+idea+that+if+you+cut+down+a+tree+to+turn+it+into+something
found 1 videos: [['/talks/michael_green_why_we_should_build_wooden_skyscrapers', '2013']]
selected: /talks/michael_green_why_we_should_build_wooden_skyscrapers
sleep 1 seconds to avoid blocking
------<1488>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MichaelGreen_2014G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+young+man+delivered+a+report+to+the+united+states+congress
found 1 videos: [['/talks/michael_green_what_the_social_progress_index_can_reveal_about_your_country', '2014']]
selected: /talks/michael_green_what_the_social_progress_index_can_reveal_about_your_country
sleep 5 seconds to avoid blocking
------<1489>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MichaelGreen_2015G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=do+you+think+the+world+is+going+to+be+a+better+place+next+year+in+the+next+decade+can+we
found 14 videos: [['/talks/michael_green_how_we_can_make_the_world_a_better_place_by_2030', '2015'], ['/talks/sara_menker_a_global_food_crisis_may_be_less_than_a_decade_away', '2017'], ['/talks/dan_gross_why_gun_violence_can_t_be_our_new_normal', '2016'], ['/talks/meg_jay_why_30_is_not_the_new_20', '2013'], ['/talks/lord_nicholas_stern_the_state_of_the_climate_and_what_we_might_do_about_it', '2014'], ['/talks/chris_urmson_how_a_driverless_car_sees_the_road', '2015'], ['/talks/haley_van_dyck_how_a_start_up_in_the_white_house_is_changing_business_as_usual', '2016'], ['/talks/ian_bremmer_how_the_us_should_use_its_superpower_status', '2016'], ['/talks/stephen_petranek_your_kids_might_live_on_mars_here_s_how_they_ll_survive', '2016'], ['/talks/keller_rinaudo_how_we_re_using_drones_to_deliver_blood_and_save_lives', '2017'], ['/talks/sebastian_thrun_and_chris_anderson_what_ai_is_and_isn_t', '2017'], ['/talks/jonathan_tepperman_the_risky_politics_of_progress', '2016'], ['/talks/rishi_manchanda_what_makes_us_get_sick_look_upstream', '2014'], ['/talks/anand_giridharadas_a_tale_of_two_americas_and_the_mini_mart_where_they_collided', '2015']]
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=climate+change+all+in+the+next+fifteen+years
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+according+to+the+governments+of+the+world+yes+we+can
found 10 videos: [['/talks/michael_green_how_we_can_make_the_world_a_better_place_by_2030', '2015'], ['/talks/audrey_choi_how_to_make_a_profit_while_making_a_difference', '2016'], ['/talks/antonio_guterres_refugees_have_the_right_to_be_protected', '2015'], ['/talks/yuval_noah_harari_nationalism_vs_globalism_the_new_political_divide', '2017'], ['/talks/charles_robertson_africa_s_next_boom', '2013'], ['/talks/eric_x_li_a_tale_of_two_political_systems', '2013'], ['/talks/david_rothkopf_how_fear_drives_american_politics', '2015'], ['/talks/kate_messner_how_to_build_a_fictional_world', '2014'], ['/talks/pia_mancini_how_to_upgrade_democracy_for_the_internet_era', '2014'], ['/talks/gian_giudice_why_our_universe_might_exist_on_a_knife_edge', '2013']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+last+few+days++the+leaders+of+the+world++meeting+at+the+un+in+new+york++agreed+a+new+set+of+global+goals+for+the+development+of+the+world+to+two+thousand+and+thirty
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+here+they+are+these+goals+are+the+product
found 9 videos: [['/talks/michael_green_how_we_can_make_the_world_a_better_place_by_2030', '2015'], ['/talks/rocio_lorenzo_how_diversity_makes_teams_more_innovative', '2017'], ['/talks/michael_green_what_the_social_progress_index_can_reveal_about_your_country', '2014'], ['/talks/tristan_harris_how_better_tech_could_protect_us_from_distraction', '2016'], ['/talks/michael_porter_the_case_for_letting_business_solve_social_problems', '2013'], ['/talks/david_casarett_a_doctor_s_case_for_medical_marijuana', '2017'], ['/talks/martin_reeves_how_to_build_a_business_that_lasts_100_years', '2016'], ['/talks/bruce_feiler_agile_programming_for_your_family', '2013'], ['/talks/anne_madden_meet_the_microscopic_life_in_your_home_and_on_your_face', '2017']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+a+massive+consultation+exercise+the+global+goals
found 1 videos: [['/talks/michael_green_how_we_can_make_the_world_a_better_place_by_2030', '2015']]
selected: /talks/michael_green_how_we_can_make_the_world_a_better_place_by_2030
sleep 4 seconds to avoid blocking
------<1490>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MichaelHansmeyer_2012G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+an+architect++i+often+ask+myself++what+is+the+origin+of+the+forms+that+we+design+what+kind+of+forms
found 1 videos: [['/talks/michael_hansmeyer_building_unimaginable_shapes', '2012']]
selected: /talks/michael_hansmeyer_building_unimaginable_shapes
sleep 4 seconds to avoid blocking
------<1491>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MichaelKimmel_2015W.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+do+men+have+to+do+with+gender+equality++gender+equality+is+about+women+right++i+mean+the+word
found 21 videos: [['/talks/michael_kimmel_why_gender_equality_is_good_for_everyone_men_included', '2015'], ['/talks/jane_fonda_and_lily_tomlin_a_hilarious_celebration_of_lifelong_female_friendship', '2015'], ['/talks/sheryl_sandberg_so_we_leaned_in_now_what', '2014'], ['/talks/chimamanda_ngozi_adichie_we_should_all_be_feminists', '2017'], ['/talks/paula_stone_williams_i_ve_lived_as_a_man_and_as_a_woman_here_s_what_i_ve_learned', '2017'], ['/talks/roxane_gay_confessions_of_a_bad_feminist', '2015'], ['/talks/elif_shafak_the_revolutionary_power_of_diverse_thought', '2017'], ['/talks/elizabeth_nyamayaro_an_invitation_to_men_who_want_a_better_world_for_women', '2015'], ['/talks/sandi_toksvig_a_political_party_for_women_s_equality', '2016'], ['/talks/chelsea_shields_how_i_m_working_for_change_inside_my_church', '2015'], ['/talks/ben_ambridge_9_myths_about_psychology_debunked', '2015'], ['/talks/stacy_smith_the_data_behind_hollywood_s_sexism', '2017'], ['/talks/ashley_judd_how_online_abuse_of_women_has_spiraled_out_of_control', '2017'], ['/talks/io_tillett_wright_fifty_shades_of_gay', '2013'], ['/talks/justin_baldoni_why_i_m_done_trying_to_be_man_enough', '2017'], ['/talks/shereen_el_feki_a_little_told_tale_of_sex_and_sensuality', '2014'], ['/talks/halla_tomasdottir_it_s_time_for_women_to_run_for_office', '2016'], ['/talks/juno_mac_the_laws_that_sex_workers_really_want', '2016'], ['/talks/naomi_mcdougall_jones_what_it_s_like_to_be_a_woman_in_hollywood', '2017'], ['/talks/sakena_yacoobi_how_i_stopped_the_taliban_from_shutting_down_my_school', '2015'], ['/talks/jennifer_brea_what_happens_when_you_have_a_disease_doctors_can_t_diagnose', '2017']]
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=actually+i+m+even+here+speaking+as+a+middle+class+white+man+now+i+wasn+t+always+a+middle+class+white+man
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+all+happened+for+me+about+thirty+years+ago+when+i+was+in+graduate+school
found 1 videos: [['/talks/dilip_ratha_the_hidden_force_in_global_economics_sending_money_home', '2014']]
selected: /talks/dilip_ratha_the_hidden_force_in_global_economics_sending_money_home
sleep 4 seconds to avoid blocking
------<1492>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MichaelMcDaniel_2012X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=were+displaced+by+natural+disasters+in+two+thousand+and+ten+now+there+was+nothing+particularly+special+about+two+thousand
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+a+half+million+people+are+displaced+by+natural+disasters+every+single+year
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+usually+when+people+hear+statistics+or+stats+like+that+you+start+thinking+about+places+like+haiti+or+other+kind+of+exotic+or+maybe+even+impoverished+areas
found 1 videos: [['/talks/michael_mcdaniel_cheap_effective_shelter_for_disaster_relief', '2012']]
selected: /talks/michael_mcdaniel_cheap_effective_shelter_for_disaster_relief
sleep 3 seconds to avoid blocking
------<1493>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MichaelMerzenich_2004.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+machine+which+we+all+have+residing+in+our+skulls+reminds+me+of+an+aphorism+of
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+comment+of+woody+allen+to+ask+about+what+is+the+very+best+thing+to+have+within+your+skull++and+it+s+this+machine++and+it+s+constructed+for
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+all+about+change++it+confers+on+us+the+ability+to+do+things+tomorrow+that+we+can+t+do+today+things+today+that+we+couldn+t+do+yesterday++and+of+course+it+s+born+stupid
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+last+time+you+were+in+the+presence+of+a+baby+this+happens+to+be+my+granddaughter+mitra++isn+t+she+fabulous
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+nonetheless+when+she+popped+out+despite+the+fact+that+her+brain+had+actually+been+progressing+in+its+development+for+several+months+before+on+the+basis+of+her+experiences+in+the+womb
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=nonetheless+she+had+very+limited+abilities+as+does+every+infant
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=normal+natural+full+term+birth++if+we+were+to+assay+her
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=perceptual+abilities+they+would+be+crude+there+is+no+real+indication+that+there+is+any+real+thinking+going+on+in+fact+there+is+little+evidence+that+there+is+any+cognitive+ability
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+a+very+young+infant+infants+don+t+respond+to+much++there+is+not+really+much+of+an+indication+in+fact+that+there+is+a+person+on
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+can+only+in+a+very+primitive+way+and+in+a+very+limited+way+control+their+movements+it+would+be+several+months+before+this+infant+could+do+something+as+simple+as+reach+out+and+grasp+under+voluntary+control+an+object+and+retrieve+it+usually+to+the+mouth
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+will+be+some+months+beforeward
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+see+a+long+steady+progression+of+the+evolution+from+the+first+wiggles
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+rolling+over+and+sitting+up+and+crawling++standing+walking+before+we+get+to+that+magical+point+in+which+we+can+motate+in+the+world
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+yet+when+we+look+forward+in+the+brain+we+see+really+remarkable+advance
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+this+age+the+brain+can+actually+store+it+has+stored+recorded+can+fastly+retrieve
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+meanings+of+thousands++tens+of+thousands+of+objects+actions+and+their+relationships+in+the+world+and+those+relationships+can+in+fact+be+constructed+in+hundreds+of
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=potentially+millions+of+ways+by+this+age
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+brain+controls+very+refined+perceptual+abilities++and+it+actually+has+a+growing+repertoire+of+cognitive+skills+this+brain+is+very+much+a+thinking+machine
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+by+this+age+there+is+absolutely+no+question
found 1 videos: [['/talks/aubrey_de_grey_a_roadmap_to_end_aging', '2006']]
selected: /talks/aubrey_de_grey_a_roadmap_to_end_aging
sleep 5 seconds to avoid blocking
------<1494>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MichaelMetcalfe_2013S.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=set+ourselves+a+goal+to+end+poverty++after+some+success++we+ve+hit+a+big
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+aftermath+of+the+financial+crisis+has+begun+to+hit+aid+payments+which+have+fallen
found 1 videos: [['/talks/michael_metcalfe_we_need_money_for_aid_so_let_s_print_it', '2014']]
selected: /talks/michael_metcalfe_we_need_money_for_aid_so_let_s_print_it
sleep 2 seconds to avoid blocking
------<1495>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MichaelMetcalfe_2015S.stm
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+come+at+this+question+not+as+a+green+campaigner+in+fact+i+confess+to+be+rather+hopeless+at+recycling
found 1 videos: [['/talks/michael_metcalfe_a_provocative_way_to_finance_the_fight_against_climate_change', '2016']]
selected: /talks/michael_metcalfe_a_provocative_way_to_finance_the_fight_against_climate_change
sleep 1 seconds to avoid blocking
------<1496>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MichaelMilken_2001.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+thought+today+i+would+take+a+few+minutes+to+try+to+talk+about
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+you+can+leverage+your+own+capabilities+how+you+might+be+able+to+increase+your+effectiveness
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+more+than+that+how+you+can+make+the+world+a+better+place+for+you
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=your+family+your+community+and+use+the+skills+and+use+the+skills+that+many+of+you+in+the+audience+have+been+given
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+those+that+have+those+super+skills+even+leverage+them+more+so+i+thought+i+d+first+talk+a+little+bit+about
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=financial+technology+and+what+it+s+given+the+world+an+opportunity
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+look+at+here+and+my+own+life+was+dramatically+affected
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+my+days+at+berkeley+i+chose+to+go+there+but+the+free+speech+movement+allowed+you+to
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=engage+it+also+provided+me+a+very+unusual+opportunity+my+first+financing+assignment
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+able+to+raise+eleven+hundred+dollars+to+bail+seven+hundred+people+out+of+jail+a+dollar+fifty+a+person+with+a+fifty+dollar+deposit
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+back+in+nineteen+sixty+four+it+was+not+that+difficult+to+raise+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=type+of+money+but+that+was+a+minor+effect+on+my+life+compared+to+the+watts+riots+which+happened+when+i+was+home+from+berkeley+on+vacation
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+dream+capital+of+the+world+was+on+fire+troops+were+in+the+streets+and+i+learned+that+civil+rights
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+a+lot+more+than+where+you+sat+on+the+bus+or+where+you+go+to+school+or+where+you+can+go+to+the+bathroom
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+a+right+to+participate+in+the+american+dream+and
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+went+back+to+berkeley+and+created+my+little+formula+that+what+is+prosperity
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+a+function+of+having+financial+technology+which+serves+as+a+multiplier+effect
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+human+capital+social+capital+and+real+assets
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+if+we+reflect+on+the+last+thirty+years+we+see+we+ve+accomplished+quite+a+bit+sixty+two+million+jobs
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=jobs+created+in+our+country+sixty+two+million+new+jobs
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+with+the+concern+about+people+being+laid+off+today+we+have+the+world+s+greatest+job+creation+machine
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+millions+of+small+businesses
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=many+of+which+have+access+to+capital+through+financial+technology+today
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+offset+the+continual+drop+and+loss+of+jobs+by+large+companies
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+look+in+the+nineteen+eightys+when+financial+technology+really+took+hold+in+the+early+nineteen+eightys+you
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ll+see+that+the+spread+opened+up+dramatically+small+companies+access+to+capital+accelerated+their+job+growth
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+large+companies+continued+to+lay+off+people+and+reduce+their+size+the+most+valuable+company+in+the+world+today+general+electric
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=has+increased+in+value+almost+twenty+five+fold+in
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=twenty+years+and+employs+today+twenty+five+percent+less+people+than+it+did+twenty+years+ago
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+what+about+other+areas+not+just+leveraging+economic
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+one+of+the+real+growths+in+our+economy+in+the+united+states+in+the+past+twenty+years+has+been+philanthropy
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+can+we+leverage+philanthropy+how+can+we+leverage+your+ideas+in+the+nonprofit
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+what+can+we+do+there+now+the+amount+of+giving+in+america+has+increased+dramatically+from+fifteen+billion+to+one+hundred+and+forty+billion
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=over+the+past+thirty+five+years
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=however+as+a+percentage+of+our+economy+it+hasn+t+really+changed+that+much+it+s+about+two+percent+of+our+economy
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+the+amount+of+dollars+that+are+being+given+is+actually+pretty+small
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=compared+to+the+amount+of+human+capital+the+amount+of+time+and+effort+and+creativity+that+our+population+s+been+putting+in
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+the+great+growth+in+our+society+that+many+of+you+have+participated+in+is+the+growth+in+private+and+family+foundations
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+ve+grown+from+twenty+two+thousand+when+my+brother+and+i+founded+the+milken+family+foundation+to+fifty+four+thousand+today
error: request timeout
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=twenty+five+billion+in+assets+to+almost+a+half+a+trillion+today
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+can+that+half+a+trillion+which+is+a+gigantic+number+leverage+itself
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+a+world+economy+that+dwarfs+it
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=traditional+philanthropy+has+continued+to+work+in+the+same+areas+feeding+the+needy+sheltering+the+homeless+and+particularly
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+as+many+of+you+have+participated+venture+philanthropy+has+grown+up+the+people+tend+to+be+younger
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=different+ideas+trying+to+leverage+on+their+companies+assets+their+assets+and+their+creativity+at+a+very+young+age
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+d+like+to+take+you+back+eight+years+briefly+and+talk+about+the+challenge+that+i+was+faced+with+at+cap+cure+prostate
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=cancer+was+the+most+diagnosed+cancer+in+america
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=no+one+ever+spoke+about+it+and+there+was+little+to+no+research
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+one+of+our+country+s+leading+scientists+an+m+d+ph+d+from+johns+hopkins+he+chose+to+go+in+the+field+of+prostate+cancer
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+was+told+by+his+adviser+are+you+sure+you+want+to+do+this+there+s+very+little+money+in+fact+this+would+be
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=career+suicide+if+you+pick+this+career
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=luckily+for+us+he+went+ahead+and+picked+this+career
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+at+cap+cure+focused+on+supporting+the+jonathan+simons+of+the+world+today+jonathan+runs+the+cancer+center+at+emory+university
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+just+received+a+grant+from+the+woodruff+foundation+for+one+hundred+million+to+move+there+from+hopkins
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+s+see+what+s+occurred+in+the+last+eight+years
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+nineteen+ninety+three+the+year+i+was+diagnosed+with+prostate+cancer+forty+three+thousand+men+passed+away+in+america
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+projected+with+an+increasing+age+of+our+population+that+this+number+would+dramatically+increase
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=over+the+next+eight+years+to+well+over+fifty+five+thousand+men+passing+away
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+last+eight+years+is+instead+of+an+increase+we+ve+had+a+decrease+in+the+number+of+american+men+dying+from+prostate+cancer
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+fact+the+difference+in+the+last+eight+years+between+the+projected+rates
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+actual+rates+amounts+to+seventy+thousand+american+men
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+is+the+same+number+of+people+that+saw+the+superbowl+this+year+in+tampa+seventy+thousand
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=families+seventy+thousand+american+men+are+alive+today+versus+what+we+had+projected+just+eight+years+ago
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=while+we+haven+t+cured+this+particular+disease+and+we+haven+t+reached+the+levels+of+childhood+leukemia
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+testicular+cancer+where+we+have+about+a+ninety+five+percent+cure+rate+today+in+just+eight+years+through+increased+public+awareness
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=measured+in+millions+of+dollars+not+billions+of+dollars+we+ve+dramatically+changed+the+outlook
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+we+formed+the+milken+foundation+twenty+years+ago
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=our+major+thrust+is+in+education+and+as+i+interact+with+many+of+you+in+the+audience+this+is+one+of+your+passions
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+huge+industry+the+second+largest+industry+in+our+country+how+can+you+change
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=education+with+a+four+hundred+billion+dollars+being+spent
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+k+twelve+education+in+our+country+how+can+any+foundation+even+the+largest+have+a+dramatic+effect
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+was+an+issue+my+brother+and+i+faced+almost+twenty+years+ago
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+our+solution+was+we+had+to+find+a+way+to+motivate+teachers+let+communities+know+that+maybe+the+most+important
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=person+in+their+community+was+that+teacher+in+first+grade+kindergarten+second+grade+fifth+grade+eighth+grade+in+their+community
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+went+to+the+teachers+unions+in+the+early+nineteen+eightys+they+told+me+they+told+me+giving+more+than+two+hundred+and+fifty+dollars+to+any+teacher+would+turn+a+teacher+against+a+teacher
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+we+told+them+well+we+ve+changed+a+few+things+so+we+re+going+to+start+at+twenty+five+thousand+per+teacher
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+re+a+teacher+in+southern+illinois+twenty+five+years+of+teaching+two+master+s+degrees+that+s+about+your+annual+pay+today
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+we+reached+out+and+we+tried+to+go+and+find+teachers
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+re+in+forty+three+states+in+america+today+sixteen+hundred+and+fifty+teachers+later
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+tried+to+let+the+community+know+that+they+were+the+star+but+more+than+that+we+tried+to+let+the+teacher+know+how+much+we+appreciated+them
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+ever+need+to+be+uplifted+join+us+in+september+october+november+on+these+tours+around+the+country
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+is+an+uplifting+feeling+and+a+chance+to+meet+america+s+heroes+every+day
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+d+like+to+show+you+a+little+film+that+captures+what+we+tried+to+do
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+people+that+perform+their+work+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=their+love+every+day+trying+to+get+them+in+the+public+eye+reporter+the+best+educators+and+he+s+right+here+in+boston+for+the+second+year+in+a+row+a+pittsburgh+public+school+teacher+is+the+winner+of+a+major+national+award+today+in+tampa+one+teacher+got+a+big+award
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+coveted+milken+award+i+came+here+today
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=before+you+walk+out+of+that+door+every+one+of+you+you+re+going+to+know+what+the+secret+is+catherine+blair+for+more+than+a+decade+the
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=milken+foundation+has+honored+outstanding+principals+and+teachers+for+the+important+work
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+do+the+award+s+purpose+is+to+focus+attention+on+america+s+very+best+teachers
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=award+brings+both+fame+and+fortune
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+re+here+to+talk+about+greatness+ron
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+if+each+one+of+them+helps+somebody+make+something+better
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+gave+you+a+chance+to+see+my+brother
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+was+his+swing+primarily+through+the+north
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+if+you+have+medical+problems+one+swing+through+the+country
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+an+uplifting+feeling+we+hear+about+all+the+problems+in+education+but+there+is+greatness
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=out+of+three+million+people+in+our+country+working+we+have+tried+every+year+to+pick
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hundred+two+hundred+three+hundred+that+are+shining+examples+of+everything+you+can+be+and+letting+their+communities+know
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+my+favorite+stories+is+i+was+going+into+this+community+to+give+an+award+one+day
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+identified+this+teacher+who+had+devoted+thirty+years+of+his+life+to+education
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+he+had+a+best+friend+living+next+door+who+was+a+practical+joker+but+his+best+friend
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+let+his+friends+know+that+he+was+going+to+receive+this+award
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=his+friend+was+the+wealthiest+member+of+the+community+but+did+not+move
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=over+twenty+years+and+still+lived+in+the+same+house+next+to+his+other+friend+who+was+a+teacher
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+that+day+the+day+before+he+got+a+call+telling+him
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+he+had+won+a+major+award+this+teacher+and+the+award+had+a+large+financial
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+it+he+came+home+that+night+and+told+his+wife+that+he+was+called
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+was+imitating+the+state+superintendent+of+education
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+he+was+really+pissed+because+he+was+in+the+middle+of+a+science+experiment
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+he+kind+of+had+him+going+for+a+few+minutes+until+he+mentioned+there+was+twenty+five+thousand
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=reward+who+ever+gave+twenty+five+thousand+to+a+teacher+for+doing+what+they+do
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+he+and+his+wife+that+night+decided+they+were+going+to+get+back+at+him+all+these+years+of
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+night+they+went+out+and+let+the+air+out+of+eight+tires+their+two+cars+of+the+next+door+neighbor+the
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=next+day+he+goes+to+work+and+there+s+thousands+of+people+there
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+a+band+he+walks+into+the+gym+there+s+the+state+superintendent+they+re+all+there+for+him
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=his+wife+arrives+a+little+late+because+she+couldn+t+keep+a+secret+so+the+minute+he+left+the+house+they+went+and+whisked+her+there
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+night+his+next+door+neighbor+came+over+and+told+him+they+really+wanted+to+be+there+they+went+out
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+went+outside+and+the+air+had+been+let+out+of+their+tires+they+went+in+their+garage+opened+the+garage+and+the+air+had+been+let+out
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+they+now+were+faced+with+a+very+difficult+decision+do+they+tell+or+don+t+they+tell+they+decided
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ok+for+all+those+practical+jokes+for+all+those+years+they+re+not+going+to+tell
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+these+stories+are+repeated+every+day
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+had+a+woman+from+hungary+the+minute+the+iron+curtain+came+down+who+we+flew+to+surprise+her+daughter+in+one+thousand+nine+hundred+and+eighty+eight+in+connecticut
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+see+her+daughter+win+an+award
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+when+she+got+up+to+speak+she+talked+about+how+she+always+wanted+to+be+a+teacher+in+hungary
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+she+didn+t+pass+this+test+high+enough+to+become+a+teacher+in+hungary+so+instead+she+became+the+country+s+leading+heart+surgeon+instead
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+she+had+always+wanted+to+be+a+teacher+and+here+her+daughter+who+had+made+it+to+the+united+states+was+winning+an+award+that+night
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+they+re+our+heroes+and+they+re+our+examples+for+the+profession+and+we+have+a+major+challenge+continuing+to+uplift
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=own+views+but+what+about+this+value+of+life
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+a+beautiful+place+it+s+not+as+beautiful+as+the+ted+conference+but+it+s+not+too+far+away+from+here+it+s+called+lake+tahoe+in+fact+it+is+so+beautiful+that+i+even+decided+to+build+a+house+there
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+the+largest+alpine+lake+in
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+twenty+two+miles+long+and+twelve+miles+wide+and+its+average+depth+is+one+thousand+feet
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+i+spent+many+years+working+in+manhattan+but+manhattan+fits+very+nicely+into+lake+tahoe
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+fact+it+isn+t+really+the+best+idea+but+you+could+put
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=eight+manhattans+in+lake+tahoe+god+forbid+eight+manhattans+in+one+location
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+holds+thirty+nine+trillion+gallons
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+if+each+gallon+was+worth+a+dollar+pretty+cheap+relative+to+evian
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+each+gallon+was+worth+a+dollar+it+would+not+be+enough+to+measure+the+financial+assets+of+our+country
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+individuals+states+corporations+which+total+about+fifty+trillion+dollars
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+that+s+a+small+part+of+the+real+value+of+our+country
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+the+value+of+our+human+capital+is+well+in+excess+of+two+hundred+trillion
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+what+about+the+economic+value
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+recognize+life+is+precious+one+life
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=priceless+but+what+about+the+economic+value+of+a+life+of+investing+in+medical+research
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+milken+institute+and+kevin+murphy+and+bob+topel+did+work+and+said+if+we+could+eliminate+cancer+what+is+it
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=worth+forty+six+five+trillion+dollars+almost+as+much+as+the+entire+financial+assets+of+the+united+states
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=forty+six+five+and+what+about+heart+disease+what+about+if+we+could+eliminate+all+heart+disease+just+in+the+united+states+of+america
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
error: no video is found.
sleep 4 seconds to avoid blocking
------<1497>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MichaelMoschen_2002.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+started+juggling+a+long+time+ago+but+long+before+that+i+was+a+golfer+and+that+s+what+i+was+a+golfer+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+a+golfer+and+as+a+kid+one+of+the+things+that+really+sort+of+seeped+into+my+pores+that+i+sort+of+lived+my+whole+life+is+process
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=process+and+it+s+the+process+of+learning+things+one+of+the+great+things+was+that+my+father+was+an+avid+golfer+but+he+was+lefty
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+he+had+a+real+passion+for+golf+and+he+also+created+this+whole+mythology
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=various+things++well++i+learned+a+lot+about+interesting+things+that+i+knew+nothing+about+at+the+time+but+grew+to+know+know+stuff+about
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+was+the+mythology+of+skill+so+one+of+the+things+that+i+love+to+do+is+to+explore+skill+and+since+richard+put+me+on+this+whole+thing+with+music
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+supposed+to+actually+be+doing+a+project+with+tod+machover+with+the+mit+media+lab+it+relates+a+lot+to+music
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+tod+couldn+t+come+and+the+project+is+sort+of+somewhere+i+m+not+sure+whether+it+s+happening+the+way+we+thought+or+not++but+i+m+going+to+explore+skill+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=visual+music+i+guess++ok+you+can+start+the+music
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=can+be+a+lot+of+fun+play+with+skill+and+play+with+space+play+with+rhythm+and+you+can+turn+the+mike+on+now
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=do+a+couple+of+pieces+i+do+a+big+piece+in+a+triangle
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+these+are+three+sections+from+it++part+of+the+challenge+was+to+try+to+understand+rhythm+and+space
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=using+not+just+my+hands+because+a+lot+of+juggling+is+++hand+oriented+but+using+the+rhythm+of+my+body+and+feet++and+controlling+the+balls+with+my+feet
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=next+section+was+an+attempt+to+explore+space+you+see+i+think+richard+said+something+about+people+that+are+against+something++well+a+lot+of+people+think+jugglers
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=defy+gravity+or+do+stuff+well+i+kind+of+from+my+childhood+and+golf+and+all+that+it+s+a+process+of+joining+with+forces
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+what+i+d+like+to+do+is+try+to+figure+out+how+to+join+with+the+space+through+the+technique++so+juggling+gravity
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=up+down+if+you+figure+out+what+up+and+down+really+are+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+a+complex+physical+set+of+skills+to+be+able+to+throw+a+ball+down+and+up
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+then+you+add+in+sideways
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+look+at+it+somewhat+as+a+way+when+you+learn+juggling+what+you+learn+is+how+to+feel+with+your+eyes+and+see+with+your+hands
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+you+re+not+looking+at+your+hands+you+re+looking+at+where+the+balls+are+or+you+re+looking+at+the+audience
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+this+next+part+is+really+a+way+of+understanding+space+and+rhythm
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+the+obvious+reference+to+the+feet++but+it+s+also
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=where+the+feet+were+where+the+balls+were
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+remember+you+re+transposing+you+re+getting+into+a+subculture+here
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+juggling+the+balls+cross+and+all+that+ok+if+you+keep+them+in+their+assigned+paths+you+get+parallel+lines
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+different+heights++but+then+hopefully+even+rhythm+and+you+can+change+the+rhythm
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+change+the+rhythm+if+you+get+out+of+the+lights++ok++change+the+rhythm+so+it+s+even+or+you+can+go+back
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now++skill+++but+you+re+boxed+in+if+you+can+only+do+it+up+and+down+that+way+so+you+ve+got+to+go+after+the+space+down+there
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+then+you+have+the+whole+spatial+palette+in+front+of+you+and
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+actually+going+to+ask+you+to+try+something+so+you+ve+got+to+pay+attention++complexity
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+spend+enough+time+doing+something+time+slows+down+or+your+skill+increases+so+your+perceptions+perceptions+change
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+learning+skills+like+being+in+a+high+speed+car+crash
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=things+slow+down+as+you+learn+as+you+learn+as+you+learn++you+may+not+be+able+to+affect+it
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=almost+drifts+on+you+it+goes++but+that+s+the+closest+approximation+i+can+have+to+it++so++complexity+now+how+many+here+are+jugglers
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ok++so+most+of+you+are+going+to+have+a+similar+reaction+to+this
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+looks+like+a+mess+it+looks+like+a+mess+with+a+guy+there+who+s+got+his+hands+around+that+mess++ok++well+that+s+what+juggling+is+about+right+it+s
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=being+able+to+do+something+that+other+people+can+t+do+or+can+t+understand+all+right+so+that+s+one+way+of+doing+it+which+is+five+balls+down++ok++another+way
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+let+s+try+something++ok++so+since+you+all+don+t+understand+what+the+five+ball+pattern+is+i+m+going
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+s+actually+learn+something+actually++let+me+put+you+in+that+area+of+learning+which+is+very+insecure
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+you+re+going+to+learn+is+this
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ok++so+what+i+want+you+to+do+is+just+listen+to+me+and+do+it
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=lot+of+different+learning+processes+going+on+in+here
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+learning+process+that+i+see+is+this
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=shake+your+hands+out++now++i+assume+a+lot+of+you+spend+a+lot+of+time+at+a+computer++ok++so+what+you+re+doing+is+you+re+going+la
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+re+getting+this++ok++so+that+s+exactly+what+i+m+going+to+ask+you+to+do+but+in+a+slightly+different+way++you+re+going+to+combine+it++so+what+i+want+you+to+do+is
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fingers+i+ll+tell+you+what+to+do+with+your+fingers+same+thing+but+i+want+you+to+do+is+also+with+your+eyes+is+follow+the+colored+ball
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+i+ask+you+to+follow
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=going+to+start+off+looking+at+the+white+ball+and+i+m+going+to+tell+you+which+color+and+i+m+also+going+to+tell+you+to+go+with+your+fingers
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=reason+i+wanted+you+to+do+this+is+because+that+s+actually+what+most+people+face
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=throughout+their+lives++a+moment+of+learning+a+moment+of+challenge+it+s+a+moment+that+you+can+t+make+sense+of+why+the+hell+should+i
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=anything+to+do+with+anything+in+my+life+you+know+i+can+t+decipher+is+it+fun+is+it+challenging+am+i+supposed+to+cheat+you+know+what+are+you+supposed+to
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=do+you+ve+got+somebody+up+here+who+is+the+operative+principle+of+doing+that+for+his+whole+life
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ok++trying+to+figure+that+stuff+out+but+is+it+going+to+get+you+anywhere++it+s+just+a+moment
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+all+it+is+a+moment++ok++i+m+going+to+change+the+script+for+one+second+just+let+me+do+this+i+don+t+need+music+for+it+talking+about+time+in+a+moment+there+s+a+piece+that+i+recently+developed
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+what+i+do+as+a+creative+artist+is+i+develop+vocabularies+or+languages+of+moving+objects+what+i+ve+done+for+you+here++i+developed+a+lot+of+those+tricks+and+i+put+the+choreography+together++but+they+re+not+original+techniques
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+start+showing+you+some+original+techniques+that+come+from+the+work+that+i+ve+developed+ok++so++a+moment++how+would+you+define+a+moment++well+as+a+juggler
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+create+something+that+was+representational+of+a+moment
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+i+did+as+a+juggler+was+say+ok++what+can+i+do+to+make+that+something+that+is+dependent+on+something+else
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=something+in+here+and+you+can+all+have+a+guess+as+to+what+it+is+there+s+a+mystery+there+s+a+mystery+in+the+moment++and+it
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+it+s+dependent+on+something+else
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+it+comes+to+rest
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=just+a+little+thing+about+time+now+this+has+expanded+into+a+much+bigger+piece+because+i+use+ramps+of+different+parabolas+that+i+roll+the+balls+on+while+i+m+keeping+time+with+this++but+i+just+thought+i+d+talk+about+a+moment
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=can+we+show+the+video+of+the+triangle+are+we+ready+to+do+that+yes
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+the+piece+that+i+told+you+about+it+s+a+much+bigger+piece+that+i+do+exploring+the+space+of+a+geometric+triangle
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ever+try+juggling+and+driving+the+car+with+your+knees+at+one+hundred+and+twenty+miles+an+hour
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+only+other+thing+is+it+was+a+real+shock+i+always+drove+motorcycles++and+when+i+bought+my+first+car
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+shocked+me+that+it+cost+three+times+more+than+my+parents++house
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=making+up+the+rules+so+you+can+t+cheat++so+you+learn
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+different+parts+of+your+body
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+have+a+conversation+with+it
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+it+s+dependent+on+rhythm+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=keeping+a+center+of+balance+when+it+falls+going
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+your+skill+increases+you+learn+to+find
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+show+you+the+beginnings
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+some+ways++and+also+oh+actually++if+you+re+bored+not+here+here
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+apprenticed+with+a+carpenter+and+learned+about+plumb+square+and+level
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+influenced+that+and+this+next+piece+which+i+ll+do+a+little+segment+of+two+sticks+you+can+go+with+it+thanks
error: request timeout
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=working+with+space+and+the+lines+in+space+in+a+different+way
error: request timeout
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+working+with+one+ball+now+what+if+you+attach+something+to+it+or+change+it+this
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+a+little+thing+that+i+made+because+i+really+like+the+idea+of+curves+and+balls
error: request timeout
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+rhythm+of+space+using+the+surface+of+the+balls+the+surface+of+the+arms+just+a+little+toy
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+leads+me+to+the+next+thing++which+is
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+actually+leading+up+to+something++the+newest+thing+that+i+m+working+on+this+is+not+it++this+is+exploring+geometry+and+the+rhythm+of+shape
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=just+did+was+i+worked+with+the+mathematics
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+diameter+and+the+circumference++sometimes+these+pieces+are+mathematical+in+that+way+that+i+look+at+a+shape+and+say+what+about
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+use+this+and+this+and+this+sometimes+what+happens+in+life
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=affects+my+choice+of+objects+that+i+try+to+work+with+the+next+piece+that+i+m+going+to+do+which+is+the+cylinders+piece+if+you+want+to+get+that+up
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+has+to+do+with+cylinder+seals+from+about+five+thousand+years+ago+which+were
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=stones+with+designs+that+were+used+to+roll+over+wet+clay
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+all+sorts+of+great+designs+i+love+ceramics+and+all+of+that+it+s+a+combination+of+that++the+beauty+of+that++the+shape
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+stories+that+were+involved+in+it+as+well+as+the+fact+that+they
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=protected+the+contents+the+second+influence+on+this+piece+came+from
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+looking+into+a+tin+can+recycling+bin
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+seeing+all+that+beautiful+emptiness+so+if+you+want+to+go+with+the+music+for+cylinders
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=talking+about+geometry+and+everything++if+you+take
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+circle+and+you+split+it+in+half+can+you+run+s+curve+music+i+m+going+to+do+just+a+short+version+of+it
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=kinetic+sculpture+in+the+middle+of+it+and+i+dance+around+a+small+stage+so
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=two+minutes+just+to+end+the+latest+piece+that+i+m+working+on
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+i+love+is+that+i+never+know+what+i+m+working+on+why+i+m+working+on+it++they+re+not+ideas+they+re+instincts+and+the+latest+thing+that+i+m+working+on
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+don+t+know+what+it+is+yet
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+s+good++i+like+not+to+know+for+as+long+as+possible
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+because+then+it+tells+me+the+truth++instead+of+me+imposing+the+truth
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+working+with+both+positive+and+negative+space
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+also+with+these+curves+and+what+it+involves+and+i+don+t+know+if+my+hands+are
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=too+beaten+up+to+do+it+or+not+but+i+ll+do+a+little+bit+of+it++it+initially+started+off+with+me+stacking+these+things+bunches+of+them++and+then+playing+with
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+sense+of+space+of+filling+in+the+space+and+then+it+started
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+to+make+visual+instruments+not+to+just+make+i+ll+try+one+other+thing
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+work+in+three+dimensions+with+your
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+time++now+i+don+t+know+exactly+where+it+s+going+but+i+ve+got+a+bit
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=bit+of+effort+involved+in+this+thing++and+it+s+going+to+change+as+i+go+through+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+really+like+it+it+feels+right++this+may+not+be+the+right+shape
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+look+at+this+shape+and+then+i+ll+show+you+the+first+design+i+ever+put+to+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=just+to+see+just+to+play
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+love+all+different+kinds+of+things+to+play+with+let+s+see+here+to+work+with+the+positive+and+negative+in+a+different+way
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+to+change++and+to+change+so+i+m+off+in+my+new+direction+with+this+to+explore+rhythm+and+space+we+ll+see+what+i+come
found 0 videos: []
error: no video is found.
sleep 3 seconds to avoid blocking
------<1498>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MichaelMurphy_2016.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=every+weekend+for+as+long+as+i+can+remember
found 11 videos: [['/talks/michael_murphy_architecture_that_s_built_to_heal', '2016'], ['/talks/caleb_barlow_where_is_cybercrime_really_coming_from', '2017'], ['/talks/nikolai_begg_a_tool_to_fix_one_of_the_most_dangerous_moments_in_surgery', '2014'], ['/talks/antonio_guterres_refugees_have_the_right_to_be_protected', '2015'], ['/talks/floyd_e_romesberg_the_radical_possibilities_of_man_made_dna', '2018'], ['/talks/wes_moore_how_to_talk_to_veterans_about_war', '2014'], ['/talks/dave_isay_everyone_around_you_has_a_story_the_world_needs_to_hear', '2015'], ['/talks/felice_belle_and_jennifer_murphy_how_we_became_sisters', '2018'], ['/talks/pico_iyer_the_beauty_of_what_we_ll_never_know', '2016'], ['/talks/david_baron_you_owe_it_to_yourself_to_experience_a_total_solar_eclipse', '2017'], ['/talks/laura_vanderkam_how_to_gain_control_of_your_free_time', '2016']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+father+would+get+up+on+a+saturday++put+on+a+worn+sweatshirt+and+he+d
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=scrape+away+at+the+squeaky+old+wheel+of+a+house+that+we+lived+in
found 1 videos: [['/talks/michael_murphy_architecture_that_s_built_to_heal', '2016']]
selected: /talks/michael_murphy_architecture_that_s_built_to_heal
sleep 1 seconds to avoid blocking
------<1499>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MichaelNorton_2011X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+want+to+talk+today+about+money+and+happiness+which+are+two+things+a+lot+of+us+spend+a+lot+of+our+time
found 9 videos: [['/talks/dan_ariely_what_makes_us_feel_good_about_our_work', '2013'], ['/talks/michael_norton_how_to_buy_happiness', '2012'], ['/talks/nic_marks_the_happy_planet_index', '2010'], ['/talks/daniel_kahneman_the_riddle_of_experience_vs_memory', '2010'], ['/talks/david_cameron_the_next_age_of_government', '2010'], ['/talks/jamie_oliver_teach_every_child_about_food', '2010'], ['/talks/jamie_heywood_the_big_idea_my_brother_inspired', '2010'], ['/talks/yang_lan_the_generation_that_s_remaking_china', '2011'], ['/talks/harsha_bhogle_the_rise_of_cricket_the_rise_of_india', '2010']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thinking+about+either+trying+to+earn+them+or+trying+to+increase+them+and+a+lot+of+us+resonate+with+this+phrase+we+see+it+in+religions+and+self+help+books
found 1 videos: [['/talks/michael_norton_how_to_buy_happiness', '2012']]
selected: /talks/michael_norton_how_to_buy_happiness
sleep 3 seconds to avoid blocking
------<1500>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MichaelPatrickLynch_2017.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=imagine+that+you+had+your+smartphone+miniaturized+and+hooked+up+directly+to+your+brain+if
found 1 videos: [['/talks/michael_patrick_lynch_how_to_see_past_your_own_perspective_and_find_truth', '2017']]
selected: /talks/michael_patrick_lynch_how_to_see_past_your_own_perspective_and_find_truth
sleep 1 seconds to avoid blocking
------<1501>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MichaelPawlyn_2010S.stm
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+are+spinneret+glands+on+the+abdomen+of+a+spider+they+produce+six+different+types+of+silk++which+is+spun+together+into+a+fiber
found 1 videos: [['/talks/michael_pawlyn_using_nature_s_genius_in_architecture', '2011']]
selected: /talks/michael_pawlyn_using_nature_s_genius_in_architecture
sleep 5 seconds to avoid blocking
------<1502>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MichaelPollan_2007.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+a+simple+idea+about+nature+++i+want+to+say+a+word+for+nature+because+we+haven+t+talked+that+much+about+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+last+couple+days+i+want+to+say+a+word+for+the+soil+and+the+bees+and+the+plants+and+the+animals
found 2 videos: [['/talks/michael_pollan_a_plant_s_eye_view', '2008'], ['/talks/jane_goodall_how_humans_and_animals_can_live_together', '2008']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+tell+you+about+a+tool+a+very+simple+tool+that+i+have+found
found 9 videos: [['/talks/amy_smith_simple_designs_to_save_a_life', '2006'], ['/talks/susan_blackmore_memes_and_temes', '2008'], ['/talks/tim_brown_tales_of_creativity_and_play', '2008'], ['/talks/jamais_cascio_tools_for_a_better_world', '2009'], ['/talks/robert_lang_the_math_and_magic_of_origami', '2008'], ['/talks/arthur_ganson_moving_sculpture', '2008'], ['/talks/michael_pollan_a_plant_s_eye_view', '2008'], ['/talks/howard_rheingold_the_new_power_of_collaboration', '2008'], ['/talks/bill_joy_what_i_m_worried_about_what_i_m_excited_about', '2008']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=really+nothing+more+than+a+literary+conceit+it+s+not+a+technology+it+s+very+powerful+for+i+think+changing+our+relationship+to+the+natural+world
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+to+the+other+species+on+whom+we+depend
found 6 videos: [['/talks/michael_pollan_a_plant_s_eye_view', '2008'], ['/talks/jared_diamond_why_do_societies_collapse', '2008'], ['/talks/e_o_wilson_my_wish_build_the_encyclopedia_of_life', '2007'], ['/talks/dan_dennett_let_s_teach_religion_all_religion_in_schools', '2006'], ['/talks/joshua_klein_a_thought_experiment_on_the_intelligence_of_crows', '2008'], ['/talks/yann_arthus_bertrand_a_wide_angle_view_of_fragile_earth', '2009']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+tool+is+very+simply+as+chris+suggested+looking+at+us+and+the+world+from+the+plants++or+the+animals++point+of+view+it
found 1 videos: [['/talks/michael_pollan_a_plant_s_eye_view', '2008']]
selected: /talks/michael_pollan_a_plant_s_eye_view
sleep 3 seconds to avoid blocking
------<1503>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MichaelPorter_2013G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+aware+that+the+world+today+is+full+of+problems+we+ve+been+hearing+them
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=today+and+yesterday+and+and+every+day+for+decades++serious+problems
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=pressing+problems+poor+nutrition++access+to+water++climate+change+deforestation
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=lack+of+skills+insecurity++not+enough+food+not+enough+healthcare+pollution+there
found 1 videos: [['/talks/michael_porter_the_case_for_letting_business_solve_social_problems', '2013']]
selected: /talks/michael_porter_the_case_for_letting_business_solve_social_problems
sleep 3 seconds to avoid blocking
------<1504>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MichaelPritchard_2009G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+to+talk+about+a+couple+of+things+today
found 5 videos: [['/talks/alan_russell_the_potential_of_regenerative_medicine', '2007'], ['/talks/ethan_zuckerman_listening_to_global_voices', '2010'], ['/talks/richard_pyle_a_dive_into_the_reef_s_twilight_zone', '2009'], ['/talks/martin_seligman_the_new_era_of_positive_psychology', '2008'], ['/talks/christopher_mcdougall_are_we_born_to_run', '2011']]
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+i+see+you+ve+all+been+enjoying+the+water+that+s+been+provided+for+you+here+at+the+conference+over+the+past+couple+of+days+and+i+m+sure+you+ll+feel+that+it+s+from+a+safe+source
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+if+it+was+from+a+source+like+this
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=then+statistics+would+actually+say+that+half+of+you+would+now+be+suffering+with+diarrhea
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+talked+a+lot+in+the+past+about+statistics++and+the+provision+of+safe+drinking+water+for+all
found 1 videos: [['/talks/michael_pritchard_how_to_make_filthy_water_drinkable', '2009']]
selected: /talks/michael_pritchard_how_to_make_filthy_water_drinkable
sleep 3 seconds to avoid blocking
------<1505>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MichaelRubinstein_2014X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+revolutionized+our+world+they+revealed+to+us+a+tiny+world+of+objects+life+and+structures+that+are+too+small+for+us+to+see+with+our+naked+eyes
found 1 videos: [['/talks/michael_rubinstein_see_invisible_motion_hear_silent_sounds', '2014']]
selected: /talks/michael_rubinstein_see_invisible_motion_hear_silent_sounds
sleep 3 seconds to avoid blocking
------<1506>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MichaelSandel_2010.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+thing+the+world+needs+one+thing+this+country+desperately+needs
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+a+better+way+of+conducting+our+political+debates+we+need+to+rediscover+the+lost
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+think+about+the+arguments+we+have+most+of+the+time+it+s+shouting+matches+on+cable+television+ideological+food+fights+on+the+floor+of+congress
error: request timeout
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=look+at+all+the+arguments+we+have+these+days+over+health+care+over+bonuses+and+bailouts+on+wall+street
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=over+the+gap+between+rich+and+poor+over+affirmative+action+and+same+sex+marriage++lying+just+beneath+the+surface
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+those+arguments+with+passions+raging+on+all+sides+are+big+questions
found 1 videos: [['/talks/michael_sandel_the_lost_art_of_democratic_debate', '2010']]
selected: /talks/michael_sandel_the_lost_art_of_democratic_debate
sleep 4 seconds to avoid blocking
------<1507>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MichaelSandel_2013G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+s+a+question+we+need+to+rethink+together++what+should+be+the+role+of+money
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+markets+in+our+societies++today+there+are
found 9 videos: [['/talks/michael_sandel_why_we_shouldn_t_trust_markets_with_our_civic_life', '2013'], ['/talks/michael_green_what_the_social_progress_index_can_reveal_about_your_country', '2014'], ['/talks/george_papandreou_imagine_a_european_democracy_without_borders', '2013'], ['/talks/martin_jacques_understanding_the_rise_of_china', '2011'], ['/talks/jacqueline_novogratz_inspiring_a_life_of_immersion', '2011'], ['/talks/eric_x_li_a_tale_of_two_political_systems', '2013'], ['/talks/sebastiao_salgado_the_silent_drama_of_photography', '2013'], ['/talks/enrique_penalosa_why_buses_represent_democracy_in_action', '2013'], ['/talks/ilona_szabo_de_carvalho_4_lessons_i_learned_from_taking_a_stand_against_drugs_and_gun_violence', '2015']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=very+few+things+that+money+can+t+buy
found 9 videos: [['/talks/daniel_kraft_medicine_s_future_there_s_an_app_for_that', '2011'], ['/talks/josh_luber_why_sneakers_are_a_great_investment', '2015'], ['/talks/iwan_baan_ingenious_homes_in_unexpected_places', '2013'], ['/talks/luis_von_ahn_massive_scale_online_collaboration', '2011'], ['/talks/jack_horner_building_a_dinosaur_from_a_chicken', '2011'], ['/talks/keren_elazari_hackers_the_internet_s_immune_system', '2014'], ['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013'], ['/talks/roger_mcnamee_6_ways_to_save_the_internet', '2011'], ['/talks/arvind_gupta_turning_trash_into_toys_for_learning', '2011']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+re+sentenced+to+a+jail+term+in+santa+barbara+california
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+should+know+that+if+you+don+t+like+the+standard+accommodations+you+can+buy+a+prison+cell+upgrade
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+true+for+how+much+do+you+think+what+would+you+guess++five+hundred+dollars+it+s+not+the
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+go+to+an+amusement+park+and+don+t+want+to+stand+in+the+long+lines+for+the+popular+rides+there+is+now
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+solution++in+many+theme+parks+you+can+pay+extra
found 7 videos: [['/talks/michael_sandel_why_we_shouldn_t_trust_markets_with_our_civic_life', '2013'], ['/talks/rory_sutherland_perspective_is_everything', '2012'], ['/talks/james_hansen_why_i_must_speak_out_about_climate_change', '2012'], ['/talks/thomas_pogge_medicine_for_the_99_percent', '2011'], ['/talks/edward_tenner_unintended_consequences', '2011'], ['/talks/bruce_feiler_the_council_of_dads', '2011'], ['/talks/amory_lovins_a_40_year_plan_for_energy', '2012']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+jump+to+the+head+of+the+line+they+call+them+fast+track+or+vip+tickets
found 1 videos: [['/talks/michael_sandel_why_we_shouldn_t_trust_markets_with_our_civic_life', '2013']]
selected: /talks/michael_sandel_why_we_shouldn_t_trust_markets_with_our_civic_life
sleep 4 seconds to avoid blocking
------<1508>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MichaelShellenberger_2016T.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+you+heard+the+news++we+re+in+a+clean+energy+revolution+and+where+i+live+in+berkeley+california+it+seems+like+every+day+i+see+a+new+roof
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+new+solar+panels+going+up+electric+car+in+the
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=germany+sometimes+gets+half+its+power+from+solar+and+india+is+now+committed+to+building+ten+times+more+solar+than+we+have+in+california++by+the+year
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=even+nuclear+seems+to+be+making+a+comeback++bill+gates+is
found 1 videos: [['/talks/michael_shellenberger_how_fear_of_nuclear_power_is_hurting_the_environment', '2016']]
selected: /talks/michael_shellenberger_how_fear_of_nuclear_power_is_hurting_the_environment
sleep 3 seconds to avoid blocking
------<1509>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MichaelShermer_2006.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+michael+shermer+director+of+the+skeptics+society+publisher+of+skeptic+magazine+we+investigate+claims+of+the+paranormal++pseudo+science+fringe+groups+and+cults+and+claims+of+all+kinds+between+science+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+unless+you+ve+been+on+mars+recently+you+know+there+s+a+lot+of+that+out+there++some+people+call+us+debunkers+which+is+kind+of+a+negative+term+but+let+s+face+it+there+s+a+lot+of+bunk
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+are+like+the+bunko+squads+of+the+police+departments+out+there
found 1 videos: [['/talks/michael_shermer_why_people_believe_weird_things', '2006']]
selected: /talks/michael_shermer_why_people_believe_weird_things
sleep 5 seconds to avoid blocking
------<1510>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MichaelShermer_2010.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+since+i+was+here+last+in++six+we+discovered+that+global+climate+change+is+turning+out+to+be+a+pretty+serious+issue+so+we+covered+that
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fairly+extensively+in+skeptic+magazine+we+investigate
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+it+turns+out+we+don+t+have+to+worry+about+any+of+this+because+the+world+s+going+to+end+in+two+thousand+and+twelve+another+update++you+will+recall
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+introduced+you+guys+to+the+quadro+tracker+it+s
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+a+water+dowsing+device+it+s+just+a+hollow+piece+of+plastic+with+an+antenna+that+swivels+around+and+you+walk+around+and+it+points+to+things+like+if+you+re+looking+for+marijuana+in+students++lockers+it
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+particular+one+that+was+given+to+me+finds+golf+balls++especially+if+you+re+at+a+golf+course+and+you+check+under+enough
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+under+the+category+of+what+s+the+harm+of+silly+stuff+like+this
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+device+the+ade+six+hundred+and+fifty+one+was+sold+to+the+iraqi+government+for+forty+thousand+dollars+apiece+it+s+just+like+this+one+completely+worthless
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+which+it+allegedly+worked+by+electrostatic+magnetic+ion+attraction
found 1 videos: [['/talks/michael_shermer_the_pattern_behind_self_deception', '2010']]
selected: /talks/michael_shermer_the_pattern_behind_self_deception
sleep 2 seconds to avoid blocking
------<1511>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MichaelTilsonThomas_2012.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+when+i+was+asked+to+do+this+tedtalk+i+was+really+chuckled+because+you+see+my+father+s+name+was+ted
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+much+of+my+life+especially+my+musical+life+is+really+a+talk+that+i+m+still+having+with+him+or+the+part+of+me+that+he+continues+to+be
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ted+was+a+new+yorker+an+all+around+theater+guy+and+he+was+a+self+taught+illustrator
found 1 videos: [['/talks/michael_tilson_thomas_music_and_emotion_through_time', '2012']]
selected: /talks/michael_tilson_thomas_music_and_emotion_through_time
sleep 5 seconds to avoid blocking
------<1512>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MicheleLSullivan_2016W.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+milestones+in+life+that+we+remember+so+vividly
found 1 videos: [['/talks/michele_l_sullivan_asking_for_help_is_a_strength_not_a_weakness', '2017']]
selected: /talks/michele_l_sullivan_asking_for_help_is_a_strength_not_a_weakness
sleep 4 seconds to avoid blocking
------<1513>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MichelLaberge_2014.stm
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+flying+you+all+in+here+must+have+cost+a+bit+of+energy+too
found 5 videos: [['/talks/michel_laberge_how_synchronized_hammer_strikes_could_generate_nuclear_fusion', '2014'], ['/talks/al_gore_the_case_for_optimism_on_climate_change', '2016'], ['/talks/andreas_raptopoulos_no_roads_there_s_a_drone_for_that', '2013'], ['/talks/emma_teeling_the_secret_of_the_bat_genome', '2012'], ['/talks/jonathan_foley_the_other_inconvenient_truth', '2012']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+the+whole+planet+needs+a+lot+of+energy+and+so+far+we+ve+been+running+mostly+on+fossil+fuel+we+ve+been+burning+gas
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=been+a+good+run+it+got+us+to+where+we+are+but+we+have+to+stop+we+can+t+do+that+anymore
found 2 videos: [['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013'], ['/talks/t_boone_pickens_let_s_transform_energy_with_natural_gas', '2012']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+we+are+trying+different+types+of+energy+now+alternative+energy
found 6 videos: [['/talks/michel_laberge_how_synchronized_hammer_strikes_could_generate_nuclear_fusion', '2014'], ['/talks/bilal_bomani_plant_fuels_that_could_power_a_jet', '2012'], ['/talks/todd_coleman_a_temporary_tattoo_that_brings_hospital_care_to_the_home', '2016'], ['/talks/leyla_acaroglu_paper_beats_plastic_how_to_rethink_environmental_folklore', '2014'], ['/talks/ngozi_okonjo_iweala_how_africa_can_keep_rising', '2016'], ['/talks/vincent_moon_and_nana_vasconcelos_hidden_music_rituals_around_the_world', '2014']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+it+proved+quite+difficult+to+find+something+that+s+as+convenient+and+as+cost+effective+as+oil+gas+and+coal
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+personal+favorite+is+nuclear+energy
found 1 videos: [['/talks/michel_laberge_how_synchronized_hammer_strikes_could_generate_nuclear_fusion', '2014']]
selected: /talks/michel_laberge_how_synchronized_hammer_strikes_could_generate_nuclear_fusion
sleep 5 seconds to avoid blocking
------<1514>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MichelleObama_2009P.stm
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+first+foreign+trip+as+a+first+lady+can+you+believe+that
found 1 videos: [['/talks/michelle_obama_a_passionate_personal_case_for_education', '2009']]
selected: /talks/michelle_obama_a_passionate_personal_case_for_education
sleep 4 seconds to avoid blocking
------<1515>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MickCornett_2013P.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+many+of+you+have+not+been+to+oklahoma+city+and+have+no+idea+who+i+am
found 2 videos: [['/talks/mick_cornett_how_an_obese_town_lost_a_million_pounds', '2014'], ['/talks/io_tillett_wright_fifty_shades_of_gay', '2013']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=most+of+you+let+me+give+you+a+little+bit+of+background
found 11 videos: [['/talks/jeremy_howard_the_wonderful_and_terrifying_implications_of_computers_that_can_learn', '2014'], ['/talks/markham_nolan_how_to_separate_fact_and_fiction_online', '2012'], ['/talks/yassmin_abdel_magied_what_does_my_headscarf_mean_to_you', '2015'], ['/talks/daphne_koller_what_we_re_learning_from_online_education', '2012'], ['/talks/lemn_sissay_a_child_of_the_state', '2012'], ['/talks/eric_x_li_a_tale_of_two_political_systems', '2013'], ['/talks/vikram_patel_mental_health_for_all_by_involving_all', '2012'], ['/talks/julian_treasure_why_architects_need_to_use_their_ears', '2012'], ['/talks/mitch_resnick_let_s_teach_kids_to_code', '2013'], ['/talks/giles_duley_when_a_reporter_becomes_the_story', '2012'], ['/talks/jonathan_drori_the_beautiful_tricks_of_flowers', '2011']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=oklahoma+city+started+in+the+most+unique+way+imaginable+back+on+a+spring+day+in+one+thousand+eight+hundred+and+eighty+nine+the+federal+government+held+what+they+called+a+land+run
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+literally+lined+up+the+settlers+along+an+imaginary+line++and+they+fired+off+a+gun++and+the+settlers+roared+across+the+countryside+and+put+down+a+stake
found 1 videos: [['/talks/mick_cornett_how_an_obese_town_lost_a_million_pounds', '2014']]
selected: /talks/mick_cornett_how_an_obese_town_lost_a_million_pounds
sleep 5 seconds to avoid blocking
------<1516>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MickEbeling_2011A.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+have+had+the+distinct+blessing+in+my+life+to+have+worked+on+a+bunch+of+amazing+projects+but+the+coolest+i+ever+worked+on
found 1 videos: [['/talks/mick_ebeling_the_invention_that_unlocked_a_locked_in_artist', '2011']]
selected: /talks/mick_ebeling_the_invention_that_unlocked_a_locked_in_artist
sleep 5 seconds to avoid blocking
------<1517>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MickMountz_2011X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+share+with+you+a+breakthrough+new+approach+for+managing+items+of+inventory+inside+of+a+warehouse
found 1 videos: [['/talks/mick_mountz_what_happens_inside_those_massive_warehouses', '2012']]
selected: /talks/mick_mountz_what_happens_inside_those_massive_warehouses
sleep 4 seconds to avoid blocking
------<1518>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MiguelNicolelis_2012P.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+kind+of+neuroscience+that+i+do+and+my+colleagues+do
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+almost+like+the+weatherman+we+are+always+chasing+storms+we+want+to+see+and+measure+storms+brainstorms
found 1 videos: [['/talks/miguel_nicolelis_a_monkey_that_controls_a_robot_with_its_thoughts_no_really', '2013']]
selected: /talks/miguel_nicolelis_a_monkey_that_controls_a_robot_with_its_thoughts_no_really
sleep 2 seconds to avoid blocking
------<1519>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MiguelNicolelis_2014G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+june+twelve+two+thousand+and+fourteen+precisely+at+three
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+a+balmy+winter+afternoon+in+so+paulo+brazil+a+typical+south+american+winter
found 1 videos: [['/talks/miguel_nicolelis_brain_to_brain_communication_has_arrived_how_we_did_it', '2015']]
selected: /talks/miguel_nicolelis_brain_to_brain_communication_has_arrived_how_we_did_it
sleep 1 seconds to avoid blocking
------<1520>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MihalyCsikszentmihalyi_2004.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=caught+me+when+i+was+between+seven+and+ten+years+old++and+i+realized+how
found 2 videos: [['/talks/julia_sweeney_letting_go_of_god', '2006'], ['/talks/eve_ensler_happiness_in_body_and_soul', '2006']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+i+knew+were+able+to+withstand+the
found 1 videos: [['/talks/aubrey_de_grey_a_roadmap_to_end_aging', '2006']]
selected: /talks/aubrey_de_grey_a_roadmap_to_end_aging
sleep 3 seconds to avoid blocking
------<1521>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MikeBiddle_2011G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+a+garbage+man++and+you+might+find+it+interesting+that+i+became+a+garbage+man++because+i+absolutely+hate+waste
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+hope+within+the+next+ten+minutes+to+change+the+way+you+think+about+a+lot+of+the+stuff+in+your+life+and+i+d+like+to+start+at+the+very+beginning+think+back+when+you
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=were+just+a+kid+how+did+look+at+the+stuff+in+your+life++perhaps+it+was+like+these+toddler+rules+it+s+my+stuff+if+i+saw+it+first
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+entire+pile+is+my+stuff+if+i+m+building+something
found 1 videos: [['/talks/rory_sutherland_life_lessons_from_an_ad_man', '2009']]
selected: /talks/rory_sutherland_life_lessons_from_an_ad_man
sleep 4 seconds to avoid blocking
------<1522>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MikedeGruy_2010Z.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+first+became+fascinated+with+octopus+at+an+early+age+i+grew+up+in+mobile++alabama
found 1 videos: [['/talks/mike_degruy_hooked_by_an_octopus', '2012']]
selected: /talks/mike_degruy_hooked_by_an_octopus
sleep 3 seconds to avoid blocking
------<1523>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MikeMatas_2011.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+past+year+and+a+half+my+team+at+push+pop+press+and+charlie+melcher+and+melcher+media+have+been+working+on+creating+the+first+feature+length+interactive+book
found 1 videos: [['/talks/mike_matas_a_next_generation_digital_book', '2011']]
selected: /talks/mike_matas_a_next_generation_digital_book
sleep 4 seconds to avoid blocking
------<1524>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MikeRowe_2008P.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=crew+and+i+were+called+to+a+little+town+in+colorado+called+craig+it+s+only+a+couple+dozen+square+miles+it+s+in+the+rockies+and+the+job+in+question+was+sheep+rancher
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+role+on+the+show+for+those+of+you+who+haven+t+seen+it+it+s+pretty+simple++i+m+an+apprentice++and+i+work+with+the+people+who+do+the
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=jobs+in+question+and+my+responsibilities+are+to+simply+try+and+keep+up+and+give+an+honest+account+of+what+it+s+like+to+be+these+people+for+one+day+in+their+life+the+job+in+question
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=herding+sheep+great+we+go+to+craig
found 1 videos: [['/talks/mike_rowe_learning_from_dirty_jobs', '2009']]
selected: /talks/mike_rowe_learning_from_dirty_jobs
sleep 2 seconds to avoid blocking
------<1525>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MikeVelings_2015Z.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+come+from+the+tallest+people+on+the+planet+the+dutch
found 1 videos: [['/talks/mike_velings_the_case_for_fish_farming', '2016']]
selected: /talks/mike_velings_the_case_for_fish_farming
sleep 1 seconds to avoid blocking
------<1526>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MikkoHypponen_2011G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+true++think+about+everything+it+has+brought+us++think+about+all+the+services+we+use+all+the+connectivity+all+the
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=during+our+lifetimes+i+m+pretty+sure+that+one+day+we+ll+be
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=writing+history+books+hundreds+of+years+from+now++this+time+our+generation+will+be+remembered
found 1 videos: [['/talks/mikko_hypponen_fighting_viruses_defending_the_net', '2011']]
selected: /talks/mikko_hypponen_fighting_viruses_defending_the_net
sleep 3 seconds to avoid blocking
------<1527>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MikkoHypponen_2011X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+had+to+register+it+with+the+government
found 8 videos: [['/talks/danny_hillis_the_internet_could_crash_we_need_a_plan_b', '2013'], ['/talks/mikko_hypponen_three_types_of_online_attack', '2012'], ['/talks/pam_warhurst_how_we_can_eat_our_landscapes', '2012'], ['/talks/shukla_bose_teaching_one_child_at_a_time', '2010'], ['/talks/thomas_pogge_medicine_for_the_99_percent', '2011'], ['/talks/richard_wilkinson_how_economic_inequality_harms_societies', '2011'], ['/talks/avi_rubin_all_your_devices_can_be_hacked', '2012'], ['/talks/ben_goldacre_what_doctors_don_t_know_about_the_drugs_they_prescribe', '2012']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+had+to+register+a+sample+sheet+of+text+out+of+the+typewriter++and+this+was+done+so+the+government
found 1 videos: [['/talks/mikko_hypponen_three_types_of_online_attack', '2012']]
selected: /talks/mikko_hypponen_three_types_of_online_attack
sleep 3 seconds to avoid blocking
------<1528>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MikkoHypponen_2013X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=most+likely+largest+inventions+of+our+generation
found 1 videos: [['/talks/mikko_hypponen_how_the_nsa_betrayed_the_world_s_trust_time_to_act', '2013']]
selected: /talks/mikko_hypponen_how_the_nsa_betrayed_the_world_s_trust_time_to_act
sleep 3 seconds to avoid blocking
------<1529>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MilehaSoneji_2015X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+india+we+have+these+huge+families+i+bet+a+lot+of+you+all+must+have+heard+about+it
found 3 videos: [['/talks/mileha_soneji_simple_hacks_for_life_with_parkinson_s', '2016'], ['/talks/sebastiao_salgado_the_silent_drama_of_photography', '2013'], ['/talks/pamela_ronald_the_case_for_engineering_our_food', '2015']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+means+that+there+are+a+lot+of+family+events++so+as+a+child++my+parents+used+to+drag+me+to+these+family
found 1 videos: [['/talks/mileha_soneji_simple_hacks_for_life_with_parkinson_s', '2016']]
selected: /talks/mileha_soneji_simple_hacks_for_life_with_parkinson_s
sleep 3 seconds to avoid blocking
------<1530>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MiltonGlaser_1998.stm
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=require+a+certain+kind+of+intellectual+activity++because+you+are+always+comparing+the+variation+with+the+theme+that+you+hold+in
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=might+say+that+the+theme+is+nature+and+everything+that+follows+is+a+variation+on
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+guess+about+six+years+ago+to+do+a+series+of+paintings+that+in+some+way
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=would+celebrate+the+birth+of+piero+della+francesca+and+it+was+very+difficult
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+me+to+imagine+how+to
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=paint+pictures+that+were+based+on+piero
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=until+i+realized+that+i+could+look+at+piero+as+nature
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+i+would+have+the+same+attitude+towards+looking
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+piero+della+francesca+as+i+would+if+i+were+looking+out+a+window+at+a+tree++and+that+was
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=enormously+liberating+to+me+perhaps+it+s+not+a+very
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=insightful+observation+but+that+really+started+me+on+a+path+to+be+able+to+do+a+kind+of+theme+and+variations
error: request timeout
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+a+work+by+piero+in+this+case+that+that+remarkable
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=painting+that+s+in+the+uffizi+the+duke+of+montefeltro+who+faces
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=his+consort+battista++once+i+realized+that+i+could+take+some+liberties+with+the+subject++i+did+the+following
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=portraits+in+human+history++and+these+i+ll+just+show+these+without+comment+it+s+just+a+series
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+the+head+of+the+duke+of+montefeltro+who+s+a+great+great+figure+in+the+renaissance+and+probably+the
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+apparently+lost+an+eye+in+battle+which+is+why+he+is+always+shown+in+profile++and+this+is
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+i+decided+i+could+move+them+around+a+little+bit
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+that+for+the+first+time+in+history+they+re+facing+the+same+direction++whoops
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+a+visitor+from+another+painting+by+piero+this+is+from+the+resurrection+of+christ
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+though+the+cast+had+just+gotten+of+the+set+to+have+a+chat+and+now+four+large+panels+this+is+upper+left
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=since+all+paintings+are+inherently+abstract+to+begin+with+there+doesn+t+seem+to+be+an+argument+there
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+driving+in+the+country+one+day+with+my+wife
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+saw+this+sign+and+i+said+that
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+a+fabulous+piece+of+design+and+she+said+what+are+you+talking+about+i+said+well++it+s+so+persuasive+because
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+purpose+of+that+sign+is+to+get+you+into+the+garage++and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=since+most+people+are+so+suspicious+of+garages++and+know+that+they+re+going+to+be+ripped+off+they+use+the+word++reliable
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+everybody+says+they+re+reliable+but+reliable+dutchman
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+as+soon+as+you+hear+the+word+dutchman+which+is+an+archaic+word+nobody+calls+dutch+people+dutchmen+anymore
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+as+soon+as+you+hear+dutchman+you+get
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+picture+of+the+kid+with+his+finger+in+the+dike+preventing+the+thing+from+falling+and+flooding+holland
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=entire+issue+is+detoxified+by+the+use+of+dutchman+now+if+you+think+i+m+exaggerating+at+all+in+this+all+you+have+to+do+is+substitute
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+you+know+it+s+going+to+cost+a+lot+of+money
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+take+you+quickly
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=through+the+actual+process+of+doing+a+poster
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+do+a+lot+of+work+for+the+school+of+visual+arts+where+i+teach+and+the+director+of+this+school+a+remarkable+man+named+silas+rhodes+often+gives+you
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+says+do+something+with+this+and+so+he+did+and+this+was+the+text+in+words+as+fashion+the+same+rule+will+hold+alike+fantastic+if+too+new+or+old
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=be+not+the+first+by+whom+the+new+are+tried+nor+yet+the+last+to+lay+the+old+aside+i+could+make+nothing+of+that
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+really+struggled+with+this+one+and+the+first+thing+i+did+which+was+sort+of+in+the+absence+of+another+idea+was+say+i+ll+sort+of+write+it+out+and+make+some+words+big+and+i
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+kind+of+design+on+the+back
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=somehow+and+i+was+hoping+as+one+often+does+to+stumble+into+something+so+i+took+another
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=crack+at+it+you+ve+got+to+keep+it+moving+and+i+xeroxed+some+words+on+pieces+of+colored+paper+and+i+pasted+them+down+on+an+ugly+board
error: request timeout
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=would+come+out+of+it+like+words+rule+fantastic+new+old+first+last+pope
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+it+s+by+alexander+pope+but+i+sort+of+made+a+mess+out+of+it+and+then+i+thought+i+d+repeat+it+in+some+way+so+it+was+legible+so+it+was+going+nowhere
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sometimes+in+the+middle+of+a+resistant+problem+i+write+down+things+that+i+know+about+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+you+can+see+the+beginning+of+an+idea+there++because+you+can+see+the+word+new
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+what+happens+there+s+a+relationship+between+the+old+and+the+new+the+new+emerges+from+the+context+of+the+old
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+i+did+some+variations+of+it+but
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+still+wasn+t+coalescing+graphically+at+all+i+had+this+other+version+which+had+something+interesting+about+it
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=being+able+to+put+it+together+in+your+mind+from+clues+the+w+was+clearly+a+w+the+n+was+clearly+an+n
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=even+though+they+were+very+fragmentary+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=wasn+t+a+lot+of+information+in+it++then+i+got+the+words+new+and+old+and+now+i+had+regressed+back+to
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+point+where+there+seemed+to+be+no+return++i+was+really+desperate
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+this+point++and+so+i+do+something+i+m
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=truthfully+ashamed+of+which+is+that+i+took+two+drawings+i+had+made+for+another+purpose
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=put+them+together+it+says+dreams+at+the+top+and+i+was+going+to+do+a+thing+i+say+well+change+the+copy+let+it+say+something+about
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sort+of+fulfill+your+dreams+but+to+my+credit++i+was+so
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=embarrassed+about+doing+that+that+i+never+submitted+this+sketch+and+finally+i
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now++it+doesn+t+look+terribly+interesting++but+it+does+have+something+that
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=distinguishes+it+from+a+lot+of+other
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=posters+for+one+thing+it+transgresses+the+idea+of+what+a+poster+s
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+is+to+be+understood+and+seen
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+not+explained++i+remember+hearing+all+of+you+in+the+graphic+arts+if+you+have+to+explain+it+it+ain+t+working
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+one+day+i+woke+up+and+i+said+well+suppose+that+s+not+true
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+here+s+what+it+says+in+my+explanation+at+the+bottom+left
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=silas+usually+has+a+better+touch+with+his+choice+of+quotations+this+one+generates+no+imagery+at+all+i+am+now+exposing+myself+to+my+audience
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=right+which+is+something+you+never+want+to+do+professionally
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=maybe+the+words+can+make+the+image+without+anything+else+happening+what+s+the+heart+of+this+poem+don+t+be+trendy+if+you+want+to+be+serious
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=doing+the+poster+this+way+trendy+in+itself
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+guess+one+could+reduce+the+idea+further+by+suggesting+that+the+new+emerges+behind+and+through+the+old
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+this+and+then+i+show+you+a+little+drawing+you+see+you+remember+that+old
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thing+i+discarded+well+i+found+a+way+to+use+it++so+there+s+that+little
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+more+didactic+than+visual+maybe+what+wants+to+be+said+is+that+old+and+the+new+are+locked+in+a+dialectical+embrace+a+kind+of+dance+where+each+defines+the+other
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+more+self+questioning+am+i+being+simple+minded
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+this+the+kind+of+simple+that+looks+obvious+or+the+kind+that+looks+profound+there+s+a+significant+difference+this+could+be+embarrassing
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=actually+i+realize+fear+of+embarrassment+drives+me+as+much+as+any+ambition
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=do+you+think+this+sort+of+thing+could+really+attract+a+student+to+the+school+well
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+there+are+two+fresh+things+here+two+fresh+things
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+sort+of+willingness+to+expose+myself+to+a+critical+audience++and+not+to+suggest
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+i+m+doing+and+as+you+know
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+have+to+have+a+front++i+mean+you+ve+got+to+be+confident+if+you+don+t+believe+in+your+work
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+else+is+going+to+believe+in+it++so+that+s+one+thing
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+introduce+the+idea+of+doubt
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=into+graphics+that+can+be+a+big+contribution+the+other+thing+is+to+actually+give+you+two+solutions+for+the
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=price+of+one+you+get+the+big+one+and+if+you+don+t+like+that+how+about+the+little+one
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+relatively+new+idea+and+here+s+just+a+series+of+experiments
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=where+i+ask+the+question+of+does+a+poster+have+to+be+square+now+this+is+a+little+illusion+that+poster+is+not+folded
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+not+folded+that+s+a+photograph+and+it+s+cut+on+the+diagonal+same+cheap+trick+in+the+upper++left+hand+corner
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+very+peculiar+poster+because+simply+because+of+using+the+isometric+perspective+in+the+computer
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+won+t+sit+still+in+the+space+at+times+it+seems+to+be+wider+at+the+back+than+the
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=front+and+then+it+shifts+and+if+you+sit+here+long+enough+it+ll+float+off+the+page+into+the+audience+but+we+don+t+have+time
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+little+bit+about+the+nature+of+perspective+where+the+outside+shape+is+determined+by+the+peculiarity+of+perspective+but+the+shape+of+the+bottle+which+is
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=identical+to+the+outside+shape+is+seen+frontally
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+another+piece+for+the+art+directors++club
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+anna+rees+casting+long+shadows+this+is+another+poster+from+the+school+of+visual+arts++there+were+ten+artists
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=invited+to+participate+in+it+and+it+was+one+of+those+things+where+it+was+extremely+competitive+and+i+didn+t+want+to+be+embarrassed
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+this+the+idea+was+and+it+was+a+brilliant+idea+was+to+have+ten+posters+distributed+throughout+the+city+s+subway+system
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+every+time+you+got+on+the+subway+you+d+be+passing+a+different+poster+all+of+which
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=had+a+different+idea+of+what+art+is+but
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+absolutely+stuck+on+the+idea+of+art+is+and+trying+to
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=determine+what+art+was+but+then+i+gave+up+and+i+said
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+whatever+and+as+soon+as+i+said+that+i+discovered+that+the+word+hat+was+hidden+in+the+word+whatever+and+that+led+me+to
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+inevitable+conclusion+but+then+again++it+s+on+my+list+of+didactic+posters
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+intent+is+to+have+a+literary+accompaniment+that+explains+the+poster+in+case+you+don+t+get+it
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+thought+i+might+use+a+visual+cliche+of+our+time+magritte+s+everyman+to+express+the+idea+that+art+is+mystery+continuity+and+history
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+also+convinced+that+in+an+age+of+computer+manipulation+surrealism+has+become+banal
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+shadow+of+its+former+self
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+phrase++art+is+whatever++expresses+the+current+inclusiveness+that+surrounds+art+making+a+sort+of++it+ain+t+what+you+do+it+s+the+way+that+you+do+it++notion+the+shadow+of+magritte
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+central+part+of+the+poster+a+poetic+event+that+occurs+as+the+shadow
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=man+isolates+the+word++hat++hidden+in+the+word+++whatever
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+four+hats+shown+in+the+poster+suggests+how+art+might+be+defined+as+a+thing+itself++the+worth+of+the+thing+the+shadow+of+the+thing++and+the+shape+of+the+thing
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+one+that+i+did+not+submit++which+i+still+like++i+wanted+to+use+the+same+phrase+there+were
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+letterforms+some+years+ago+sort+of+see+how+far+you+could+go+and+still+be+able+to+read+them+and+that+idea+stuck+in+my+head
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+then+i+took+the+pieces+that+i+had+taken+off+and+put+them+at+the+bottom+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+course+those+are+the+remains++and+they+re+so+labeled+but+what+really+happens+is+that+you+read+it+as+art+is+whatever+remains
found 0 videos: []
error: no video is found.
sleep 3 seconds to avoid blocking
------<1531>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MinaBissell_2012G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+don+t+usually+like+cartoons+i+don+t+think+many+of+them+are+funny+i+find+them+weird
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+love+this+cartoon+from+the+new+yorker
found 2 videos: [['/talks/mina_bissell_experiments_that_point_to_a_new_understanding_of_cancer', '2012'], ['/talks/rives_the_museum_of_four_in_the_morning', '2014']]
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+i+m+afraid+i+used+to+be+the+cat+i+always+wanted+to+be+outside+the+box+and+it+s+partly+because
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+came+to+this+field+from+a+different+background+chemist+and+a+bacterial+geneticist+so+what+people+were+saying+to+me+about+the+cause+of+cancer+sources+of+cancer
found 1 videos: [['/talks/mina_bissell_experiments_that_point_to_a_new_understanding_of_cancer', '2012']]
selected: /talks/mina_bissell_experiments_that_point_to_a_new_understanding_of_cancer
sleep 1 seconds to avoid blocking
------<1532>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MirandaWang_2013.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+do+you+feel+about+accidents+when+we+think+about+accidents+we+usually+consider+them+to+be+harmful+unfortunate+or+even+dangerous+and+they+certainly+can
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=can+be+but+are+they+always+that+bad
found 12 videos: [['/talks/ben_goldacre_battling_bad_science', '2011'], ['/talks/madhumita_murgia_how_stress_affects_your_brain', '2015'], ['/talks/paul_bloom_can_prejudice_ever_be_a_good_thing', '2014'], ['/talks/ben_saunders_why_bother_leaving_the_house', '2012'], ['/talks/tali_sharot_the_optimism_bias', '2012'], ['/talks/peter_mende_siedlecki_should_you_trust_your_first_impression', '2013'], ['/talks/jackson_katz_violence_against_women_it_s_a_men_s_issue', '2013'], ['/talks/jason_pontin_can_technology_solve_our_big_problems', '2013'], ['/talks/daniel_goldstein_the_battle_between_your_present_and_future_self', '2011'], ['/talks/esther_perel_rethinking_infidelity_a_talk_for_anyone_who_has_ever_loved', '2015'], ['/talks/margaret_gould_stewart_how_giant_websites_design_for_you_and_a_billion_others_too', '2014'], ['/talks/charles_limb_building_the_musical_muscle', '2011']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+discovery+that+had+led+to+penicillin+for+example+is+one+of+the+most+fortunate+accidents+of+all+time
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=without+biologist+alexander+fleming+s+moldy+accident+caused+by+a+neglected+workstation+we+wouldn+t+be+able+to+fight+off+so+many+bacterial+infections+jeanny+yao
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=miranda+and+i+are+here+today+because+we+d+like+to+share+how+our+accidents+have+led+to+discoveries
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+visited+the+vancouver+waste+transfer+station+and+saw+an+enormous+pit+of+plastic+waste
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+realized+that+when+plastics+get+to+the+dump+it+s+difficult+to+sort+them+because+they+have+similar+densities
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+when+they+re+mixed+with+organic+matter+and+construction+debris+it+s+truly+impossible+to+pick+them+out+and+environmentally+eliminate+them+mw
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=however+plastics+are+useful+because+they+re+durable+flexible+and+can+be+easily+molded+into+so+many+useful+shapes
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=convenience+is+that+there+s+a+high+cost+to+this
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=plastics+cause+serious+problems+such+as+the+destruction+of+ecosystems+the+pollution+of+natural+resources+and+the+reduction+of+available+land+space
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+picture+you+see+here+is+the+great+pacific+gyre+when
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+think+about+plastic+pollution+and+the+marine+environment+we+think+about+the+great+pacific+gyre+which+is+supposed+to+be+a+floating+island+of+plastic+waste
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+that+s+no+longer+an+accurate
found 1 videos: [['/talks/seth_shostak_et_is_probably_out_there_get_ready', '2012']]
selected: /talks/seth_shostak_et_is_probably_out_there_get_ready
sleep 5 seconds to avoid blocking
------<1533>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MiriamZoilaPerez_2016W.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=most+of+you+can+probably+relate+to+what+i+m+feeling+right+now
found 1 videos: [['/talks/celeste_headlee_10_ways_to_have_a_better_conversation', '2016']]
selected: /talks/celeste_headlee_10_ways_to_have_a_better_conversation
sleep 5 seconds to avoid blocking
------<1534>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MiruKim_2008P.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+raised+in+seoul+korea++and+moved+to+new+york+city+in+one+thousand+nine+hundred+and+ninety+nine+to+attend+college++i+was+pre+med+at+the+time
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+thought+i+would+become+a+surgeon+because+i+was+interested+in+anatomy+and
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=dissecting+animals+really+piqued+my+curiosity
error: request timeout
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+fell+in+love+with+new+york+city
found 5 videos: [['/talks/miru_kim_my_underground_art_explorations', '2009'], ['/talks/raghava_kk_my_5_lives_as_an_artist', '2010'], ['/talks/david_rockwell_a_memorial_at_ground_zero', '2007'], ['/talks/paula_scher_great_design_is_serious_not_solemn', '2009'], ['/talks/majora_carter_greening_the_ghetto', '2006']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+started+to+realize+that+i+could+look+at+the+whole+city+as+a+living+organism
found 5 videos: [['/talks/miru_kim_my_underground_art_explorations', '2009'], ['/talks/craig_venter_sampling_the_ocean_s_dna', '2007'], ['/talks/robert_ballard_the_astonishing_hidden_world_of_the_deep_ocean', '2008'], ['/talks/will_wright_spore_birth_of_a_game', '2007'], ['/talks/aubrey_de_grey_a_roadmap_to_end_aging', '2006']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+wanted+to+dissect+it+and+look+into+its+unseen+layers
found 1 videos: [['/talks/miru_kim_my_underground_art_explorations', '2009']]
selected: /talks/miru_kim_my_underground_art_explorations
sleep 3 seconds to avoid blocking
------<1535>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MishaGlenny_2009G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+are+grim+economic+times+fellow+tedsters+grim+economic+times+indeed
found 1 videos: [['/talks/misha_glenny_the_real_story_of_mcmafia_how_global_crime_networks_work', '2009']]
selected: /talks/misha_glenny_the_real_story_of_mcmafia_how_global_crime_networks_work
sleep 3 seconds to avoid blocking
------<1536>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MishaGlenny_2011G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thing+to+do+but+let+s+kick+off+the+afternoon+with+a+message+from+a+mystery+sponsor
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ladies+and+gentlemen+a+sophisticated+group+of+politically+motivated+hackers+who+have+emerged+in+two
found 1 videos: [['/talks/misha_glenny_hire_the_hackers', '2011']]
selected: /talks/misha_glenny_hire_the_hackers
sleep 1 seconds to avoid blocking
------<1537>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MitchellBesser_2010G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=want+you+to+take+a+trip+with+me
found 10 videos: [['/talks/robert_ballard_the_astonishing_hidden_world_of_the_deep_ocean', '2008'], ['/talks/dan_gilbert_why_we_make_bad_decisions', '2008'], ['/talks/michelle_obama_a_passionate_personal_case_for_education', '2009'], ['/talks/diana_nyad_extreme_swimming_with_the_world_s_most_dangerous_jellyfish', '2012'], ['/talks/sheena_iyengar_how_to_make_choosing_easier', '2012'], ['/talks/aaron_huey_america_s_native_prisoners_of_war', '2010'], ['/talks/sendhil_mullainathan_solving_social_problems_with_a_nudge', '2010'], ['/talks/paul_sereno_digging_up_dinosaurs', '2009'], ['/talks/rory_bremner_a_one_man_world_summit', '2009'], ['/talks/bruce_feiler_the_council_of_dads', '2011']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=picture+yourself+driving+down+a+small+road+in+africa++and+as+you+drive+along+you+look+off+to+the+side++and+this+is+what+you+see
found 1 videos: [['/talks/mitchell_besser_mothers_helping_mothers_fight_hiv', '2010']]
selected: /talks/mitchell_besser_mothers_helping_mothers_fight_hiv
sleep 2 seconds to avoid blocking
------<1538>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MitchellJoachim_2010.stm
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+we+can+right+now+america+is+in+an+unremitting+state+of+trauma++and+there+s+a+cause+for+that+all+right
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+ve+got+mcpeople++mccars++mchouses+as+an+architect
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+have+to+confront+something+like+this+so+what+s+a+technology+that+will+allow+us+to+make+ginormous+houses
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+it+s+been+around+for+two+thousand+five+hundred+years+it+s+called+pleaching+or+grafting+trees+together+or+grafting+inosculate+matter+into+one+contiguous+vascular+system
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+do+something+different+than+what+we+did+in+the+past+we+add+kind+of+a+modicum+of+intelligence+to+that+we+use+cnc+to+make+scaffolding+to+train+semi+epithetic+matter+plants
found 1 videos: [['/talks/mitchell_joachim_don_t_build_your_home_grow_it', '2010']]
selected: /talks/mitchell_joachim_don_t_build_your_home_grow_it
sleep 1 seconds to avoid blocking
------<1539>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MitchResnick_2012X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+saturday+afternoon+in+may++and
found 4 videos: [['/talks/catherine_bracy_why_good_hackers_make_good_citizens', '2014'], ['/talks/mitch_resnick_let_s_teach_kids_to_code', '2013'], ['/talks/lemon_andersen_please_don_t_take_my_air_jordans', '2012'], ['/talks/charlie_todd_the_shared_experience_of_absurdity', '2011']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+suddenly+realized+that+the+next+day+was+mother+s+day+and+i+hadn+t+gotten+anything+for+my+mom++so+i+started+thinking+about
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+should+i+get+my+mom+for+mother+s+day++i+thought+why+don+t+i+make+her+an+interactive+mother+s+day+card
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=using+the+scratch+software+that+i+d+been+developing+with+my+research+group+at+the+mit+media+lab
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+developed+it+so+that+people+could+easily+create+their+own+interactive+stories+and+games+and+animations
found 1 videos: [['/talks/mitch_resnick_let_s_teach_kids_to_code', '2013']]
selected: /talks/mitch_resnick_let_s_teach_kids_to_code
sleep 1 seconds to avoid blocking
------<1540>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MohamedAli_2013Z.stm
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+small+town+kid+i+don+t+know+his+name+but+i+do+know+his+story+he+lives+in+a+small+village+in+southern+somalia
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=drives+the+small+village+into+poverty+and+to+the+brink+of+starvation
found 1 videos: [['/talks/mohamed_ali_the_link_between_unemployment_and_terrorism', '2013']]
selected: /talks/mohamed_ali_the_link_between_unemployment_and_terrorism
sleep 4 seconds to avoid blocking
------<1541>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MollyCrockett_2012S.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+do+experiments+to+test+how+different+chemicals+in+the+brain+influence+the+choices+we+make+i+m+here+to+tell+you+the+secret+to+successful
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+right+according+to+scientists+a+cheese+sandwich+is+the+solution+to+all+your+tough+decisions+how+do+i+know
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+the+scientist+who+did+the+study
found 1 videos: [['/talks/dennis_hong_my_seven_species_of_robot_and_how_we_created_them', '2010']]
selected: /talks/dennis_hong_my_seven_species_of_robot_and_how_we_created_them
sleep 3 seconds to avoid blocking
------<1542>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MollyStevens_2013G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+humans+it+s+in+our+nature+to+want+to+improve+our+health+and+minimize+our+suffering
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=whatever+life+throws+at+us+whether+it+s+cancer+diabetes+heart+disease+or+even+broken+bones+we+want+to+try+and+get+better
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+i+m+head+of+a+biomaterials+lab+and+i+m+really+fascinated+by+the+way+that
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=humans+have+used+materials+in+really+creative+ways+in+the+body
found 4 videos: [['/talks/molly_stevens_a_new_way_to_grow_bone', '2014'], ['/talks/jay_silver_hack_a_banana_make_a_keyboard', '2013'], ['/talks/jay_bradner_open_source_cancer_research', '2011'], ['/talks/john_hunter_teaching_with_the_world_peace_game', '2011']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=over+time++take+for+example++this+beautiful+blue+nacre+shell+this+was+actually+used+by+the+mayans+as+an+artificial
found 1 videos: [['/talks/molly_stevens_a_new_way_to_grow_bone', '2014']]
selected: /talks/molly_stevens_a_new_way_to_grow_bone
sleep 5 seconds to avoid blocking
------<1543>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MollyWinter_2016X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=whenever+i+get+to+travel+for+work+i+try+to+find+out+where+my+drinking+water+comes+from+and+where+my+poop+and+pee+go
found 1 videos: [['/talks/molly_winter_the_taboo_secret_to_better_health', '2016']]
selected: /talks/molly_winter_the_taboo_secret_to_better_health
sleep 1 seconds to avoid blocking
------<1544>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MonaChalabi_2017S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=be+talking+about+statistics+today+if+that+makes+you+immediately+feel+a+little+bit+wary+that+s+ok++that+doesn+t+make+you+some+kind+of+crazy+conspiracy+theorist
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+makes+you+skeptical++and+when+it+comes+to+numbers+especially+now
found 5 videos: [['/talks/mona_chalabi_3_ways_to_spot_a_bad_statistic', '2017'], ['/talks/yanis_varoufakis_capitalism_will_eat_democracy_unless_we_speak_up', '2016'], ['/talks/michael_shellenberger_how_fear_of_nuclear_power_is_hurting_the_environment', '2016'], ['/talks/christine_porath_why_being_respectful_to_your_coworkers_is_good_for_business', '2018'], ['/talks/andrew_marantz_inside_the_bizarre_world_of_internet_trolls_and_propagandists', '2019']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+should+be+skeptical++but+you+should+also+be+able+to+tell+which+numbers+are+reliable+and+which+ones+aren+t+so+today+i+want+to+try+to+give+you+some+tools+to+be+able+to+do+that
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+before+i+do+i+just+want+to+clarify+which+numbers+i+m+talking+about+here+i
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=m+not+talking+about+claims+like+nine+out+of+ten+women+recommend+this+anti+aging+cream+i+think+a+lot+of+us+always+roll+our+eyes+at+numbers+like+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+s+different+now+is+people+are+questioning+statistics+like+the+us+unemployment+rate+is+five+percent+what+makes+this+claim+different+is+it+doesn+t+come+from+a+private+company++it+comes+from+the+government
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+four+out+of+ten+americans+distrust+the+economic+data+that+gets+reported+by+government+among+supporters+of+president+trump+it+s+even+higher+it+s+about+seven+out+of+ten
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+don+t+need+to+tell+anyone+here+that+there+are+a+lot+of+dividing+lines+in+our+society+right+now
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+a+lot+of+them+start+to+make+sense++once+you+understand+people+s+relationships+with+these+government+numbers
found 1 videos: [['/talks/jonathan_haidt_can_a_divided_america_heal', '2016']]
selected: /talks/jonathan_haidt_can_a_divided_america_heal
sleep 1 seconds to avoid blocking
------<1545>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MonicaAraya_2016T.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+do+we+build+a+society
found 20 videos: [['/talks/monica_araya_a_small_country_with_big_ideas_to_get_rid_of_fossil_fuels', '2016'], ['/talks/sal_khan_let_s_teach_for_mastery_not_test_scores', '2016'], ['/talks/sydney_chaffee_how_teachers_can_help_kids_find_their_political_voices', '2018'], ['/talks/kate_messner_how_to_build_a_fictional_world', '2014'], ['/talks/martin_ford_how_we_ll_earn_money_in_a_future_without_jobs', '2017'], ['/talks/nabila_alibhai_why_people_of_different_faiths_are_painting_their_houses_of_worship_yellow', '2017'], ['/talks/howard_c_stevenson_how_to_resolve_racially_stressful_situations', '2018'], ['/talks/rachel_botsman_we_ve_stopped_trusting_institutions_and_started_trusting_strangers', '2016'], ['/talks/jaron_lanier_how_we_need_to_remake_the_internet', '2018'], ['/talks/arthur_brooks_a_conservative_s_plea_let_s_work_together', '2016'], ['/talks/mara_mintzer_how_kids_can_help_design_cities', '2018'], ['/talks/nita_farahany_when_technology_can_read_minds_how_will_we_protect_our_privacy', '2018'], ['/talks/kevin_kelly_how_ai_can_bring_on_a_second_industrial_revolution', '2016'], ['/talks/aala_el_khani_what_it_s_like_to_be_a_parent_in_a_war_zone', '2017'], ['/talks/wael_ghonim_let_s_design_social_media_that_drives_real_change', '2016'], ['/talks/johan_rockstrom_5_transformational_policies_for_a_prosperous_and_sustainable_world', '2018'], ['/talks/chelsea_shields_how_i_m_working_for_change_inside_my_church', '2015'], ['/talks/maryn_mckenna_what_do_we_do_when_antibiotics_don_t_work_any_more', '2015'], ['/talks/verna_myers_how_to_overcome_our_biases_walk_boldly_toward_them', '2014'], ['/talks/don_tapscott_how_the_blockchain_is_changing_money_and_business', '2016']]
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+a+very+complex+challenge++and+i+believe+developing+countries+could+take+the+lead+in+this+transition
found 1 videos: [['/talks/monica_araya_a_small_country_with_big_ideas_to_get_rid_of_fossil_fuels', '2016']]
selected: /talks/monica_araya_a_small_country_with_big_ideas_to_get_rid_of_fossil_fuels
sleep 2 seconds to avoid blocking
------<1546>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MonicaByrne_2016.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=do+i+look+real+to+you++hope+so+i+have+no+idea+if+you+re+seeing+this+but+i+m+just+going+to
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=look+ahead+and+trust+that+you+re+there+i+ve
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=drawn+a+semicircle+in+the+sand+in+front+of+me+so+i+don+t+walk+past+it+and+look+like+i+m+floating+in+midair
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=right+now+i+m+standing+in+the+open+air+on+a+beach+under+a+palm+tree
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+exact+spot+where+your+stage+used+to+be
found 3 videos: [['/talks/monica_byrne_a_sci_fi_vision_of_love_from_a_318_year_old_hologram', '2016'], ['/talks/mona_chalabi_3_ways_to_spot_a_bad_statistic', '2017'], ['/talks/dame_ellen_macarthur_the_surprising_thing_i_learned_sailing_solo_around_the_world', '2015']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+have+twelve+minutes+with+you++i+set+a+limit
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=infinite+possibility+is+a+creator+s+worst+enemy
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+example+this+dress+i+d+asked+her+to+design+something+that+a+priest+might+have+worn+in+23rd+century+cairo
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+only+had+three+days+to+make+it+and+the+only+fabric+we+had+was+an+old+duvet+cover+that+another+resident+left+behind+but
found 1 videos: [['/talks/monica_byrne_a_sci_fi_vision_of_love_from_a_318_year_old_hologram', '2016']]
selected: /talks/monica_byrne_a_sci_fi_vision_of_love_from_a_318_year_old_hologram
sleep 5 seconds to avoid blocking
------<1547>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MonicaLewinsky_2015.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+re+looking+at+a+woman
found 9 videos: [['/talks/alessandra_orofino_it_s_our_city_let_s_fix_it', '2014'], ['/talks/sanford_biggers_an_artist_s_unflinching_look_at_racial_violence', '2016'], ['/talks/norman_spack_how_i_help_transgender_teens_become_who_they_want_to_be', '2014'], ['/talks/luma_mufleh_don_t_feel_sorry_for_refugees_believe_in_them', '2017'], ['/talks/amy_webb_how_i_hacked_online_dating', '2013'], ['/talks/alice_goffman_how_we_re_priming_some_kids_for_college_and_others_for_prison', '2015'], ['/talks/jean_paul_mari_the_chilling_aftershock_of_a_brush_with_death', '2015'], ['/talks/helen_fisher_technology_hasn_t_changed_love_here_s_why', '2016'], ['/talks/michael_murphy_architecture_that_s_built_to_heal', '2016']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+was+publicly+silent+for+a+decade
found 2 videos: [['/talks/monica_lewinsky_the_price_of_shame', '2015'], ['/talks/linus_torvalds_the_mind_behind_linux', '2016']]
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+only+recently++it+was+several+months+ago+that+i+gave+my+very+first+major+public+talk+at+the+forbes+thirty+under+thirty+summit
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=five+hundred+brilliant+people+all+under+the+age+of+thirty
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+meant+that+in+one+thousand+nine+hundred+and+ninety+eight+the+oldest+among+the+group+were+only+fourteen
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+some+might+only+have+heard+of+me+from+rap+songs
found 10 videos: [['/talks/monica_lewinsky_the_price_of_shame', '2015'], ['/talks/chris_milk_the_birth_of_virtual_reality_as_an_art_form', '2016'], ['/talks/johann_hari_everything_you_think_you_know_about_addiction_is_wrong', '2015'], ['/talks/dave_isay_everyone_around_you_has_a_story_the_world_needs_to_hear', '2015'], ['/talks/sophie_scott_why_we_laugh', '2015'], ['/talks/anne_lamott_12_truths_i_learned_from_life_and_writing', '2017'], ['/talks/harry_baker_a_love_poem_for_lonely_prime_numbers', '2015'], ['/talks/chimamanda_ngozi_adichie_we_should_all_be_feminists', '2017'], ['/talks/raj_panjabi_no_one_should_die_because_they_live_too_far_from_a_doctor', '2017'], ['/talks/ajit_narayanan_a_word_game_to_communicate_in_any_language', '2014']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=night+of+my+speech+a+surprising+thing+happened+at+the+age+of+forty+one+i+was+hit+on+by+a
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+was+charming+and+i+was+flattered++and+i+declined+you+know+what+his+unsuccessful+pickup+line+was
found 1 videos: [['/talks/monica_lewinsky_the_price_of_shame', '2015']]
selected: /talks/monica_lewinsky_the_price_of_shame
sleep 5 seconds to avoid blocking
------<1548>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MonikaBulaj_2011G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+travels+to+afghanistan+began+many+many+years+ago
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+the+eastern+border+of+my+country+my+homeland++poland++i+was
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=walking+through+the+forests+of+my+grandmother+s+tales
error: request timeout
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=where+every+field+hides+a+grave+where+millions+of+people+have+been+deported
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+killed+in+the+20th+century
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=behind+the+destruction+i+found+a+soul+of+places++i+met+humble+people
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+heard+their+prayer+and+ate+their+bread
error: request timeout
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=from+eastern+europe+to+central+asia+through+the+caucasus+mountains++middle+east+north+africa
found 1 videos: [['/talks/monika_bulaj_the_hidden_light_of_afghanistan', '2011']]
selected: /talks/monika_bulaj_the_hidden_light_of_afghanistan
sleep 1 seconds to avoid blocking
------<1549>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MorganaBailey_2014S.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+was+young++i+prided+myself+as+a+nonconformist+in+the+conservative+u+s+state+i+live+in+kansas
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+didn+t+follow+along+with+the+crowd++i+wasn+t+afraid+to+try+weird+clothing+trends+or+hairstyles+i+was+outspoken
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=extremely+social+even+these+pictures+and+postcards+of+my+london+semester+abroad
found 1 videos: [['/talks/morgana_bailey_the_danger_of_hiding_who_you_are', '2015']]
selected: /talks/morgana_bailey_the_danger_of_hiding_who_you_are
sleep 3 seconds to avoid blocking
------<1550>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MorganSpurlock_2011.stm
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=putting+myself+into+situations+that+are+usually+very+difficult+and+at+the+same+time+somewhat+dangerous++i
found 1 videos: [['/talks/morgan_spurlock_the_greatest_ted_talk_ever_sold', '2011']]
selected: /talks/morgan_spurlock_the_greatest_ted_talk_ever_sold
sleep 4 seconds to avoid blocking
------<1551>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MosheSafdie_2002.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+to+talk+about+is+something
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+was+very+dear+to+kahn+s+heart+which+is+how+do+we+discover+what+is+really+particular+about+a+project++how+do+you+discover+the+uniqueness
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+a+project+as+unique+as+as+a+person+because+it+seems+to+me+that+finding+this+uniqueness+has+to+do+with
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+whole+force+of+globalization+that+the+particular+is
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=central+to+finding+the+uniqueness+of+place+and+the+uniqueness+of+a+program+in+a+building
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+i+ll+take+you+to+wichita+kansas
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=where+i+was+asked+some+years+ago+to+do+a+science+museum+on+a+site+right+downtown
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+the+river++and+i+thought+the+secret+of+the+site+was+to+make+the+building+of+the+river++part+of+the+river
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=unfortunately+though++the+site+was+separated+from+the+river+by+mclean+boulevard+so+i+suggested+let+s+reroute+mclean
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+gave+birth+instantly+to+friends+of+mclean+boulevard
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+took+six+months+to+reroute+it+the+first
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=image+i+showed+the+building+committee+was
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=astronomic+observatory+of+jantar+mantar+in+in+jaipur+because+i+talked+about+what+makes+a+building+a+building+of+science
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+seemed+to+me+that+this+structure+complex++rich+and+yet+totally+rational++it+s+an+instrument+had+something+to+do+with+science+and+somehow+a+building+for+science+should+be+different+and+unique+and+speak+of+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+my+first+sketch+after+i+left+was+to+say+let+s+cut+the+channel
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=make+an+island+and+make+an+island+building+and+i+got+all+excited+and+came+back+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+sort+of+looked+at+me+in+dismay+and+said+an+island+this+used+to+be+an+island+ackerman+island
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+filled+in+the+channel+during+the+depression+to+create+jobs
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+the+process+began+and+they+said+you+can+t+put+it+all+on+an+island+some+of+it+has+to+be+on+the+mainland+because
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+don+t+want+to+turn+our+back+to+the+community
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+emerged+a+design+the+galleries+sort+of+forming+an+island+and+you+could+walk+through+them+or+on+the+roof++and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+were+all+kinds+of+exciting+features+you+could+come+in+through+the+landside+buildings+walk+through+the+galleries+into+playgrounds+in+the+landscape+if+you+were+cheap+you+could+walk+on+top+of+a+bridge+to+the+roof
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=exhibits+and+then+get+totally+seduced+come+back
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+pay+the+five+dollars+admission
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+client+was+happy+well+sort+of+happy+because+we+were+four+million+dollars+over+the+budget
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+essentially+happy+but+i+was+still+troubled++and+i+was+troubled+because+i+felt+this+was+capricious++it+was+complex+but+there+was+something+capricious+about
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=its+complexity+it+was+what+i+would+say++compositional+complexity+and+i+felt
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+if+i+had+to+fulfill+what+i+talked+about+a+building+for+science+there+had+to+be
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=kind+of+a+generating+idea+some+kind+of+a+generating+geometry++and+this+gave+birth+to+the+idea+of+having+toroidal+generating+geometry
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+with+its+center+deep+in+the+earth+for+the+landside+building+and+a+toroid+with+its+center
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+sky+for+the+island+building+a+toroid
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+for+some+of+us+a+bagel++and
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=out+of+this+idea+started+spinning+off+many+many+kinds+of+variations+of+different+plans+and+possibilities++and+then+the+plan+itself+evolved+in+relationship+to+the+exhibits
error: request timeout
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+see+the+intersection+of+the+plan+with+the+toroidal+geometry
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+finally+the+building+this+is+the+model++and+when+there+were+complaints+about+budget+i+said
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=worth+doing+the+island+because+you+get+twice+for+your+money++reflections+and+here+s+the+building+as+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=opened+with+a+channel+overlooking+downtown
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+as+seen+from+downtown++and+the+bike+route+s+going+right+through+the+building+so+those+traveling+the+river+would+see+the+exhibits+and+be+drawn+to+the+building
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=toroidal+geometry+made+for+a+very+efficient+building++every+beam+in+this+building+is+the+same+radius
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+laminated+wood+every+wall++every+concrete+wall+is+resisting+the+stresses+and+supporting+the+building++every+piece+of+the+building+works+these+are+the+galleries+with+the+light+coming+in+through+the
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+asked+to+design+a+children+s+memorial+museum+in+a+holocaust+museum+in+yad+vashem+in+jerusalem+which
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+see+here+the+campus++i+was+asked+to+do+a+building+and+i+was+given+all+the+artifacts+of+clothing+and
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+drawings+and+i+felt+very+troubled+i+worked+on+it+for+months+and+i+couldn+t
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=deal+with+it+because+i+felt+people+were+coming+out+of+the+historic+museum+they+are+totally+saturated+with+information+and+to+see+yet+another+museum+with
error: request timeout
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+was+a+cave+on+the+site++we+tunnel+into+the+hill
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=descend+through+the+rock+into+an+underground+chamber
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+an+anteroom+with+photographs+of+children+who+perished
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+you+come+into+a+large+space++there+is+a+single+candle+flickering+in+the+center
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=reflective+glasses++it+reflects+into+infinity+in+all+directions++you+walk+through+the+space
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+voice+reads+the+names+ages+and+place+of+birth+of+the+children+this+voice+does+not+repeat+for+six+months
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+you+descend+to+light+and+to+the+north+and+to+life
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=discotheque+you+can+t+do+that+and+they+shelved+the+project++and+it+sat+there+for+ten+years+and+then+one+day+abe+spiegel+from
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=los+angeles+who+had+lost+his++three+year+old+son+at+auschwitz+came+saw+the+model+wrote+the+check+and+it+got+built+ten+years+later
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+many+years+after+that+in
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+on+one+of+my+monthly+trips+to+jerusalem
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+got+a+call+from+the+foreign+ministry+saying+we+ve+got+the+chief+minister
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+the+punjab+here+he+is+on+a+state+visit++we+took+him+on+a
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=visit+to+yad+vashem+we+took+him+to+the+children+s+memorial++he+was+extremely+moved++he+s+demanding+to+meet+the
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=could+you+come+down+and+meet+him+in+tel+aviv+and+i+went+down+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=chief+minister+badal+said+to+me
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+sikhs+have+suffered+a+great+deal+as+you+have+jews++i+was+very+moved+by+what+i+saw+today
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+are+going+to+build+our+national+museum+to+tell+the+story+of+our+people+we
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=re+about+to+embark+on+that+i+d+like+you+to+come+and+design+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+you+know+it+s+one+of+those+things+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+don+t+take+too+seriously++but+two+weeks
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=later++i+was+in+this+little+town+anandpur+sahib++outside+chandigarh+the+capital+of+the+punjab+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+temple+and+also+next+to+it+the+fortress
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+the+last+guru+of+the+sikhs++guru+gobind++died+in+as+he+wrote+the+khalsa+which
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+got+to+work+and+they+took+me+somewhere+down+there+nine+kilometers+away+from+the+town+and+the+temple+and+said+that+s+where+we+have+chosen+the+location+and+i+said+this+just+doesn+t+make+any+sense
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+pilgrims+come+here+by+the+hundreds+of+thousands+they+re+not+going+to+get+in+trucks+and+buses+and+go+down+there++let+s+get+back+to+the+town+and+walk+to+the+site+and+i+recommended+they+do+it+right+there+on+that+hill+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+hill+and+bridge+all+the+way+into+the+town+and+as+things+are+a+little+easier+in+india++the+site+was+purchased+within+a+week+and+we+were
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=working+and+my+proposal+was+to+split+the+museum+into+two
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+permanent+exhibits+at+one+end+the
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+changing+exhibitions+on+the+other
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+flood+the+valley+into+a+series+of+water+gardens+and+to+link+it+all+to+the+fort+and+to+the+downtown++and+the+structures+rise+from+the+sand+cliffs+they+re+built+in+concrete+and+sandstones
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=stainless+steel+they+are+facing+south+and+reflecting+light+towards+the+temple+itself
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=pedestrians+crisscross+from+one+side+to+the+other++and+as+you+come+from+the+north+it+is+all+masonry+growing+out+of+the+sand+cliffs+as+you+come+from+the+himalayas
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=evoking+the+tradition+of+the+fortress+and+then+i+went+away+for+four+months
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+there+was+going+to+be+groundbreaking++and+i+came+back+and+lo+and+behold+the+little+model+i+d+left+behind+had+been+built+ten+times+bigger+for+public
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=within+the+working+drawings++and+half+a+million+people+gathered+for+the+celebrations
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+see+them+on+the+site+itself+as+the+foundations+are+beginning+i+was+renamed
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+work+and+it+will+be+finished+in+two+years+back+to+yad+vashem+three+years+ago+after+all+this+episode+began
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=yad+vashem+decided+to+rebuild+completely+the+historic+museum
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+now+washington+was+built+the+holocaust+museum+in+washington
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+museum+is+so+much+more+comprehensive+in+terms+of+information+and+yad+vashem+needs+to+deal+with+three+million+visitors+a+year+at+this+point
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+said+let+s+rebuild+the+museum+but+of+course+the+sikhs+might+give+you+a+job+on+a+platter
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+jews+make+it+hard+international+competition++phase+one+phase+two+phase+three
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+again+i+felt+kind+of+uncomfortable+with+the+notion+that+a+building+the+size+of+the+washington+building
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fifty+thousand+square+feet+will+sit+on+that+fragile
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hill+and+that+we+will+go+into+galleries
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=rooms+with+doors+and+sort+of+of+familiar+rooms+to+tell+the+story+of+the+holocaust++and+i+proposed+that+we+cut+through+the+mountain
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+was+my+first+sketch+just+cut+the+whole+museum+through+the+mountain+enter+from+one+side+of+the+mountain+come+out+on+the+other+side+of+the+mountain+and+then+bring+light+through+the+mountain+into+the
error: request timeout
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+you+see+the+model+a+reception+building+and+some+underground+parking++you+cross+a+bridge+you+enter+this+triangular
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=room++sixty+feet+high++which+cuts+right+into+the+hill+and+extends+right+through+as+you+go
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=towards+the+north+and+all+of+it+then+all+the
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+see+the+openings+for+the+light+and+at+night++just+one+line+of+light+cuts+through+the+mountain+which+is+a+skylight+on+top+of+that
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=triangle++and+all+the+galleries+as+you+move+through+them+and+so+on+are+below+grade++and
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+are+chambers+carved+in+the+rock+concrete+walls+stone++the+natural+rock+when+possible+with+the+light+shafts+this+is+actually+a+spanish
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+sort+of+inspired+the+kind+of+spaces+that+these+galleries+could+be
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+coming+towards+the+north++it+opens+up+it+bursts+out+of+the+mountain+into+again+a+view+of+light+and+of+the+city+and+of
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+d+like+to+conclude+with+a+project+i+ve+been+working+on+for+two+months
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+the+headquarters+for+the+institute+of+peace
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+washington+the+u+s+institute+of+peace+the+site+chosen+is+across+from+the+lincoln+memorial++you+see+it+there
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=directly+on+the+mall+it+s+the+last+building+on+the+mall+on+access+of+the+roosevelt+bridge+that+comes+in+from+virginia
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+is+something+i+m+just+beginning+to+work+on
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+one+recognized+the+kind+of+uniqueness+of+the+site
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+it+were+to+be+anywhere+in+washington+it+would+be+an+office+building+a+conference+center+a+place+for+negotiating+peace+and+so+on+all+of+which+the+building+is
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+by+virtue+of+the+choice+of+putting+it+on+the+mall+and+by+the+lincoln+memorial+this+becomes+the+structure+that+is
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+symbol+of+peace+on+the+mall+and+that+was+a+lot+of+heat+to
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=deal+with+the+first+sketch+recognizes+that+the+building+is+many+spaces
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=spaces+where+research+goes+on+conference+centers+a+public+building+because+it+will+be+a+museum+devoted+to+peacemaking
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+these+are+the+drawings+that+we+submitted+for+the+competition++the+plans
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=showing+the+spaces+which+radiate+outwards+from+the+entry
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+see+the+structure+as+in+the+sequence+of+structures+on+the+mall+very+transparent+and+inviting+and+looking+in
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+as+you+enter+it+again++looking+in+all+directions+towards+the+city
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+what+i+felt+about+that+building+is+that+it+really+was+a+building+that+had+to+do+with+a+lightness+of+being+to
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=quote+kundera+that+it+had+to+do+with+whiteness+it+had+to+do+with+a+certain+dynamic+quality+and+it+had+to+do+with
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+where+it+is+it+s+sort+of
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=studies+for+the+structure+of+the+roof++which+demands+maybe+new+materials++how+to+make+it+white++how+to+make+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=translucent++how+to+make+it+glowing+how+to+make+it+not+capricious
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+here+studying+in+three+dimensions++how+to+give+some+kind+again+of
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=order+a+structure+not+something+you+feel+you+could+just+change+because+you+stop+the+design+of+that
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+d+like+to+conclude+by+saying+something
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+d+like+to+conclude+by+relating+all+of+what+i+ve
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+know+it+is+not+a+fashionable+term+these+days+and+certainly+not+fashionable+in+the+discourse+of+architectural+schools+but
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+seems+to+me+that+all+this+in+one+way+or+the+other+is+a+search+for+beauty
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=beauty+in+the+most+profound+sense+of+fit
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=beauty+connotes+humanity++we+call+a+natural+object+beautiful+because+we+see+that+its+form+expresses+fitness
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+i+would+have+said+the+perfect+fulfillment+of+purpose++nevertheless+beauty+as+the+kind+of+fit+something+that+tells+us+that
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+the+forces+that+have+to+do+with+our+natural+environment+have+been+fulfilled+and+our+human+environment+for+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=twenty+years+ago+in+a+conference+richard+and+i+were+at+together++i+wrote+a+poem
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+seems+to+me+to+still+hold+for+me+today
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+who+seeks+truth+shall+find+beauty
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+who+seeks+beauty+shall+find+vanity++he+who+seeks+order+shall+find+gratification
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=gratification+shall+be+disappointed++he+who+considers+himself+the+servant+of+his+fellow+beings+shall+find+the+joy+of
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+who+seeks+self+expression+shall+fall+into+the+pit+of+arrogance
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=arrogance+is+incompatible+with+nature+through+nature+the+nature+of+the+universe+and+the+nature+of+man++we+shall+seek+truth++if+we+seek+truth+we+shall+find+beauty
found 0 videos: []
error: no video is found.
sleep 1 seconds to avoid blocking
------<1552>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MosheSafdie_2014U.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=still+a+student+i+got+a+traveling+fellowship
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+study+housing+in+north+america+we+traveled+the+country++we+saw+public+housing
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+all+major+cities+new+york+philadelphia
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=those+who+have+no+choice+lived+there++and+then+we+traveled+from+suburb+to+suburb+and+i+came+back+thinking
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+ve+got+to+reinvent+the+apartment+building
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+has+to+be+another+way+of+doing+this+we+can+t+sustain+suburbs+so+let+s+design+a+building
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+qualities+of+a+house+to+each+unit+habitat
found 1 videos: [['/talks/moshe_safdie_how_to_reinvent_the_apartment_building', '2014']]
selected: /talks/moshe_safdie_how_to_reinvent_the_apartment_building
sleep 5 seconds to avoid blocking
------<1553>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MosheSzyf_2016X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+it+all+came+to+life
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+a+dark+bar+in+madrid
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+encountered+my+colleague+from+mcgill++michael+meaney+and+we+were+drinking+a+few+beers++and+like+scientists+do
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+told+me+about+his+work++and+he+told+me+that+he+is+interested
found 5 videos: [['/talks/roger_stein_a_bold_new_way_to_fund_drug_research', '2014'], ['/talks/adam_driver_my_journey_from_marine_to_actor', '2016'], ['/talks/ronald_sullivan_how_i_help_free_innocent_people_from_prison', '2017'], ['/talks/blaise_aguera_y_arcas_how_computers_are_learning_to_be_creative', '2016'], ['/talks/linus_torvalds_the_mind_behind_linux', '2016']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+how+mother+rats+lick+their+pups
found 2 videos: [['/talks/moshe_szyf_how_early_life_experience_is_written_into_dna', '2017'], ['/talks/paul_bloom_can_prejudice_ever_be_a_good_thing', '2014']]
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+was+sitting+there+and+saying+this+is+where+my+tax+dollars+are+wasted
found 4 videos: [['/talks/moshe_szyf_how_early_life_experience_is_written_into_dna', '2017'], ['/talks/alexander_wagner_what_really_motivates_people_to_be_honest_in_business', '2017'], ['/talks/ricardo_semler_how_to_run_a_company_with_almost_no_rules', '2015'], ['/talks/monica_lewinsky_the_price_of_shame', '2015']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+this+kind+of+soft+science
found 9 videos: [['/talks/moshe_szyf_how_early_life_experience_is_written_into_dna', '2017'], ['/talks/radhika_nagpal_what_intelligent_machines_can_learn_from_a_school_of_fish', '2017'], ['/talks/tiq_milan_and_kim_katrin_milan_a_queer_vision_of_love_and_marriage', '2016'], ['/talks/shih_chieh_huang_sculptures_that_d_be_at_home_in_the_deep_sea', '2014'], ['/talks/lorrie_faith_cranor_what_s_wrong_with_your_pa_w0rd', '2014'], ['/talks/levon_biss_mind_blowing_magnified_portraits_of_insects', '2017'], ['/talks/rajiv_maheswaran_the_math_behind_basketball_s_wildest_moves', '2015'], ['/talks/jim_yong_kim_doesn_t_everyone_deserve_a_chance_at_a_good_life', '2017'], ['/talks/paul_knoepfler_the_ethical_dilemma_of_designer_babies', '2017']]
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+rats+like+humans++lick+their+pups+in+very+different+ways++some+mothers+do+a+lot+of+that
found 2 videos: [['/talks/moshe_szyf_how_early_life_experience_is_written_into_dna', '2017'], ['/talks/paul_bloom_can_prejudice_ever_be_a_good_thing', '2014']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+mothers+do+very+little+and
found 18 videos: [['/talks/veerle_provoost_do_kids_think_of_sperm_donors_as_family', '2016'], ['/talks/jessica_shortall_the_us_needs_paid_family_leave_for_the_sake_of_its_future', '2015'], ['/talks/jennifer_senior_for_parents_happiness_is_a_very_high_bar', '2014'], ['/talks/mwende_freequency_katwiwa_black_life_at_the_intersection_of_birth_and_death', '2018'], ['/talks/sue_desmond_hellmann_a_smarter_more_precise_way_to_think_about_public_health', '2016'], ['/talks/moshe_szyf_how_early_life_experience_is_written_into_dna', '2017'], ['/talks/susan_etlinger_what_do_we_do_with_all_this_big_data', '2014'], ['/talks/eve_abrams_the_human_stories_behind_mass_incarceration', '2018'], ['/talks/shereen_el_feki_a_little_told_tale_of_sex_and_sensuality', '2014'], ['/talks/laura_schulz_the_surprisingly_logical_minds_of_babies', '2015'], ['/talks/helen_pearson_lessons_from_the_longest_study_on_human_development', '2017'], ['/talks/bill_gates_the_next_outbreak_we_re_not_ready', '2015'], ['/talks/tristram_wyatt_the_smelly_mystery_of_the_human_pheromone', '2014'], ['/talks/jose_miguel_sokoloff_how_christmas_lights_helped_guerrillas_put_down_their_guns', '2014'], ['/talks/mel_rosenberg_what_causes_cavities', '2016'], ['/talks/stewart_brand_and_chris_anderson_mammoths_resurrected_geoengineering_and_other_thoughts_from_a_futurist', '2018'], ['/talks/drew_philp_my_500_house_in_detroit_and_the_neighbors_who_helped_me_rebuild_it', '2018'], ['/talks/judith_heumann_our_fight_for_disability_rights_and_why_we_re_not_done_yet', '2018']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=most+are+in+between+but+what+s+interesting+about+it+is+when+he+follows+these+pups+when+they+become+adults
found 1 videos: [['/talks/gretchen_carlson_david_brooks_political_common_ground_in_a_polarized_united_states', '2017']]
selected: /talks/gretchen_carlson_david_brooks_political_common_ground_in_a_polarized_united_states
sleep 3 seconds to avoid blocking
------<1554>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/Mundano_2014U.stm
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+they+have+the+worst+of+all+superpowers+invisibility
found 2 videos: [['/talks/mundano_trash_cart_superheroes', '2014'], ['/talks/joy_lin_if_superpowers_were_real_super_speed', '2013']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+example+the+catadores+workers+who+collect+recyclable+materials+for+a+living
found 1 videos: [['/talks/mundano_trash_cart_superheroes', '2014']]
selected: /talks/mundano_trash_cart_superheroes
sleep 4 seconds to avoid blocking
------<1555>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MunirVirani_2012S.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+would+like+to+talk+to+you+about+a+very+special+group+of+animals++there+are+ten+thousand+species+of+birds
found 1 videos: [['/talks/jonathan_haidt_how_common_threats_can_make_common_political_ground', '2013']]
selected: /talks/jonathan_haidt_how_common_threats_can_make_common_political_ground
sleep 2 seconds to avoid blocking
------<1556>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MurrayGellMannLANGUAGE_2007.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+involved+in+other+things+besides+physics+in+fact+mostly+now+in+other+things+one+thing+is+distant+relationships+among+human+languages
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+professional+historical+linguists+in+the+us+and+in+western+europe+mostly
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=try+to+stay+away+from+any+long+distance+relationships
found 3 videos: [['/talks/murray_gell_mann_the_ancestor_of_language', '2008'], ['/talks/ernest_madu_world_class_health_care', '2008'], ['/talks/paola_antonelli_design_and_the_elastic_mind', '2008']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=big+groupings+groupings+that+go+back
found 2 videos: [['/talks/murray_gell_mann_the_ancestor_of_language', '2008'], ['/talks/eames_demetrios_the_design_genius_of_charles_ray_eames', '2009']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+long+time+longer+than+the+familiar+families
found 2 videos: [['/talks/jane_goodall_what_separates_us_from_chimpanzees', '2007'], ['/talks/murray_gell_mann_the_ancestor_of_language', '2008']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+don+t+like+that+they+think+it+s+crank+i+don+t+think+it+s+crank
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+there+are+some+brilliant+linguists+mostly+russians+who+are+working+on+that+at+santa+fe+institute+and+in+moscow
found 1 videos: [['/talks/murray_gell_mann_the_ancestor_of_language', '2008']]
selected: /talks/murray_gell_mann_the_ancestor_of_language
sleep 4 seconds to avoid blocking
------<1557>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MurrayGellMann_2007.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thank+you+for+putting+up+these+pictures+of+my+colleagues+over+here+we+ll
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=be+talking+about+them+now+i+m+going+try+an+experiment+i+don+t+do+experiments+normally+i+m+a+theorist+but+i+m+going+see+what+happens+if+i+press+this+button
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sure+enough++ok++i+used+to+work+in+this+field+of+elementary+particles+what+happens+to+matter+if+you+chop+it+up+very+fine
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+is+it+made+of+and+the+laws+of+these+particles
found 10 videos: [['/talks/marcus_du_sautoy_symmetry_reality_s_riddle', '2009'], ['/talks/murray_gell_mann_beauty_truth_and_physics', '2007'], ['/talks/brian_cox_cern_s_supercollider', '2008'], ['/talks/brian_greene_making_sense_of_string_theory', '2008'], ['/talks/martin_rees_is_this_our_final_century', '2007'], ['/talks/garrett_lisi_an_8_dimensional_model_of_the_universe', '2008'], ['/talks/bill_joy_what_i_m_worried_about_what_i_m_excited_about', '2008'], ['/talks/david_keith_a_critical_look_at_geoengineering_against_climate_change', '2007'], ['/talks/david_deutsch_chemical_scum_that_dream_of_distant_quasars', '2006'], ['/talks/michael_shermer_why_people_believe_weird_things', '2006']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+valid+throughout+the+universe++and+they+re+very+much+connected+with+the+history+of+the+universe++we+know+a+lot+about+four+forces+there+must+be+a+lot+more+but+those+are+at+very+very+small+distances+and+we+haven+t+really+interacted
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+main+thing+i+want+to+talk+about+is+this+that+we+have+this+remarkable+experience+in+this+field+of+fundamental+physics+that
found 1 videos: [['/talks/murray_gell_mann_beauty_truth_and_physics', '2007']]
selected: /talks/murray_gell_mann_beauty_truth_and_physics
sleep 4 seconds to avoid blocking
------<1558>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MurrayGellMann_Language_2007.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+involved+in+other+things+besides
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=physics+in+fact+mostly+now+in+other+things++one+thing+is+distant+relationships+among+human+languages++and+the+professional
found 1 videos: [['/talks/murray_gell_mann_the_ancestor_of_language', '2008']]
selected: /talks/murray_gell_mann_the_ancestor_of_language
sleep 3 seconds to avoid blocking
------<1559>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MustafaAkyol_2011X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+few+weeks+ago+i+had+a+chance+to+go+to+saudi+arabia
found 3 videos: [['/talks/mustafa_akyol_faith_versus_tradition_in_islam', '2011'], ['/talks/sheryl_wudunn_our_century_s_greatest_injustice', '2010'], ['/talks/amory_lovins_a_40_year_plan_for_energy', '2012']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+first+thing+i+wanted+to+do+as+a+muslim+was+to+go+to+mecca+and+visit+the+kaaba+the+holiest+shrine+of+islam
found 1 videos: [['/talks/mustafa_akyol_faith_versus_tradition_in_islam', '2011']]
selected: /talks/mustafa_akyol_faith_versus_tradition_in_islam
sleep 1 seconds to avoid blocking
------<1560>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MyriamSidibe_2014S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=imagine+that+a+plane+is+about+to+crash+with+two+hundred+and+fifty+children+and+babies+and+if+you+knew+how+to+stop+that+would+you
found 1 videos: [['/talks/myriam_sidibe_the_simple_power_of_hand_washing', '2014']]
selected: /talks/myriam_sidibe_the_simple_power_of_hand_washing
sleep 1 seconds to avoid blocking
------<1561>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/MyshkinIngawale_2012U.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=build+stuff+i+ve+always+liked+to+build+stuff+my+team+at+biosense+a+startup+i+co+founded+with+my+doctor+and+engineer+friends+has+built
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+can+do+blood+testing+of+hemoglobin+without+pricks+without+needles+i+believe+this+is+going+to+democratize+health+care
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+re+two+big+words+i+don+t+know+what+they+mean+laughter
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+fact+in+two+thousand+and+nine+i+was+even+more+clueless
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+had+absolutely+no+idea+what+was+going+to+happen+next+i+was+in+fact
found 13 videos: [['/talks/luke_syson_how_i_learned_to_stop_worrying_and_love_useless_art', '2014'], ['/talks/jeremy_gilley_one_day_of_peace', '2011'], ['/talks/bran_ferren_to_create_for_the_ages_let_s_combine_art_and_engineering', '2014'], ['/talks/lee_cronin_making_matter_come_alive', '2011'], ['/talks/adam_davidson_what_we_learned_from_teetering_on_the_fiscal_cliff', '2012'], ['/talks/caroline_casey_looking_past_limits', '2011'], ['/talks/jeremy_heimans_what_new_power_looks_like', '2014'], ['/talks/janine_shepherd_a_broken_body_isn_t_a_broken_person', '2012'], ['/talks/auret_van_heerden_making_global_labor_fair', '2010'], ['/talks/carl_safina_the_oil_spill_s_unseen_villains_and_victims', '2010'], ['/talks/tracy_chevalier_finding_the_story_inside_the_painting', '2012'], ['/talks/melinda_gates_let_s_put_birth_control_back_on_the_agenda', '2012'], ['/talks/michel_laberge_how_synchronized_hammer_strikes_could_generate_nuclear_fusion', '2014']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=busy+trying+to+finish+off+my+ph+d+which+was+in+a+completely+unrelated+area+of+how+people+interact
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=contributors+interact+how+articles+are+formed+in+wikipedia+trying+to+figure+out+how+quality+emerges+from+the+system
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=something+called+the+copenhagen+wheel+which+is+just+a+really+beautiful+beautiful+electric+bike+at+a+lab+at+mit+called+senseable+city+lab
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+lucky+enough+that+i+visited+mumbai+my+house+back+for+a+vacation
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+at+that+time+i+was
found 16 videos: [['/talks/daniel_goldstein_the_battle_between_your_present_and_future_self', '2011'], ['/talks/sheryl_sandberg_so_we_leaned_in_now_what', '2014'], ['/talks/ric_elias_3_things_i_learned_while_my_plane_crashed', '2011'], ['/talks/hasan_elahi_fbi_here_i_am', '2011'], ['/talks/carl_safina_the_oil_spill_s_unseen_villains_and_victims', '2010'], ['/talks/eric_dishman_health_care_should_be_a_team_sport', '2013'], ['/talks/rick_falkvinge_i_am_a_pirate', '2012'], ['/talks/amy_webb_how_i_hacked_online_dating', '2013'], ['/talks/peter_haas_when_bad_engineering_makes_a_natural_disaster_even_worse', '2010'], ['/talks/james_hansen_why_i_must_speak_out_about_climate_change', '2012'], ['/talks/markham_nolan_how_to_separate_fact_and_fiction_online', '2012'], ['/talks/ziauddin_yousafzai_my_daughter_malala', '2014'], ['/talks/adam_garone_healthier_men_one_moustache_at_a_time', '2012'], ['/talks/steven_addis_a_father_daughter_bond_one_photo_at_a_time', '2012'], ['/talks/rives_the_museum_of_four_in_the_morning', '2014'], ['/talks/maysoon_zayid_i_got_99_problems_palsy_is_just_one', '2014']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=planning+a+road+trip+i+visited+a+place+called+parol+about+two+hours+north+of+mumbai
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+a+place+where+my+friend+abhishek+sen
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+interning+he+s+a+doctor+there+and+that+s+his+actual+photograph+laughter
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+abhishek+actually+made+me+wait+he+was+out+there+in+parol+delivering+a+baby+i+was+waiting+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+he+did+emerge+he+was+ashen+faced+he+told+me+that+there+had+been+two+deaths+the+mother+and+child+both+had+died
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+reason+he+told+me+was+something+called+post+partum+hemorrhage
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+explained+this+meant+severe+internal+bleeding+what+was+really+shocking+for+me+was+that+he+said+that+this+is+entirely+due+to+undiagnosed+anemia
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+anemia+i+m+an+engineer+but+even
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+knew+that+anemia+is+something+which+is+not+supposed+to+be+fatal+it+is+something+which
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=probably+the+cure+is+known+i+mean+folic+acid+iron+tablets+very+cheap+affordable+cures+exist+to+control+anemia+so+why+was+this+woman+dying+it+was+completely+preventable
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+had+the+center+the+medical+center+which+was+distributing+subsidized+iron+tablets
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+whole+nature+of+this+thing+completely+shocked+me+and+i+knew+that+there+had+to+be+a+way+to+prevent+this
found 1 videos: [['/talks/steve_ramirez_and_xu_liu_a_mouse_a_laser_beam_a_manipulated_memory', '2013']]
selected: /talks/steve_ramirez_and_xu_liu_a_mouse_a_laser_beam_a_manipulated_memory
sleep 4 seconds to avoid blocking
------<1562>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NadiaAlSakkaf_2011G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=brought+us+images+from+the+yemen+times++and+take+us+through+those+and+introduce+us+to
found 1 videos: [['/talks/nadia_al_sakkaf_see_yemen_through_my_eyes', '2011']]
selected: /talks/nadia_al_sakkaf_see_yemen_through_my_eyes
sleep 1 seconds to avoid blocking
------<1563>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NadiaLopez_2015P.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=mott+hall+bridges+academy+in+two+thousand+and+ten+my+goal+was+simple
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=open+a+school+to+close+a+prison+now+to
found 5 videos: [['/talks/nadia_lopez_why_open_a_school_to_close_a_prison', '2016'], ['/talks/cristina_domenech_poetry_that_frees_the_soul', '2015'], ['/talks/kandice_sumner_how_america_s_public_schools_keep_kids_in_poverty', '2016'], ['/talks/dave_isay_everyone_around_you_has_a_story_the_world_needs_to_hear', '2015'], ['/talks/anand_giridharadas_a_letter_to_all_who_have_lost_in_this_era', '2016']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+was+an+audacious+goal+because+our+school+is+located+in+the+brownsville+section+of+brooklyn
found 1 videos: [['/talks/nadia_lopez_why_open_a_school_to_close_a_prison', '2016']]
selected: /talks/nadia_lopez_why_open_a_school_to_close_a_prison
sleep 4 seconds to avoid blocking
------<1564>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NadineBurkeHarris_2014P.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+cdc+and+kaiser+permanente+discovered+an+exposure+that+dramatically+increased+the+risk
found 1 videos: [['/talks/nadine_burke_harris_how_childhood_trauma_affects_health_across_a_lifetime', '2015']]
selected: /talks/nadine_burke_harris_how_childhood_trauma_affects_health_across_a_lifetime
sleep 5 seconds to avoid blocking
------<1565>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NaginCox_2016X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+many+of+you+have+probably+seen+the+movie+the+martian
found 13 videos: [['/talks/nagin_cox_what_time_is_it_on_mars', '2017'], ['/talks/lisa_nip_how_humans_could_evolve_to_survive_in_space', '2016'], ['/talks/kenneth_cukier_big_data_is_better_data', '2014'], ['/talks/simone_bianco_and_tom_zimmerman_the_wonderful_world_of_life_in_a_drop_of_water', '2018'], ['/talks/verna_myers_how_to_overcome_our_biases_walk_boldly_toward_them', '2014'], ['/talks/linda_liukas_a_delightful_way_to_teach_kids_about_computers', '2016'], ['/talks/jennifer_granick_how_the_us_government_spies_on_people_who_protest_including_you', '2017'], ['/talks/sal_khan_let_s_teach_for_mastery_not_test_scores', '2016'], ['/talks/stephen_petranek_your_kids_might_live_on_mars_here_s_how_they_ll_survive', '2016'], ['/talks/ted_halstead_a_climate_solution_where_all_sides_can_win', '2017'], ['/talks/priya_vulchi_and_winona_guo_what_it_takes_to_be_racially_literate', '2018'], ['/talks/zeynep_tufekci_online_social_change_easy_to_organize_hard_to_win', '2015'], ['/talks/sebastian_thrun_and_chris_anderson_what_ai_is_and_isn_t', '2017']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+for+those+of+you+who+did+not+it+s+a+movie+about+an+astronaut+who+is+stranded+on+mars++and+his+efforts+to+stay+alive+until+the+earth+can+send+a+rescue+mission+to+bring+him+back+to+earth
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=gladly+they+do+re+establish+communication
found 1 videos: [['/talks/nagin_cox_what_time_is_it_on_mars', '2017']]
selected: /talks/nagin_cox_what_time_is_it_on_mars
sleep 1 seconds to avoid blocking
------<1566>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NaifAlMutawa_2010G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thousand+and+ten+the+justice+league+of+america+will+be+teaming+up+with+the+ninety+nine
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=icons+like+batman+superman+wonder+woman+and+their+colleagues+will+be+teaming+up+with+icons
found 1 videos: [['/talks/naif_al_mutawa_superheroes_inspired_by_islam', '2010']]
selected: /talks/naif_al_mutawa_superheroes_inspired_by_islam
sleep 3 seconds to avoid blocking
------<1567>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NaliniNadkarni_2009.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=trees+are+wonderful+arenas+for+discovery+because+of+their+tall+stature+their+complex+structure
found 1 videos: [['/talks/nalini_nadkarni_conserving_the_canopy', '2009']]
selected: /talks/nalini_nadkarni_conserving_the_canopy
sleep 5 seconds to avoid blocking
------<1568>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NaliniNadkarni_2010U.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=trees+are+rooted+in+the+ground+in+one+place+for+many+human+generations
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+if+we+shift+our+perspective+from+the+trunk+to+the+twigs+trees+become+very+dynamic+entities+moving+and+growing++and+i+decided+to
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=explore+this+movement+by+turning+trees+into+artists
found 1 videos: [['/talks/nalini_nadkarni_life_science_in_prison', '2010']]
selected: /talks/nalini_nadkarni_life_science_in_prison
sleep 4 seconds to avoid blocking
------<1569>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NancyEtcoff_2004.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+feeling+the+pursuit+of+happiness+and+human+design+i+put+up+a+somewhat+dour+darwin+but+a+very+happy+chimp+up+there+my
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=first+point+is+that+the+pursuit+of+happiness+is+obligatory++man+wishes+to+be+happy+only+wishes+to+be+happy+and+cannot+wish+not+to+be+so+we+are
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=wired+to+pursue+happiness+not+only+to+enjoy+it+but+to+want+more+and+more+of+it+so+given+that+that+s+true+how+good+are+we+at
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=increasing+our+happiness++well+we+certainly+try
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+look+on+the+amazon+site+there+are+over+two+thousand+titles+with+advice+on+the+seven+habits++the+nine+choices+the+ten+secrets
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fourteen+thousand+thoughts+that+are+supposed+to+bring+happiness++now+another+way+we+try+to+increase+our+happiness+is+we+medicate+ourselves
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+there+s+over+one+hundred+and+twenty+million+prescriptions+out+there+for+antidepressants++prozac+was+really+the+first+absolute+blockbuster+drug+it+was+clean+efficient+there+was
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=no+high+there+was+really+no+danger+it+had+no+street+value+in+one+thousand+nine+hundred+and+ninety+five+illegal+drugs+were+a+$+four+hundred+billion+business+representing+eight+percent+of+world+trade+roughly+the+same+as+gas+and+oil
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=happiness+haven+t+really+increased+happiness+very+much+one+problem+that+s+happening+now+is+although+the+rates+of+happiness+are+about+as+flat+as+the+surface+of+the+moon
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=depression+and+anxiety+are+rising+some+people+say+this+is+because+we+have+better+diagnosis+and+more+people+are+being+found+out+it+isn+t+just+that+we+re+seeing+it+all+over+the+world
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=united+states+right+now+there+are+more+suicides+than+homicides
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+is+a+rash+of+suicide+in+china+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+world+health+organization+predicts+by+the+year+two+thousand+and+twenty+that+depression+will+be+the+second+largest+cause+of+disability++now+the+good+news+here+is+that+if+you+take+surveys
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=from+around+the+world+we+see+that+about+three+quarters+of+people+will+say+they+are+at+least+pretty+happy
found 1 videos: [['/talks/dan_gilbert_the_surprising_science_of_happiness', '2006']]
selected: /talks/dan_gilbert_the_surprising_science_of_happiness
sleep 4 seconds to avoid blocking
------<1570>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NancyFrates_2014X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+tell+you+from+the+bottom+of
found 14 videos: [['/talks/andrew_solomon_depression_the_secret_we_share', '2013'], ['/talks/carol_dweck_the_power_of_believing_that_you_can_improve', '2014'], ['/talks/tania_simoncelli_should_you_be_able_to_patent_a_human_gene', '2016'], ['/talks/danielle_feinberg_the_magic_ingredient_that_brings_pixar_movies_to_life', '2016'], ['/talks/julian_baggini_is_there_a_real_you', '2012'], ['/talks/bruce_feiler_agile_programming_for_your_family', '2013'], ['/talks/greg_asner_ecology_from_the_air', '2013'], ['/talks/chris_urmson_how_a_driverless_car_sees_the_road', '2015'], ['/talks/casey_gerald_the_gospel_of_doubt', '2016'], ['/talks/bernie_krause_the_voice_of_the_natural_world', '2013'], ['/talks/adam_savage_how_simple_ideas_lead_to_scientific_discoveries', '2012'], ['/talks/mark_plotkin_what_the_people_of_the_amazon_know_that_you_don_t', '2014'], ['/talks/mia_birdsong_the_story_we_tell_about_poverty_isn_t_true', '2015'], ['/talks/david_camarillo_why_helmets_don_t_prevent_concussions_and_what_might', '2016']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thank+you+so+very+very+much+do+you+know+to+date+the+als+association+has+raised+one+hundred+and
found 1 videos: [['/talks/elyn_saks_a_tale_of_mental_illness_from_the_inside', '2012']]
selected: /talks/elyn_saks_a_tale_of_mental_illness_from_the_inside
sleep 1 seconds to avoid blocking
------<1571>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NancyKanwisher_2014.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=tell+you+about+a+project+being+carried+out+by+scientists+all+over+the+world
found 4 videos: [['/talks/jennifer_kahn_gene_editing_can_now_change_an_entire_species_forever', '2016'], ['/talks/nancy_kanwisher_a_neural_portrait_of_the_human_mind', '2014'], ['/talks/miguel_nicolelis_a_monkey_that_controls_a_robot_with_its_thoughts_no_really', '2013'], ['/talks/lian_pin_koh_a_drone_s_eye_view_of_conservation', '2013']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+paint+a+neural+portrait+of+the+human+mind+and+the+central+idea+of+this+work+is+that+the+human+mind+and
found 1 videos: [['/talks/nancy_kanwisher_a_neural_portrait_of_the_human_mind', '2014']]
selected: /talks/nancy_kanwisher_a_neural_portrait_of_the_human_mind
sleep 1 seconds to avoid blocking
------<1572>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NancyLublin_2015W.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+girl+i+ve+never+met+before+changed+my+life+and+the+life+of+thousands+of+other+people+i+m+the+ceo+of
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+one+of+the+largest+organizations+in+the+world+for+young+people+in+fact+it+s+bigger+than+the+boy+scouts+in+the+united+states
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+s+true+the+way+we+communicate+with+young+people+is+by+text+because+that+s+how+young+people+communicate
found 2 videos: [['/talks/elon_musk_the_mind_behind_tesla_spacex_solarcity', '2013'], ['/talks/jonathan_haidt_can_a_divided_america_heal', '2016']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+we+ll+run+over+two+hundred+campaigns+this+year+things+like+collecting+peanut+butter+for+food+pantries
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+making+valentine+s+day+cards+for+senior+citizens+who+are+homebound+and+we+ll+text+them+and+we+ll+have+a
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ninety+seven+percent+open+rate+it+ll+over+index+hispanic+and+urban+we+collected+two+hundred+thousand+jars+of+peanut+butter+and+over+three
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hundred+and+sixty+five+thousand+valentine+s+day+cards+this+is+big+scale+ok
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+there+s+one+weird+side
found 5 videos: [['/talks/dustin_yellin_a_journey_through_the_mind_of_an_artist', '2015'], ['/talks/roger_stein_a_bold_new_way_to_fund_drug_research', '2014'], ['/talks/elon_musk_the_future_we_re_building_and_boring', '2017'], ['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013'], ['/talks/roman_mars_why_city_flags_may_be_the_worst_designed_thing_you_ve_never_noticed', '2015']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=every+time+we+send+out+a+text+message+we+get+back+a+few+dozen+text+messages+having+nothing+to+do+with+peanut+butter+or+hunger+or+senior+citizens
found 1 videos: [['/talks/nancy_lublin_how_data_from_a_crisis_text_line_is_saving_lives', '2015']]
selected: /talks/nancy_lublin_how_data_from_a_crisis_text_line_is_saving_lives
sleep 5 seconds to avoid blocking
------<1573>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NandanNilekani_2009.stm
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=through+the+evolution+of+ideas+now+i+believe+this+is+an+interesting+way+of+looking+at+it+because+in+every+society++especially+an+open+democratic+society++it+s+only+when+ideas
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=take+root+that+things+change+slowly+ideas+lead+to+ideology+lead+to+policies+that
found 1 videos: [['/talks/nandan_nilekani_ideas_for_india_s_future', '2009']]
selected: /talks/nandan_nilekani_ideas_for_india_s_future
sleep 3 seconds to avoid blocking
------<1574>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NaomiKlein_2010W.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+spent+a+week+at+sea+on+a+research+vessel+now+i+m+not+a+scientist+but+i+was+accompanying+a+remarkable+scientific+team+from+the+university+of+south+florida
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=travels+of+bp+s+oil+in+the+gulf+of+mexico+this+is+the+boat+we+were+on+by+the+way
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+scientists+i+was+with+were+not+studying+the+effect+of+the+oil+and+dispersants+on+the+big+stuff+the+birds+the+turtles+the+dolphins+the+glamorous+stuff+they+re+looking+at
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+really+little+stuff+that+gets+eaten+by+the+slightly+less+little+stuff+that+eventually+gets+eaten+by+the+big+stuff
found 1 videos: [['/talks/naomi_klein_addicted_to_risk', '2011']]
selected: /talks/naomi_klein_addicted_to_risk
sleep 1 seconds to avoid blocking
------<1575>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NaomiOreskes_2014S.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=every+day+we+face+issues+like+climate+change+or+the+safety+of+vaccines+where+we+have+to+answer+questions+whose+answers+rely+heavily+on+scientific+information
found 1 videos: [['/talks/naomi_oreskes_why_we_should_trust_scientists', '2014']]
selected: /talks/naomi_oreskes_why_we_should_trust_scientists
sleep 5 seconds to avoid blocking
------<1576>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NatalieJeremijenko_2009P.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+informed+by+this+kind+of+unoriginal+and+trite+idea+that+new+technologies+were+an+opportunity+for+social+transformation+which+is+what+drove+me+then
found 1 videos: [['/talks/natalie_jeremijenko_the_art_of_the_eco_mindshift', '2010']]
selected: /talks/natalie_jeremijenko_the_art_of_the_eco_mindshift
sleep 5 seconds to avoid blocking
------<1577>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NatalieMacMaster_2003.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+little+bit+of+music+here
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+really+excited+to+talk+a+bit+about
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+own+upbringing+in+music+and+family+and+all+of+that++but+i+m+even+more+excited
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+you+people+to+hear+about+donnell+s+amazing+family+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+maybe+even+a+little+bit+about+how+we+met+and+all+that+sort+of+thing++but
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+those+of+you+that+may
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+from+cape+breton+island++nova+scotia++eastern+canada++which+is+a+very+very+musical+island+and+its+origins
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=come+from+scotland+with+the+music+and+all+the+traditions+the+dancing+the+language++which+unfortunately+is+dying+out+in+cape+breton
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+traditional+language+is+gaelic+but+a+lot+of+the+music
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=came+from+the+gaelic+language+and+the+dancing+and+the+singing+and+everything+and+my
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+bloodline+is+scottish+through+and+through
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+my+mother+and+father+are+two+are+two+very+very+musical+people+my+mom+taught+me+to+dance+when+i+was
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+dad+taught+me+to+play+fiddle+when+i+was+nine
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+uncle+is+a+very+well+known+cape+breton+fiddler++his+name+s+buddy+macmaster++and+just+a+wonderful+guy++and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+have+a+great+tradition+at+home+called+square+dancing+and+we+had+parties+great+parties+at+our+house+and+the+neighbors++houses+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=first+of+all+is+gaelic+for+party+but
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=kitchen+party+in+cape+breton+is+very+common+and+basically+somebody+drops+into+the+house+and
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=no+matter+what+house+you+go+to+in+cape+breton+there+s+a+fiddle+there+guaranteed
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+d+say++well+there+s+first+of+all+more+fiddlers+per+capita+in+cape+breton+than+anywhere+in+the+world+so+ten+chances+to+one+the+fellow+who+walked+in+the+door+could+play+it
error: request timeout
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=come+into+the+house+you+d+invite+them+to+play+a+tune+and+lo+and+behold+a+little+party+would+start+up+and+somebody+would+dance+and+somebody+would+sing+and+all+that+sort+of+thing+so
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+a+wonderful+wonderful+way+to+grow+up+and+that+is+where+my+beginnings+in+music+come+from+my+surroundings+my+family+just+my+bloodline+in+itself
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+done+lots+of+things+with+my+music+i+ve+recorded+lots+of+cds+i+was
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+grammy+and+i+ve+won+some+awards+and+stuff+like+that+so+that+s
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=awesome++but+the+best+part+was+meeting+my+husband++and+i+ve+actually+known+donnell+for
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=probably+twelve+years+now++and
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+get+into+a+little+bit+of+i+guess+how+music+brought+us+together++but+i+m+going+to+introduce+you+right+now
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+my+new+husband+as+of+october+five
error: request timeout
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thank+you+i+m+kind+of+new+to+the+ted+experience+and+i+m+glad+to+be+here+but
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=m+just+trying+to+put+it+all+together+trying+to+figure+all+you+people+out+and+i
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ve+been+here+for+a+short+while+and+i+m+starting+to+understand+a+little+bit+better++so+i+asked+natalie+what+do+i+do+and+she+said+just+talk+about+yourself+it+s+kind+of+boring+but+i+ll+just+tell+you+a+little+bit+about
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+my+family++i+m+one+of+eleven+brothers+and+sisters+from+lakefield+ontario
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=an+hour+and+a+half+northeast+of+toronto+and+we+grew+up+on+a+farm+mom+and+dad
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+the+oldest+boy+there+are+four+girls+a+little+bit+older+than+me++we+grew+up+without+a+television+people+find+that+strange++but
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+it+was+a+great+blessing+for+us++we+had+a+television+television+for+a+few+years+but
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+course+we+wasted+so+much+time+and+the+work+wasn+t+getting+done
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+out+went+the+television++we+grew+up+playing+mom+s+from+cape+breton
error: request timeout
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+natalie+s+mother+knew+each+other++we+grew+up+playing+and+used+to+dance+together+right+yeah+we+grew+up+playing
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+bunch+of+we+played+by+ear+and+i+think+that+s+that+s+important+for+us+because+we+were+not+really+exposed+to+a+lot+of+different+styles+of+music
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+learned+to+play+the+instruments+but+we+kind+of+had+to+to
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=come+from+within+or+go+from+within++because+we+didn+t+watch
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=television+we+didn+t+listen+to+a+lot+of+radio+we+went+to+church+and+to+school+sometimes+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=farmed+and+played+music+so+we+were+able+i+think+at+a+very+critical+age+to+develop
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=our+own+style+our+own+self++and+my+mother+plays+my+father+plays++and+the+style
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=originated+in+logging+camps+years+ago
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hundreds+of+men+would+go+up+for+the+winter+to+the+to+the+camps+in+northern+ontario+and+in+quebec++and+they+were+all+different
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+irish+the+french+scottish+german+they+d+all+meet+and+of+course+at+night+they+d+play+cards+and+step+dance+and+play
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+over+the+course+of+many+years+the+ottawa+valley+fiddling+kind+of+evolved+and+the+ottawa+valley+step
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=valley+step+dancing+evolved++so+that+s+i+kind+of+started+out+with+that+style+and+i+quickly
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=started+doing+my+own+thing++and+then+i+met+natalie++and+i+was+exposed+to+the+great+cape+breton+fiddling+that+s+how+we+met
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+just+so+interesting+that+donnell+s+upbringing+was+very+similar+to+mine++and
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+actually+saw+donnell+play+when+i+was+about+twelve+years+old++and+he+and+his+family+came+to
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=minutes+from+where+i+lived++and
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+just+blown+away+like+it+was+just+amazing+and+you+ll+find+out+why+pretty+soon+here+but+i+couldn+t+believe+the+fiddling
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+mom+was+there+with+me+and+she+was+saying
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=donnell+s+mother+came+up+on+stage+and+danced+with+her+children+and+mom+was+saying+that+s+julie+macdonnell
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+used+to+dance+with+her+when+we+were+kids+little+did+i+think+our+children+would+be+playing+instruments
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=music++yeah+twelve+years+er+twenty+years+later+little+did+she+think+her+kids+would+be+getting+married++but+anyway
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+then+i+got+a+phone+call+about+i+dunno
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=seven+years+later++i+was+nineteen+first+or+second+year+of+college++and+it+was+donnell+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+probably+don+t+know+me+but+my+name+is+donnell+leahy+and+i+said+i+know+you+i+have+a+tape+of+yours+at+home+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+said+well+i+m+in+truro+which+is+where+i+was++and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+asked+me+out+for+supper
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=play+a+piece+of+music+for+you++it+s+actually+a+scottish+piece+i+ve+chosen+i+starts+out+with+a+slow+air+airs+were+played+in+in+europe
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=burials+as+a+body+was+carried+out+from+the+wake+site+to+the
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=site+the+procession+was+led+by+a+piper+or+a+fiddle+player+i+ll+quickly+play+a
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=part+of+the+the+air+and+then+i+m+going+to+get+into+kind+of+a+crazy+tune+that+is+very+difficult+to+play+when+you+re+not+warmed+up+so
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+i+mess+it+up+pretend+you+like+it+anyway+it+s+called+the+banks
error: request timeout
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know+donnell+and+i+are+actually+in+the+process+of+writing+new+pieces+of+music+together+that+we+can+play+but+we+don+t+have+any+of+those+ready+we+just+started+yesterday
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+we+re+gonna+play+something+together+anyway
error: request timeout
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+tune+and+natalie+s+going+to+accompany+me+on+the+piano+the+cape+breton+piano+playing+is+is+just+awesome++it+s+very+rhythmic+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+ll+see+it+my+mom+plays+piano+and+she+learned+to+play+before+they+they+had+a+piano+at+home
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+cape+breton++before+mom+s+family+had+a+piano+in+cape+breton+she+learned+to+play
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+rhythms+on+on+a+piece+of+board+and+the+fiddlers+would+all+congregate+to+play+on+the+cold+winter+s+evenings+and+mom+would+be+banging+on+this+board+so+when
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=bought+a+piano+they+bought+it+in+toronto+and+had+it
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=taken+by+train+and+brought+in+on+a+horse+a
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=horse+and+sleigh+to+the+house+it+became+the+only+piano+in+the+region+and+mom+said+she+could+basically+play+as+soon+as+the+piano+arrived
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=she+could+play+it+because+she+had+learned+all+these+rhythms+anyway++we+found+the+piano+last+year+and+were+able+to
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=bring+it+back+home+we+purchased+it+it+had+gone+through+like+five+or+six+families+and
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+just+a+big+thing+for+us++and+we+found+actually+an+old+picture
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+had+a+great+opportunity+we+opened+for+shania+twain+for+two+years+on+her+international
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=tour+it+was+a+big+thing+for+us+and+now+all+my+sisters+are+off+having+babies+and+the+boys+are+all+getting+married+so+we+re
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=staying+close+to+home+for+for+i+guess+another+couple+of+weeks++what+can+i+say+i
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=family+we+had+seven+girls+four+boys+we+had+two+fiddles+and+one+piano+and+of+course+we+were+all+fighting
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+the+instruments++so+dad+and+mom+set+a+rule+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+couldn+t+kick+anyone+off+the+instrument
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+had+to+wait+until+they+were+finished+so+of+course+what+we+would+do+is+we+d+get+on+the+piano+and+you+wouldn+t+even+get+off+to+eat+because+you+you+wouldn+t+want+to+give+it+up+to+your
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+your+brother+or+sister+and+they+d+wait+and+wait+and+wait+and+it+d+be+midnight+and+you+d+be+still+sitting+there+on+the+piano+but+it+was+their+their+way+to+get+us+to+practice+will+we+play+a+tune
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+this+is+our+last+number+and+we+ll+feature+nat+on+piano
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
error: no video is found.
sleep 2 seconds to avoid blocking
------<1578>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NatalieMerchant_2010.stm
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+been+working+on+a+project+for+the+last+six+years+adapting+children+s+poetry+to+music++and+that+s+a+poem+by+charles+edward+carryl++who+was+a+stockbroker+in+new+york+city
error: request timeout
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+in+the+evenings+he+wrote+nonsense+for+his+children+and+this+book+was+one+of+the+most+famous+books+in+america+for+about+thirty+five+years
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+sleepy+giant+which+is+the+song+that+i+just+sang+is+one+of+his+poems
found 1 videos: [['/talks/natalie_merchant_singing_old_poems_to_life', '2010']]
selected: /talks/natalie_merchant_singing_old_poems_to_life
sleep 3 seconds to avoid blocking
------<1579>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NataliePanek_2015X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=our+lives+depend+on+a+world+we+can+t+see
found 3 videos: [['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013'], ['/talks/ash_beckham_when_to_take_a_stand_and_when_to_let_it_go', '2015'], ['/talks/keren_elazari_hackers_the_internet_s_immune_system', '2014']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=think+about+your+week+so+far+have+you+watched+tv++used+gps++checked+the+weather+or+even+ate+a+meal
found 1 videos: [['/talks/natalie_panek_let_s_clean_up_the_space_junk_orbiting_earth', '2016']]
selected: /talks/natalie_panek_let_s_clean_up_the_space_junk_orbiting_earth
sleep 5 seconds to avoid blocking
------<1580>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NatashaHurleyWalker_2016X.stm
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+first+heard+these+words+when+i+was+just+six+years+old++and+i+was+completely+inspired
found 9 videos: [['/talks/sharon_brous_it_s_time_to_reclaim_religion', '2016'], ['/talks/natasha_hurley_walker_how_radio_telescopes_show_us_unseen_galaxies', '2017'], ['/talks/christian_picciolini_my_descent_into_america_s_neo_nazi_movement_and_how_i_got_out', '2018'], ['/talks/the_ted_interview_sir_ken_robinson_still_wants_an_education_revolution', '2018'], ['/talks/nancy_frates_meet_the_mom_who_started_the_ice_bucket_challenge', '2014'], ['/talks/gretchen_carlson_david_brooks_political_common_ground_in_a_polarized_united_states', '2017'], ['/talks/julia_bacha_how_women_wage_conflict_without_violence', '2016'], ['/talks/kevin_briggs_the_bridge_between_suicide_and_life', '2014'], ['/talks/chris_hadfield_what_i_learned_from_going_blind_in_space', '2014']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+wanted+to+explore+strange+new+worlds+i+wanted+to+seek+out+new+life+i+wanted+to+see+everything+that+the+universe+had
found 2 videos: [['/talks/natasha_hurley_walker_how_radio_telescopes_show_us_unseen_galaxies', '2017'], ['/talks/gabriela_gonzalez_how_ligo_discovered_gravitational_waves_and_what_might_be_next', '2017']]
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+those+dreams+those+words+they+took+me+on+a+journey+a+journey+of+discovery
found 4 videos: [['/talks/natasha_hurley_walker_how_radio_telescopes_show_us_unseen_galaxies', '2017'], ['/talks/mara_mintzer_how_kids_can_help_design_cities', '2018'], ['/talks/amy_green_a_video_game_to_cope_with_grief', '2017'], ['/talks/mike_kinney_a_pro_wrestler_s_guide_to_confidence', '2017']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=through+school+through+university+to+do+a+phd+and+finally+to+become+a+professional+astronomer
found 1 videos: [['/talks/natasha_hurley_walker_how_radio_telescopes_show_us_unseen_galaxies', '2017']]
selected: /talks/natasha_hurley_walker_how_radio_telescopes_show_us_unseen_galaxies
sleep 1 seconds to avoid blocking
------<1581>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NatashaTsakos_2009.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=love+theater+i+love+the+idea+that+you+can+transform+become+somebody+else+and+look+at+life+with+a+completely+new+perspective
found 1 videos: [['/talks/natasha_tsakos_a_multimedia_theatrical_adventure', '2009']]
selected: /talks/natasha_tsakos_a_multimedia_theatrical_adventure
sleep 4 seconds to avoid blocking
------<1582>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NateSilver_2009.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+the+first+time+in+the+united+states+a+predominantly+white+group+of+voters+voted+for+an
found 1 videos: [['/talks/nate_silver_does_racism_affect_how_you_vote', '2009']]
selected: /talks/nate_silver_does_racism_affect_how_you_vote
sleep 5 seconds to avoid blocking
------<1583>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NateSilver_2009A.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+election+for+the+first+time+in+the+united+states+a+predominantly+white
found 1 videos: [['/talks/nate_silver_does_racism_affect_how_you_vote', '2009']]
selected: /talks/nate_silver_does_racism_affect_how_you_vote
sleep 2 seconds to avoid blocking
------<1584>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NathalieCabrol_2015.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sometimes+the+most+important+things+come+in+the+smallest+packages+i+am+going+to+try+to+convince+you+in+the+fifteen+minutes+i+have
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+microbes+have+a+lot+to+say+about
found 11 videos: [['/talks/rob_knight_how_our_microbes_make_us_who_we_are', '2015'], ['/talks/nathalie_cabrol_how_mars_might_hold_the_secret_to_the_origin_of_life', '2015'], ['/talks/lisa_nip_how_humans_could_evolve_to_survive_in_space', '2016'], ['/talks/giulia_enders_the_surprisingly_charming_science_of_your_gut', '2017'], ['/talks/emma_marris_nature_is_everywhere_we_just_need_to_learn_to_see_it', '2016'], ['/talks/david_chalmers_how_do_you_explain_consciousness', '2014'], ['/talks/ellen_jorgensen_biohacking_you_can_do_it_too', '2013'], ['/talks/david_sedlak_4_ways_we_can_avoid_a_catastrophic_drought', '2016'], ['/talks/mike_velings_the_case_for_fish_farming', '2016'], ['/talks/jessica_green_and_karen_guillemin_you_are_your_microbes', '2013'], ['/talks/jessica_green_we_re_covered_in_germs_let_s_design_for_that', '2013']]
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+can+tell+us+more+about+not+only+life+in+our+solar+system+but+also+maybe+beyond+and+this+is+why+i+am+tracking+them+down+in+the+most+impossible+places
found 1 videos: [['/talks/nathalie_cabrol_how_mars_might_hold_the_secret_to_the_origin_of_life', '2015']]
selected: /talks/nathalie_cabrol_how_mars_might_hold_the_secret_to_the_origin_of_life
sleep 5 seconds to avoid blocking
------<1585>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NathalieMiebach_2011G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+you+just+heard+are+the+interactions+of+barometric+pressure+wind+and+temperature+readings+that+were+recorded+of+hurricane+noel+in+two+thousand+and+seven
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+musicians+played+off+a+three+dimensional+graph+of+weather+data+like+this+every+single+bead+every+single+colored+band+represents+a+weather+element+that+can+also+be+read+as+a+musical
error: request timeout
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+find+weather+extremely+fascinating+weather+is+an+amalgam+of+systems+that+is+inherently+invisible+to+most+of+us++so+i+use+sculpture+and+music+to+make+it+not+just+visible+but+also+tactile+and+audible
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+of+my+work+begins+very+simple+i+extract+information+from+a+specific+environment+using+very+low+tech
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=data+collecting+devices+generally+anything+i+can+find+in+the+hardware+store++i+then+compare+my+information
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+the+things+i+find+on+the+internet+satellite+images+weather+data+from+weather+stations+as+well+as+offshore+buoys+that+s+both+historical+as+well+as+real+data+and+then+i+compile+all+of+these
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=numbers+on+these+clipboards+that+you+see+here+these+clipboards+are+filled+with+numbers+and+from+all+of+these+numbers+i+start+with+only+two+or+three+variables+that+begins+my+translation+process
found 1 videos: [['/talks/nathalie_miebach_art_made_of_storms', '2011']]
selected: /talks/nathalie_miebach_art_made_of_storms
sleep 5 seconds to avoid blocking
------<1586>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NathanielKahn_2002.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=say+about+film+making+is+about+this+film+in+thinking+about
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+of+the+wonderful+talks+we+ve+heard+here+michael+moschen+and+some+of+the+talks+about+music
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+idea+that+there+is+a+narrative+line++and+that+music+exists+in+time+a+film+also+exists+in+time+it+s+an+experience
error: request timeout
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+in+making+this+film+i+felt+that+so+many+of+the+documentaries+i+ve+seen+were+all+about
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=learning+something+or+knowledge+or+driven+by+talking+heads+and+driven+by+ideas++and+i+wanted+this+film+to+be+driven+by+emotions+and+really+to+follow+my+journey
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+instead+of+doing+the+talking+head+thing+instead+it+s+composed+of+scenes
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+meet+people+along+the+way+we+only+meet+them+once+they+don+t+come+back+several
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=times+so+it+really+chronicles+a+journey++it+s+something+like+life+that+once+you+get+in+it+you+can+t+get+out+there
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+two+clips+i+want+to+show+you+the+first+one+is
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+kind+of+hodgepodge+its+just+three+little+moments+four+little+moments+with+three+of+the+people+who+are+here+tonight++it+s+not+the+way+they+occur+in+the+film+because+they+are+part+of+much
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+play+off+each+other+in+a+wonderful+way++and+that+ends+with+a+little+clip+of+my+father+of+lou
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=talking+about+something+that+is+very+dear+to+him+which+is+the+accidents+of+life++i+think+he+felt+that+the+greatest+things+in+life+were+accidental
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+perhaps+not+planned+at+all
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+those+three+clips+will+be+followed+by+a+scene+of
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=perhaps+what+to+me+is+really+his+greatest+building+which+is+a+building+in+dhaka+bangladesh++he+built+the
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+think+you+ll+enjoy+this+building+it+s+never+been+seen
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+been+still+photographed+but+never+photographed+by+a+film+crew+we+were+the+first+film+crew+in+there
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+you+ll+see+images+of+this+remarkable+building
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+couple+of+things+to+keep+in+mind+when+you+see+it
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+built+entirely+by+hand+i+think+they+got+a+crane+the+last+year++it+was+built+entirely+by+hand+off+bamboo
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+carrying+these+baskets+of+concrete+on+their+heads++dumping+them+in+the+forms++it+is+the+capital+of+the+country+and+it+took++twenty+three+years+to+build
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+is+something+they+seem+seem+to+be+very+proud+of+over+there+it+took+as+long+as+the+taj+mahal++unfortunately+it+took+so+long+that+lou+never+saw+it+finished
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+when+when+you+see+that+building+that+sometimes+the+things+we+strive+for+so+hard+in+life+we+never+get+to+see+finished
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+really+struck+me+about+about+my+father+in+the+sense+that+he+had+such+belief
error: request timeout
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=doing+these+things+giving+in+the+way+that+he+gave+that+something+good+would+come+out+of+it+even+in+the+middle+of+a+war+there+was+a+war+with+pakistan+at+one+point+and+the+construction+stopped+totally+and+he+kept+working
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+he+felt+well+when+the+war+is+done
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+those+are+the+two+clips+i+m+going+to+show
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=roll+that+tape+richard+saul+wurman
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hearing+him+talk+at+penn++and+i+came+home+and+i+said+to+my+father
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+he+s+sort+of+ugly+funny+voice
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+he+s+a+teacher+at+school+i+know+you+ve+never+heard+of+him
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+just+mark+this+day+that+someday+you+will+hear+of+him++because+he+s+really+an+amazing+man
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+he+was+in+rome+moshe+safdie
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+was+a+real+nomad+and+you+know+when+i+knew+him+when+i+was+in+the+office+he+would+come+in+from+a+trip+and+he+would+be+in+the+office+for+two+or+three+days+intensely+and+he+would+pack+up+and+go
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know+he+d+be+in+the+office+till+three+in+the+morning+working+with+us+and+there+was+this+kind+of+sense+of+the+nomad+in+him+i+mean
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+tragic+as+his+death+was+in+a+railway+station++it+was+so
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=consistent+with+his+life+you+know+i+mean+i+often+think+i+m+going+to+die+in+a+plane+or+i+m+going+to+die+in+an+airport+or
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=die+jogging+without+an+identification+on+me+i+don+t+know+why+i+sort+of+carry+that+from+that+memory+of+the+way+he+died+but
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+he+was+a+sort+of+a+nomad+at+heart
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=our+existences+are+really+and+how+full+of+influence+by+circumstance
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+come+all+the+time+here+and+enjoy+the+walking+city+s+beauty+and+the+atmosphere
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+is+the+nicest+place+of+bangladesh
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+actually+i+m+here+because+i+m+the+architect+s+son
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+ours+in+thirty+fifty+years+back++it+was+nothing++only+paddy+fields
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+since+we+invited+him+here++he+felt+that+he+has+got+a+responsibility
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+wanted+to+be+a+moses+here++he+gave+us+democracy
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+is+not+a+political+man++but+in+this+guise+he+has+given+us+the+institution+for+democracy++from+where+we+can
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+didn+t+care+for+how+much+money+this+country+has+or+whether+he+would+be+able+to
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ever+finish+this+building++but+somehow+he+has+been+able+to+do+it+build+it+here+and+this+is+the+largest+project+he+has+got+in+here+the+poorest+country+in+the+world+nk
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+cost+him+his+life+sw
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+paid++he+paid+his+life+for+this+and+that+is+why+he+is+great
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+he+was+also+human++now+his+failure
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+family+life+is+an+inevitable+association+of+great+people+but+i+think+his+son+will+understand+this+and+will+have+no+sense+of
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=grudge++or+sense+of+being+neglected+i
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=think+he+cared+in+a+very+different+manner+but+it+takes+a+lot+of+time+to+understand+that+in+social
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=aspect+of+his+life+he+was+just+like+a+child+he+was+not+at+all+matured
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+could+not+say+no+to+anything++and+that+is+why+that+he+cannot+say+no+to+things+we+got+this+building+today
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+see+only+that+way+you+can+be+able+to+understand+him
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+is+no+other+shortcut++no+other+way+to+really+understand+him+but+i+think
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+has+given+us+this+building
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+feel+all+the+time+for+him+that+s+why+he+has+given+love+for+us
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+could+not+probably+give+the+right+kind+of+love+for+you+but+for+us+he+has+given+the+people+the+right+kind+of+love+that+is+important+you
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+to+understand+that+he+had+an+enormous+amount+of+love++he+loved+everybody+to+love
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+sometimes+did+not+see+the+very+closest+ones+and+that+is+inevitable+for+men+of+his+stature
found 0 videos: []
error: no video is found.
sleep 4 seconds to avoid blocking
------<1587>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NathanMyhrvold_2007.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+atacama+desert++sitting+in+a+hotel+lobby+because+that+s+the+only+place+that+i+can+get+a+wi+fi+connection++and+i+have+this+picture+up+on+my+screen+and+a+woman+comes+up+behind+me
found 1 videos: [['/talks/nathan_myhrvold_archeology_animal_photography_bbq', '2008']]
selected: /talks/nathan_myhrvold_archeology_animal_photography_bbq
sleep 3 seconds to avoid blocking
------<1588>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NathanMyhrvold_2010.stm
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+kinds+of+new+technology+in+lots+of+different+areas+and+we+do+that+for+a+couple+of+reasons+we+invent+for+fun
found 2 videos: [['/talks/nathan_myhrvold_could_this_laser_zap_malaria', '2010'], ['/talks/frank_gehry_my_days_as_a_young_rebel', '2008']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=invention+is+a+lot+of+fun+to+do+and+we+also+invent+for+profit
found 1 videos: [['/talks/nathan_myhrvold_could_this_laser_zap_malaria', '2010']]
selected: /talks/nathan_myhrvold_could_this_laser_zap_malaria
sleep 1 seconds to avoid blocking
------<1589>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NathanMyhrvold_2011U.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+been+interested+in+food+for+a+long+time+i+taught+myself+to+cook+with+a+bunch+of+big+books+like+this+i+went+to+chef+school+in+france+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+world+writes+about+food+and+learns+about+food
found 12 videos: [['/talks/nathan_myhrvold_cooking_as_never_seen_before', '2011'], ['/talks/stephen_ritz_a_teacher_growing_green_in_the_south_bronx', '2012'], ['/talks/julie_burstein_4_lessons_in_creativity', '2012'], ['/talks/lemon_andersen_please_don_t_take_my_air_jordans', '2012'], ['/talks/dee_boersma_pay_attention_to_penguins', '2010'], ['/talks/a_j_jacobs_how_healthy_living_nearly_killed_me', '2012'], ['/talks/annie_murphy_paul_what_we_learn_before_we_re_born', '2011'], ['/talks/rachel_botsman_the_case_for_collaborative_consumption', '2010'], ['/talks/jeff_smith_lessons_in_business_from_prison', '2012'], ['/talks/massimo_banzi_how_arduino_is_open_sourcing_imagination', '2012'], ['/talks/shukla_bose_teaching_one_child_at_a_time', '2010'], ['/talks/janine_di_giovanni_what_i_saw_in_the_war', '2013']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+s+largely+what+you+would+find+in+these+books
found 1 videos: [['/talks/simon_lewis_don_t_take_consciousness_for_granted', '2011']]
selected: /talks/simon_lewis_don_t_take_consciousness_for_granted
sleep 3 seconds to avoid blocking
------<1590>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NathanWolfe_2009.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+most+people+think+about+the+beginnings+of+aids+they+re+gonna+think+back+to+the+1980s
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+certainly+this+was+the+decade+in+which+we+discovered+aids+and+the+virus+that+causes+it+hiv
found 1 videos: [['/talks/nathan_wolfe_the_jungle_search_for_viruses', '2009']]
selected: /talks/nathan_wolfe_the_jungle_search_for_viruses
sleep 3 seconds to avoid blocking
------<1591>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NathanWolfe_2012U.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=recently+i+visited+beloit+wisconsin++and+i+was+there+to+honor+a+great+20th+century+explorer++roy+chapman+andrews++during+his+time+at+the+american+museum+of+natural+history
found 1 videos: [['/talks/nathan_wolfe_what_s_left_to_explore', '2012']]
selected: /talks/nathan_wolfe_what_s_left_to_explore
sleep 4 seconds to avoid blocking
------<1592>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NaviRadjou_2014G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+you+grow+up+in+a+developing+country+like+india++as+i+did+you+instantly+learn+to+get+more+value+from+limited+resources
found 1 videos: [['/talks/navi_radjou_creative_problem_solving_in_the_face_of_extreme_limits', '2015']]
selected: /talks/navi_radjou_creative_problem_solving_in_the_face_of_extreme_limits
sleep 2 seconds to avoid blocking
------<1593>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NeginFarsad_2016U.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=muslim+female+like+all+of+you+and+i+m+also+a+social+justice+comedian+something+that+i+insist+is+an+actual+job+to+explain+what
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+me+tell+you+how+i+got+here+i+ve+performed+all+over+the+country+and+let+me+tell+you+america+is+majestic+right++it+s+got+breathtaking+nature+waffle+houses+and+diabetes+as+far+as+the+eye+can+see+it+is+really+something
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+the+american+population+can+be+broken+up+into+three+main+categories+there+s+mostly+wonderful+people+haters+and+florida
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=besides+florida+the+most+troubling+category+here+are+the+haters+they+are+a+minority
found 1 videos: [['/talks/negin_farsad_a_highly_scientific_taxonomy_of_haters', '2016']]
selected: /talks/negin_farsad_a_highly_scientific_taxonomy_of_haters
sleep 4 seconds to avoid blocking
------<1594>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NehaNarula_2016S.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+tell+you+about+the+future+of+money++let+s+start+with+a+story+about+this+culture+that+lived+in+micronesia+in+the+early
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=called+the+yap+now+i+want+to+tell+you+about+the+yap
found 7 videos: [['/talks/neha_narula_the_future_of_money', '2016'], ['/talks/alan_eustace_i_leapt_from_the_stratosphere_here_s_how_i_did_it', '2015'], ['/talks/nancy_rabalais_the_dead_zone_of_the_gulf_of_mexico', '2018'], ['/talks/mark_ronson_how_sampling_transformed_music', '2014'], ['/talks/leticia_gasca_don_t_fail_fast_fail_mindfully', '2018'], ['/talks/sandi_toksvig_a_political_party_for_women_s_equality', '2016'], ['/talks/david_eagleman_can_we_create_new_senses_for_humans', '2015']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=their+form+of+money+is+really+interesting+they+use+these+limestone+discs+called+rai+stones++now+the+yap+don+t+actually+move+these+rai+stones+around+or+exchange
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=them+the+way+we+do+with+our+coins+because+rai+stones+can+get+to+be+pretty+massive
found 1 videos: [['/talks/neha_narula_the_future_of_money', '2016']]
selected: /talks/neha_narula_the_future_of_money
sleep 1 seconds to avoid blocking
------<1595>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NeilBurgess_2011S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+we+park+in+a+big
found 13 videos: [['/talks/george_monbiot_for_more_wonder_rewild_the_world', '2013'], ['/talks/gary_greenberg_the_beautiful_nano_details_of_our_world', '2012'], ['/talks/denis_dutton_a_darwinian_theory_of_beauty', '2010'], ['/talks/james_cameron_before_avatar_a_curious_boy', '2010'], ['/talks/ellen_dunham_jones_retrofitting_suburbia', '2010'], ['/talks/eduardo_paes_the_4_commandments_of_cities', '2012'], ['/talks/mohamed_ali_the_link_between_unemployment_and_terrorism', '2013'], ['/talks/chris_anderson_how_many_universes_are_there', '2012'], ['/talks/aris_venetikidis_making_sense_of_maps', '2012'], ['/talks/kent_larson_brilliant_designs_to_fit_more_people_in_every_city', '2012'], ['/talks/greg_asner_ecology_from_the_air', '2013'], ['/talks/david_mackay_a_reality_check_on_renewables', '2012'], ['/talks/joshua_prager_in_search_of_the_man_who_broke_my_neck', '2013']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=parking+lot+how+do+we+remember+where+we+parked+our+car+here+s+the+problem+facing+homer
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+re+going+to+try+to+understand+what+s+happening+in+his+brain++so+we+ll+start+with+the+hippocampus+shown
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+is+the+organ+of+memory+if+you+have+damage+there+like+in+alzheimer+s+you+can+t+remember+things+including+where+you+parked+your+car+it+s+named+after+latin+for+seahorse+which+it+resembles+and+like+the+rest+of+the+brain
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+made+of+neurons+so+the+human+brain+has+about+a+hundred+billion+neurons+in+it
found 1 videos: [['/talks/danny_hillis_back_to_the_future_of_1994', '2012']]
selected: /talks/danny_hillis_back_to_the_future_of_1994
sleep 5 seconds to avoid blocking
------<1596>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NeilGershenfeld_2006.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+meeting+has+really+been+about+a+digital+revolution+but+i+d+like+to+argue
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+it+s+done+we+won
found 5 videos: [['/talks/david_pogue_simplicity_sells', '2006'], ['/talks/bill_strickland_rebuilding_a_neighborhood_with_beauty_dignity_hope', '2008'], ['/talks/nathan_myhrvold_archeology_animal_photography_bbq', '2008'], ['/talks/nicholas_negroponte_one_laptop_per_child_two_years_on', '2008'], ['/talks/reed_kroloff_a_tour_of_modern_architecture', '2008']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+ve+had+a+digital+revolution+but+we+don+t+need+to+keep+having+it+and+i+d+like+to+look+after+that+to+look+what+comes+after+the+digital+revolution
error: request timeout
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=projecting+forward+these+are+some+projects+i+m+involved+in+today+at+mit++looking+what+comes+after+computers++this+first+one
error: request timeout
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+a+web+server+that+has+the+cost+and+complexity+of+an+rfid+tag+about+a+dollar+that+can+go+in+every+light+bulb+and+doorknob++and+this+is+getting+commercialized
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+what+s+interesting+about+it+isn+t+the+cost+it+s+the+way+it+encodes+the+internet+it+uses+a+kind+of+a+morse+code+for+the+internet+so+you+could+send+it+optically+you+can+communicate+acoustically+through+a+power+line
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=through+rf+it+takes+the+original+principle+of+the+internet+which+is+inter+networking+computers+and+now+lets+devices+inter+network+that+we+can+take+the+whole+idea+that+gave+birth+to+the+internet+and+bring+it+down+to+the+physical+world+in+this+internet
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+internet+of+devices++so+this+is+the+next+step+from+there+to+here+and+this+is+getting+commercialized+today++a+step+after+that+is
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+project+on+fungible+computers+fungible+goods+in+economics+can+be+extended+and+traded+so++half+as+much+grain+is+half+as+much+useful+but+half+a+baby+or+half+a+computer
found 1 videos: [['/talks/neil_gershenfeld_unleash_your_creativity_in_a_fab_lab', '2007']]
selected: /talks/neil_gershenfeld_unleash_your_creativity_in_a_fab_lab
sleep 5 seconds to avoid blocking
------<1597>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NeilHarbisson_2012G.stm
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+a+rare+visual+condition+called+achromatopsia+which+is+total+color+blindness
found 1 videos: [['/talks/neil_harbisson_i_listen_to_color', '2012']]
selected: /talks/neil_harbisson_i_listen_to_color
sleep 2 seconds to avoid blocking
------<1598>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NeilMacGregor_2011G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+things+we+make+have+one+supreme+quality+they+live+longer+than+us
found 1 videos: [['/talks/neil_macgregor_2600_years_of_history_in_one_object', '2012']]
selected: /talks/neil_macgregor_2600_years_of_history_in_one_object
sleep 5 seconds to avoid blocking
------<1599>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NeilPasricha_2010X.stm
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+begins+about+forty+years+ago+when+my+mom+and+my+dad+came+to+canada
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+mom+left+nairobi+kenya+my+dad+left+a+small+village+outside+of+amritsar++india++and+they+got+here
found 1 videos: [['/talks/neil_pasricha_the_3_a_s_of_awesome', '2011']]
selected: /talks/neil_pasricha_the_3_a_s_of_awesome
sleep 1 seconds to avoid blocking
------<1600>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NeilTurok_2008.stm
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+find+out+that+there+was+actually+an+organization+that+cared+about+both+parts+of+my+life
found 7 videos: [['/talks/neil_turok_my_wish_find_the_next_einstein_in_africa', '2008'], ['/talks/bjorn_lomborg_global_priorities_bigger_than_climate_change', '2007'], ['/talks/tim_brown_designers_think_big', '2009'], ['/talks/fields_wicker_miurin_learning_from_leadership_s_missing_manual', '2009'], ['/talks/steven_pinker_what_our_language_habits_reveal', '2007'], ['/talks/barry_schwartz_our_loss_of_wisdom', '2009'], ['/talks/irwin_redlener_how_to_survive_a_nuclear_attack', '2008']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+basically++i+work+as+a+theoretical+physicist++i+develop
found 2 videos: [['/talks/neil_turok_my_wish_find_the_next_einstein_in_africa', '2008'], ['/talks/jeff_hawkins_how_brain_science_will_change_computing', '2007']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+test+models+of+the+big+bang
found 16 videos: [['/talks/neil_turok_my_wish_find_the_next_einstein_in_africa', '2008'], ['/talks/charles_elachi_the_story_behind_the_mars_rovers', '2008'], ['/talks/sendhil_mullainathan_solving_social_problems_with_a_nudge', '2010'], ['/talks/jimmy_wales_the_birth_of_wikipedia', '2006'], ['/talks/greg_lynn_organic_algorithms_in_architecture', '2009'], ['/talks/dan_ariely_our_buggy_moral_code', '2009'], ['/talks/robert_fischell_my_wish_three_unusual_medical_inventions', '2006'], ['/talks/ray_kurzweil_the_accelerating_power_of_technology', '2006'], ['/talks/paul_ewald_can_we_domesticate_germs', '2008'], ['/talks/mark_roth_suspended_animation_is_within_our_grasp', '2010'], ['/talks/r_a_mashelkar_breakthrough_designs_for_ultra_low_cost_products', '2010'], ['/talks/tom_rielly_a_comic_sendup_of_ted2006', '2007'], ['/talks/cameron_herold_let_s_raise_kids_to_be_entrepreneurs', '2010'], ['/talks/bill_clinton_my_wish_rebuilding_rwanda', '2007'], ['/talks/michael_shermer_why_people_believe_weird_things', '2006'], ['/talks/kary_mullis_play_experiment_discover', '2009']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=data++and+i+ve+been+moonlighting+for+the+last+five+years
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=helping+with+a+project+in+africa
found 20 videos: [['/talks/neil_turok_my_wish_find_the_next_einstein_in_africa', '2008'], ['/talks/patrick_awuah_how_to_educate_leaders_liberal_arts', '2007'], ['/talks/jane_goodall_how_humans_and_animals_can_live_together', '2008'], ['/talks/neil_gershenfeld_unleash_your_creativity_in_a_fab_lab', '2007'], ['/talks/paul_sereno_digging_up_dinosaurs', '2009'], ['/talks/ory_okolloh_how_i_became_an_activist', '2008'], ['/talks/cameron_sinclair_my_wish_a_call_for_open_source_architecture', '2006'], ['/talks/jamais_cascio_tools_for_a_better_world', '2009'], ['/talks/kevin_bales_how_to_combat_modern_slavery', '2010'], ['/talks/jane_goodall_what_separates_us_from_chimpanzees', '2007'], ['/talks/ethan_zuckerman_listening_to_global_voices', '2010'], ['/talks/sheryl_wudunn_our_century_s_greatest_injustice', '2010'], ['/talks/steven_johnson_where_good_ideas_come_from', '2010'], ['/talks/emily_pilloton_teaching_design_for_change', '2010'], ['/talks/corneille_ewango_a_hero_of_the_congo_forest', '2008'], ['/talks/barbara_block_tagging_tuna_in_the_deep_ocean', '2010'], ['/talks/hans_rosling_global_population_growth_box_by_box', '2010'], ['/talks/clay_shirky_how_cognitive_surplus_will_change_the_world', '2010'], ['/talks/tim_jackson_an_economic_reality_check', '2010'], ['/talks/thulasiraj_ravilla_how_low_cost_eye_care_can_be_world_class', '2009']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+get+a+lot+of+flak+for+this+at+cambridge++people+wonder+you+know+how+do+you+have+time+to+do+this+and+so+on
found 1 videos: [['/talks/neil_turok_my_wish_find_the_next_einstein_in_africa', '2008']]
selected: /talks/neil_turok_my_wish_find_the_next_einstein_in_africa
sleep 5 seconds to avoid blocking
------<1601>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NeriOxman_2015.stm
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=two+radically+opposed+design+cultures++one+is+made+of+thousands+of+steel+parts++the+other+of+a+single+silk
found 1 videos: [['/talks/neri_oxman_design_at_the_intersection_of_technology_and_biology', '2015']]
selected: /talks/neri_oxman_design_at_the_intersection_of_technology_and_biology
sleep 3 seconds to avoid blocking
------<1602>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NewtonAduaka_2007G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=very+strange+for+me+because+im+not+used+to+doing+this+i+usually+stand+on+the+other+side+of+the+light+and+now+i+m+feeling+the+pressure+i+put+other+people+into
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=really+painted+a+very+good+background+as+to
found 4 videos: [['/talks/virginia_postrel_on_glamour', '2008'], ['/talks/newton_aduaka_the_story_of_ezra', '2008'], ['/talks/david_carson_design_and_discovery', '2009'], ['/talks/paul_maccready_a_flight_on_solar_wings', '2007']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+impulse+behind+my+work+and+what+drives+me+and+my+sense+of+of+loss+and+trying+to+find
found 1 videos: [['/talks/newton_aduaka_the_story_of_ezra', '2008']]
selected: /talks/newton_aduaka_the_story_of_ezra
sleep 5 seconds to avoid blocking
------<1603>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NgoziOkonjoIweala_2007.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thank+you+very+much+chris+everybody+who+came+up+here+said+they+were+scared+i+don+t+know+if+i+m+scared++but+this+is+my+first
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=addressing+an+audience+like+this+and+i+don+t+have+any+smart+technology
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+you+to+look+at+there+are+no+slides+so+you+ll+just+have+to+be+content+with+me
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+i+want+to+do+this+morning+is
found 1 videos: [['/talks/ngozi_okonjo_iweala_want_to_help_africa_do_business_here', '2007']]
selected: /talks/ngozi_okonjo_iweala_want_to_help_africa_do_business_here
sleep 1 seconds to avoid blocking
------<1604>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NgoziOkonjoIweala_2007G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+speak+at+the+end+of+a+conference+like+this
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+everyone+has+spoken+everything+has+been+said++so+i+thought+that+what+may+be+useful+is+to+remind+us
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+some+of+the+things+that+have+gone+on
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+and+then+maybe+offer+some+ideas+which+we+can+take+away++and+take+forward+and+work+on++that+s
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+i+d+like+to+try+and+do+we+came+here+saying+we+want+to+talk+about+africa+the+next+chapter+but+we+are+talking+about+africa+the+next+chapter+because
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+are+looking+at+the+old+and+the+present+chapter+that+we+re+looking+at+and+saying+it+s+not+such+a+good+thing+the
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+showed+you+before+and+this+picture+of+drought++death+and+disease+is+what+we+usually+see
found 1 videos: [['/talks/ngozi_okonjo_iweala_aid_versus_trade', '2007']]
selected: /talks/ngozi_okonjo_iweala_aid_versus_trade
sleep 4 seconds to avoid blocking
------<1605>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NgoziOkonjoIweala_2016T.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+narrative+of+a+rising+africa+is+being+challenged
found 3 videos: [['/talks/ngozi_okonjo_iweala_how_africa_can_keep_rising', '2016'], ['/talks/sisonke_msimang_if_a_story_moves_you_act_on_it', '2017'], ['/talks/yuval_noah_harari_nationalism_vs_globalism_the_new_political_divide', '2017']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+ten+years+ago+i+spoke+about+an+africa
found 8 videos: [['/talks/ngozi_okonjo_iweala_how_africa_can_keep_rising', '2016'], ['/talks/sydney_chaffee_how_teachers_can_help_kids_find_their_political_voices', '2018'], ['/talks/antonio_guterres_refugees_have_the_right_to_be_protected', '2015'], ['/talks/genevieve_von_petzinger_why_are_these_32_symbols_found_in_ancient_caves_all_over_europe', '2015'], ['/talks/steve_silberman_the_forgotten_history_of_autism', '2015'], ['/talks/simon_anholt_who_would_the_rest_of_the_world_vote_for_in_your_country_s_election', '2017'], ['/talks/sarah_jones_one_woman_five_characters_and_a_sex_lesson_from_the_future', '2015'], ['/talks/richard_ledgett_the_nsa_responds_to_edward_snowden_s_ted_talk', '2014']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=an+africa+of+hope+and+opportunity+an+africa+of+entrepreneurs+an+africa+very+different+from+the+africa+that+you+normally+hear+about
found 2 videos: [['/talks/ngozi_okonjo_iweala_how_africa_can_keep_rising', '2016'], ['/talks/ameenah_gurib_fakim_and_stephanie_busari_an_interview_with_mauritius_s_first_female_president', '2017']]
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+what+i+spoke+about+became+part+of+what+is+known+now+as+the+narrative+of+the+rising+africa+i+want+to+tell+you+two+stories+about+this+rising+africa
found 1 videos: [['/talks/ngozi_okonjo_iweala_how_africa_can_keep_rising', '2016']]
selected: /talks/ngozi_okonjo_iweala_how_africa_can_keep_rising
sleep 2 seconds to avoid blocking
------<1606>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NiallFerguson_2011G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+s+talk+about+billions++let+s+talk+about+past
found 12 videos: [['/talks/jay_walker_the_world_s_english_mania', '2009'], ['/talks/james_hansen_why_i_must_speak_out_about_climate_change', '2012'], ['/talks/roger_ebert_remaking_my_voice', '2011'], ['/talks/jean_baptiste_michel_erez_lieberman_aiden_what_we_learned_from_5_million_books', '2011'], ['/talks/danny_hillis_back_to_the_future_of_1994', '2012'], ['/talks/peter_diamandis_abundance_is_our_future', '2012'], ['/talks/seth_shostak_et_is_probably_out_there_get_ready', '2012'], ['/talks/timothy_bartik_the_economic_case_for_preschool', '2013'], ['/talks/majora_carter_3_stories_of_local_eco_entrepreneurship', '2010'], ['/talks/ben_goldacre_battling_bad_science', '2011'], ['/talks/regina_dugan_from_mach_20_glider_to_hummingbird_drone', '2012'], ['/talks/david_agus_a_new_strategy_in_the_war_on_cancer', '2010']]
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+about+one+hundred+and+six+billion+people+have+ever+lived++and+we+know+that+most+of+them+are+dead
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+also+know+that+most+of+them
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=live+or+lived+in+asia+and+we+also+know+that+most+of+them+were+or+are+very+poor+did+not+live
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+very+long+let+s+talk+about+billions++let+s+talk+about+the+one+hundred+and
error: request timeout
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+world+today+we+know+that+most+of+that+wealth+was+made
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=after+the+year+one+thousand+eight+hundred+and+we+know+that+most+of+it+is+currently+owned+by+people
found 1 videos: [['/talks/majora_carter_3_stories_of_local_eco_entrepreneurship', '2010']]
selected: /talks/majora_carter_3_stories_of_local_eco_entrepreneurship
sleep 5 seconds to avoid blocking
------<1607>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NicholasChristakis_2010.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+story+begins+about+fifteen+years+ago+when+i+was+a+hospice+doctor+at+the+university+of+chicago++and+i+was+taking+care+of+people+who+were+dying+and+their+families+in+the+south+side+of+chicago
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+was+observing+what+happened+to+people+and+their+families+over+the+course+of+their+terminal+illness
found 1 videos: [['/talks/nicholas_christakis_the_hidden_influence_of_social_networks', '2010']]
selected: /talks/nicholas_christakis_the_hidden_influence_of_social_networks
sleep 3 seconds to avoid blocking
------<1608>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NicholasChristakis_2010S.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=last+ten+years+i+ve+been+spending+my+time+trying+to+figure+out+how+and+why+human+beings+assemble+themselves+into+social+networks+and+the+kind+of+social+network+i+m+talking+about+is+not+the+recent+online+variety
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=kind+of+social+networks+that+human+beings+have+been+assembling+for+hundreds+of+thousands+of+years++ever+since+we+emerged+from+the+african+savannah+so+i+form+friendships+and+co+worker+and+sibling
found 1 videos: [['/talks/nicholas_christakis_how_social_networks_predict_epidemics', '2010']]
selected: /talks/nicholas_christakis_how_social_networks_predict_epidemics
sleep 4 seconds to avoid blocking
------<1609>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NicholasNegroponte_1984.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+this+rather+long+sort+of+marathon+presentation+i+ve+tried+to+break+it+up+into+three+parts++the+first+being
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+whole+lot+of+examples+on+how+it+can+be+a+little+bit+more+pleasurable+to+deal+with+a+computer+and+really+address+the+qualities+of+the+human+interface
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+will+be+some+simple+design+qualities+and+they+will+also+be+some+qualities+of++if+you+will+the+intelligence+of+interaction
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=then+the+second+part+will+really+just+be+examples+of+new+technologies+new+media
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=falling+very+much+into+that+mold
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=again+i+will+go+through+them+as+fast+as+possible+and+then+the+last+one+will+be+some+examples+i+ve+been+able+to+collect++which+i+think
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=illustrate+this+at+least+as+best+i+can+in+the+world+of+entertainment+people+have+this+this
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=belief+and+i+share+most+of+it+that+we+will+be
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=using+the+tv+screens+or+their+equivalents+for+electronic+books+of+the+future+but+then+you+think+my+god+what+a+terrible+image+you+get+when+you+look+at+still+pictures+on+tv
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+doesn+t+have+to+be+terrible+and+that+is+a+slide+taken+from+a+tv+set
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+was+pre+processed+to+be+very+sympathetic+to+the+tv+medium+and+it+absolutely+looks+beautiful+well
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+s+happened+how+did+people
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=get+into+this+mess++where+you+are+now+all+of+a+sudden++sitting+in+front+of+personal+computers+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=video+text+teletext+systems+and+somewhat+horrified+by+what+you+see+on+the+screen
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+you+have+to+remember+that+tv+was+designed+to+be+looked+at+eight+times+the+distance+of+the+diagonal++so+you+get
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=whatever+tv+and+then+you+should+multiply+that+by+eight+and+that+s+the+distance+you+should+sit+away+from+the+tv
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+front+of+a+tv+and+all+the+artifacts+that+none+of+the+original+designers+expected+to+be+seen
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+of+a+sudden+are+staring+you+in+the+face+the+shadow+mask+the+scan+lines+all+of+that
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+can+be+treated+very+easily+there+are+actually+ways+of+getting+rid+of+them+there+are+actually+ways+of
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+just+making+absolutely+beautiful+pictures++i+m+talking+here+a+little+bit+about+display+technologies
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+me+talk+about+how+you+might+input+information+and+my+favorite+example+is+always+fingers+i+m+very+interested+in
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+for+inputting+to+a+display+in+fact+they+re+not+it+s+really+a+very+very+high+resolution+input+medium+you+have+to+just+do+it+twice+you+have+to
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=touch+the+screen+and+then+rotate+your+finger+slightly+and+you+can+move+a+cursor
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+great+accuracy+and+so+when+you+see+on+the+market+these+these+systems+that+have+just+a+few+light+emitting+diodes+on+the+side+and+are+very+low+resolution
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+nice+that+they+exist+because+it+still
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+better+than+nothing++but+it+in+some+sense+misses+the+point++namely+that+fingers+are+a+very+very+high+resolution+input+medium+now
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+are+some+of+the+other+advantages++well
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+one+advantage+is+that+you+don+t+have+to+pick+them+up+and+people+don+t+realize+how+important+that+is+not+having+to+pick+up+your
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+you+think+for+a+second+of+the+mouse+on+on+macintosh+and+i+will+not+criticize+the+mouse
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=too+much+when+you+re+typing
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+you+have+you+want+to+now+put+something+first+of+all+you+ve+got+to+find+the+mouse+you+have+to+probably+stop
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=maybe+not+come+to+a+grinding+halt+but+you+ve+got+to+sort+of+find
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=then+you+find+the+mouse++and+you+re+going+to+have+to+wiggle+it+a+little+bit+to+see+where+the+cursor+is+on+the+screen
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+when+you+finally+see+where+it+is+then+you+ve+got+to+move+it+to+get+the+cursor+over+there++and+then+bang+you+ve+got+to+hit+a+button+or+do+whatever
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+four+separate+steps+versus+typing+and+then+touching+and+typing+and+just+doing+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+in+one+motion+or+one+and+a+half+depending+on+how+you+want+to+count
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=again++what+i+m+trying+to+do+is+just+illustrate+the+kinds+of+problems+that+i+think
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=face+the+designers+of+new+computer+systems+and+entertainment+systems+and+educational+systems
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=from+the+perspective+of+of+the+quality+of+that+interface++and+another+advantage+of+course+of+using+fingers+is+you+have+ten+of+them++and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+have+never+known+how+to+do+this+technically+so+this+slide+is+a+fake+slide
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+never+succeeded+in+using+ten+fingers
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+there+are+certain+things+you+can+do+obviously+with+more+than+one+finger+input++which+is+is+rather+fascinating
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+we+did+stumble+across+was+something+again++which+is+typical+of+the+computer+field+is+when+you+have+a+bug
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+you+can+t+get+rid+of+you+turn+it+into+a+feature+and
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+mouse+is+a+new+kind+of+bug+but+the+the+bug+in+our+case+was+in
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+wanted+to+be+able+to+draw+you+know+rub+your+finger+across+the+screen+to+input+continuous+points+and+there+was+just+too+much+friction
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=created+between+your+finger+and+the+glass+if+glass+was+the+substrate++which+it+usually+is
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+we+found+that+that+actually+was+a+feature+in+the+sense+you+could+build+a+pressure+sensitive+display++and+when+you+touch+it+with+your+finger+you+can
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=actually+then+introduce+all+the+forces+on+the+face+of+that+screen++and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+actually+has+a+certain+amount+of+value+let+me+see+if+i+can
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=load+another+disc+and+show+you
error: request timeout
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+the+forces+both+in+the+plane+of+the+screen+x+y++and+z+at+least+in+one+direction+we+couldn+t+figure+out+how+to+come+in+the+other+direction++but
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+me+get+rid+of+the+slide+and+let+s+see+if+this+comes+on
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+just++if+you+will++pushing+on+the+screen+to+make+a+curve+but+this+is+the+interesting+part
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+stop+it+for+a+second
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+the+movie+is+very+badly+made++and+the+particular+display+was+built+about+six+years+ago+and+when+we+moved+from+one+room+to+another+room
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+rather+large+person+sat+on+it+and+it+got+destroyed+so+all+we+have+is+this+this+record
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=imagine+that+screen+having+lots+of+objects+on+it+and+the+person+has+touched+an+object
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+n+like+he+did+there++and+then+pushed+on+it+now
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+program+where+some+of+those+objects+are+physically+heavy+and+some+are+light+one+is+an+anvil
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fuzzy+rug+and+the+other+one+is+a+ping+pong+ball+on+a+sheet+of+glass
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+when+you+touch+it+you+have+to+really+push+very+hard+to+move+that+anvil+across+the+screen+and+yet+you+touch+the+ping+pong+ball+very+lightly+and+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=just+scoots+across+the+screen+and+what+you+can+do
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+didn+t+mean+to+do+that
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+you+can+do+is+actually
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=feed+back+to+the+user+the+feeling+of+the+physical+properties+so+again+they+don+t+have+to+be+weight+they+could+be
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+general+trying+to+move+troops+and+he+s+got+to+move+an+aircraft+carrier+versus+a+little+boat
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+that+at+the+interface+there+are+physical+properties+in+that+transducer+in+this+case+it+s+pressure+and+touches
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+allow+you+to+present+things+to+the+user+that+you+could+never+present+before
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+it+s+not+simply+looking+at+the+quality+or++if+you+will+the+luxury+of+that+interface++but+it+s+actually+looking+at+the
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+presenting+things+that+previously+couldn+t+be+presented+before+i+want+to+move+on+to+another+example++which+is+one
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=different+sort+where+we+re+trying+to+use+computer+and+video+disc+technology+now+to+come+up+with+a+new+kind+of+book
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+the+idea+is+that+you+re+going+to+take+this+book+if+you+will+and+it+s+going+to+come+alive
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+re+going+to+sort+of+breathe+life+into+it+we+are+so+used
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+to+doing+monologues++filmmakers+for+example+are+the+experts+in+monologue+making+you+make+a+film+and+it+has+a+well+formed+beginning+middle+and+end+and+in+some+sense+the+art+of+it+is+that
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+then+say+there+s+an+opportunity+for+making+conversational+movies+well+what+does+that+mean++and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+the+whole+profession+and+all+the+assumptions+of+that+medium+so+book+writing+is+the+same+thing+what+i+ll+show+you+very+quickly+is+a+new+kind+of+book
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=where+it+is+mixed+now+with+all+sorts+of+things+live+in+there+but+you+have+to+keep+a+few+things+in+mind+one+is+that
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+medium+itself+it+s+just+not+a+static+movie+frame+that+s+one+thing+the+other+is+that+you+have+to+realize+that+it+is+a+random+access+medium++and+you+can+in+fact+branch+and+expand+and+elaborate+and+shrink
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+tells+you+how+to+do+something+like+penguin+and+you+get+to+the+end+of+the+recipe+and+it+says+cook+until+done
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=would+be+if+you+will+the+top+green+track+which+doesn+t+mean+too+much++but+you+might+have+to+elaborate+for+me+or+for+somebody+who+isn+t+an+expert++and+say+cook+at+three+hundred+and+eighty+degrees
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+forty+five+minutes+and+then+for+a+real+beginner++you+would+go+down+even+further+and+elaborate+more+say+open+the+oven+preheat+wait+for+the+light+to+go+out+open+the+door
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+s+a+much+more+elaborate+one+than+you+dribble+back+that+s+one+kind+of+of+use+of+random+access+and+the+other+is+where
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+want+to+explain+the+same+thing+in+different+ways+if+you+re+in+a+classroom+situation+and+somebody+asks+a+question
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+last+thing+you+do+is+repeat+what+you+just+said++you+try+and+think+of+a+different+way+of+saying+the+same+thing+or+if+you+know+the+particular
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=student+and+that+student+s+cognitive+style+then+you+might
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=say+it+in+a+way+that+you+think+would+would+have+a+good+impedance+match+with+that+student+there+are+all+sorts+of+techniques+you+will+use+and+again+this+is+a+different+kind+of
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=branching++so+what+i+will+show+you+is+it+s+a+rather+boring+book++but+i+m+afraid+sometimes+you+have+to+do+boring+books
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=interested+in+fiction+and+entertainment++and+this+is+a+book+on+how+to+repair+a+transmission
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+i+don+t+even+know+what+vintage+the+transmission+is++but+let+me+just+show+you+very+quickly+some+of+it
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+each+of+these+chapters+nicholas+negroponte+now+this+is+his+table+of+contents+just+a+picture+of+the+transmission+and+as+you+rub+your+finger+across+the+transmission+it+highlights+the+various+parts+narrator
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+find+a+chapter+that+i+want+to+see+i+just+touch+the+text
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+system+will+format+pages+for+me+to+read
error: request timeout
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+phrases+that+are+lit+up+in+red+are
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=glossary+words+so+i+can+get+a+different+definition+by+just+touching+the+word++and+the+definition+appears+superimposed+over+the+illustration
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+the+oil+pan+or+the+oil+filter+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=another+example+of+a+page+with+glossary+words+highlighted+in+red
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+can+get+a+definition+of+these+words+just+by+touching+them
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+definition+will+appear+in+the+illustration+corner
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+can+get+back+to+the+illustration++but+in+this+case+it+s+not+a+single+frame++but+it+s+actually+a+movie+of+someone+coming
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=into+the+frame+and+doing+the+repair+that+s+described+in+the+text+the+two+headed+slider+is+a+speed+control+that+allows+me+to+watch+the+movie
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+various+speeds+in+forward+or+reverse++and+the+movie+is+displayed+as+a+full+frame+movie
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+can+go+back+to+the+beginning
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+play+the+movie+at+full+speed
error: request timeout
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=loosen+them+too+far+if+you+loosen+them+too+far+you+ll+have+a+big+mess+nn+i+suspect+that
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+of+you+might+not+even+understand+that+language
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ok++i+m+at+the+third+and+last+part+of+this+which+i+said+i+would+make+an+attempt+to
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+least+give+you+some+examples+that+may+be+more+directly+related+to+the+world+of+entertainment+and+of+course
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=good+education+has+got+to+be+good+entertainment++so+my
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=first+example+will+be+drawn+from
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=very+recent+experiment+that+we+ve+been+doing+in+this+case+in+senegal+where+we+have+tried+to+use
error: request timeout
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+a+pedagogical+medium+but+not+as+teaching+machines+at+all
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+whole+notion+is+to+use+this+as+an+instrument+where+there+is+a+complete+reversal+of+roles+the+child+is+if+you+will+the+teacher+and+the+machine+is+the+student
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+art+of+of+computer+programming+is+a+vehicle+that+sort+of+approximates+thinking+about+thinking+but+teaching+kids+programming+per+se+is
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+are+just+a+few+slides+i+want+to+go+through+but
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there++there+s+a+story+i+d+like+to
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+tell++and+that+was+when+before+we+did+this+in+any+developing+countries+we+re+doing+it+in+fact+in+three+developing+countries+right+now+pakistan+colombia+and+senegal+we+did+it+in
error: request timeout
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=areas+of+new+york+city++and+one+child++whose+name+i+ve+forgotten+was+about+seven+or+eight+years+old+absolutely
error: request timeout
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=mentally+handicapped+couldn+t+couldn+t+read++didn+t+even+make+it+in+the+lowest+section+of+the+of+the+school+s+classes
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+was+pretty+much+not+in+school+though+physically+there++but
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=where+there+were+quite+a+few+computers+and+learned+this+particular+language+called+logo
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+learned+it+with+great+ease+and+found+it+a+lot+of+fun+it+was+very
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=interesting++and+one+day+by+chance+some+visitors+from+the+nie+came+by
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+their+double+breasted+suits+looking+at+this+at+this+setup++and+none+of+the+children+who+were+normally+there+except+for+this+one+child+were
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+he+said+let+me+show+you+how+this+works+and+they
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=got+an+absolutely+ingenuous+wonderful+description+of+logo+and+the+child+was+just+zipping+right+through+it+showing+them+all+sorts+of+things+until+they+asked+him+how+to+do+something+which+he+couldn+couldn+t+explain
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+he+flipped+through+the+manual+found+the+explanation+and+typed+the+command+and+got+it+to+do+what+they+asked+they+were+delighted+and+by+the+time
error: request timeout
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=go+see+the+principal+whom+they+d+actually+come+to+see+not+the+computer+room+they+went+upstairs+and+they+said+this+is+absolutely+remarkable+that+child
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+very+articulate+and+showed+us+and
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=even+dealt+with+the+things+he+couldn+t
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=do+automatically+with+with+that+manual+it+was+just+absolutely+fantastic+the+principal+said+there+s+a+dreadful
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+that+child+can+t+read
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+obviously+have+been+hoodwinked+or+you+ve+talked+about+somebody+else
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+all+got+up+and+they+all+went+downstairs+and+the+child+was+still+there+and+they+did+something+very+intelligent+they+asked+the+child
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=reading+is+this+junk+they+give+me
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+little+books+to+read+it+s+absolutely+irrelevant
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=laughter+and+i+get+nothing+for+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+here+with+a+little+bit+of+effort+i+get+a+lot+of+return+and+it+really+meant+something+to+the+child+the+child+read+beautifully+it+turned
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+story+has+many+other+anecdotes+that+are+similar+but+wow
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+key+to+the+future+of+computers+in+education+is+is+right+there+and+it+is+when+does+it+mean+something+to+a+child+there+is+a
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=myth+and+it+truly+is+a+myth+we+believe+and+i+m+sure+a+lot+of+you+believe+in+this+room+that+it+is+harder+to+read+and+write
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=than+it+is+to+learn+how+to+speak
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+s+not+but+we+think+speech+my+god+little+children
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=pick+it+up+somehow+and+by+the+age+of+two+they+re+doing+a+mediocre+job+and+by+three+and+four+they+re+speaking+reasonably+well++and+yet+you+ve+got+to+go+to+school+to+learn+how+to+read+and+you+have+to+sit+in+a+classroom+and+somebody+has+to+teach+you+hence+it+must+be+harder
error: request timeout
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+child+can+get+a+great+deal+by+talking+to+you+reading+and+writing+is+utterly+useless+there+is+no+reason+for+a+child+to+read+and+write+except+blind+faith
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+it+s+going+to+help+you
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+what+happens+is+you+go+to+school+and+people+say+just+believe+me+you+re+going+to+like+it+you+re+going+to+like+reading+and+just+read+and+read
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+the+other+hand+you+give+a+kid
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=three+year+old+kid+a+computer
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+type+a+little+command+and+poof+something+happens+and+all+of+a+sudden++you+may+not+call+that+reading+and+writing+but+a+certain+bit+of+typing+and+reading+stuff+on+the+screen+has+a+huge+payoff
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+s+a+lot+of+fun++and+in+fact+it+s+a+powerful+educational+instrument+well++in+senegal+we+found
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+this+was+the+traditional+classroom+one+hundred+and+twenty+kids+three+per+desk
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+teacher+a+little+bit+of+chalk+this+student+was+one+of+our+first+students++and+it+s+the+girl+on+the+left+leaning+with+her+chalkboard
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+she+came+within+two+days+i+want+to+show+you+the+the+program+she+wrote++and+remember+her+her+hairstyle
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=within+two+days+an+hour+each+day+and+found+it+was+to+her+absolutely+the+most+meaningful+piece+but+rooted+in+that+little
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=did+she+know+how+much+knowledge+she+was+acquiring+about+geometry+and+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+to+my+last+example+and+then+quit++and+my+last+example+as
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+of+my+former+colleagues+whom+i+see+in+the+room+can+imagine+what+it+will+be+yes+it+is+it+s+our+work+that+was+a+while+ago+and+it+still+is+my+favorite+project
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+reason+it+remains+a+favorite+project+is+that+we+were+asked+to+do
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=where+you+had+the+following+situation+you+had+five+people+at+five+different+sites+they+were+known+people+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+had+to+have+these+people+in+teleconference++such+that+each+one+was+utterly+convinced+that+the+other+four+were+physically+present
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=zany+that+we+would+obviously+jump+to+the+bait++and+we+did+and+the+fact+that+we+knew+the+people+we+had+to+take+a+page+out+of
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+history+of+walt+disney+we+actually+went+so+far+as+to+build+crts+in+the+shapes+of+the+people+s+faces
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+if+i+wanted+to+call
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+secretary+would+get+his+head+out+and+bring+it+and+set+it+on+the+desk+and+that+would+be+the+tv+used
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+s+uncanny+there+s+no+way+i+can+explain+to+you+the+amount+of+eye+contact+you+get+with+that+physical+face+projected+on+a+3d
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=crt+of+that+sort++the+next+thing+that+we+had+to+do+is+to+persuade+them+that+there+needed+to+be+spatial
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=correspondence++which+is+straightforward++but+again+it+s+something+that+didn+t+fall+naturally+out+of+a+telecommunications+or+computing+style+of+thinking+it+was+a+very++if+you+will+architectural+or+spatial
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=concept+and+that+was+to+recognize+that+when+you+sit+around+the+table+the+actual
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=go+answer+a+phone+or+use+a+bathroom+or+something+the+empty+seat
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=becomes+if+you+will+that+person+and+you+point+frequently+to+the+empty+seat+and+you+say+he+or+she+wouldn+t+agree+and+the+empty+chair+is+that+person
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+crucial++so+we+said+well++these+will+be+on+round+tables+and+the+order+around+the+table+had+to+be+the+same+so+that+at+my+site+i+would+be++if+you+will+real+and+then+at+each+other+s+site+you+d+have+these
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=heads++and+the+plastic+heads+sometimes+you+want+to+project+them+and+there+are+a+number+of+schemes++which+i+don+t+want+to+dwell+on
found 0 videos: []
error: no video is found.
sleep 2 seconds to avoid blocking
------<1610>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NicholasNegroponte_2006.stm
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=been+at+mit+for+forty+four+years+i+went+to+ted+i+there+s+only+one+other+person+here+i+think+who+did+that
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=lab+was+doing+which+today+has+almost+five+hundred+people+in+it
found 12 videos: [['/talks/charles_elachi_the_story_behind_the_mars_rovers', '2008'], ['/talks/craig_venter_sampling_the_ocean_s_dna', '2007'], ['/talks/peter_hirshberg_the_web_is_more_than_better_tv', '2008'], ['/talks/bill_clinton_my_wish_rebuilding_rwanda', '2007'], ['/talks/neil_gershenfeld_unleash_your_creativity_in_a_fab_lab', '2007'], ['/talks/dan_gilbert_why_we_make_bad_decisions', '2008'], ['/talks/juan_enriquez_the_life_code_that_will_reshape_the_future', '2007'], ['/talks/ray_kurzweil_the_accelerating_power_of_technology', '2006'], ['/talks/clay_shirky_institutions_vs_collaboration', '2008'], ['/talks/steven_levitt_surprising_stats_about_child_carseats', '2008'], ['/talks/daniel_goleman_why_aren_t_we_more_compassionate', '2007'], ['/talks/edward_burtynsky_my_wish_manufactured_landscapes_and_green_education', '2006']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+if+you+read+the+press+last+week+it+actually+said+i+quit+the+media+lab+i+didn+t+quit+the+media+lab+i+stepped+down+as+chairman
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+was+a+kind+of+ridiculous+title+but
found 2 videos: [['/talks/nicholas_negroponte_one_laptop_per_child', '2006'], ['/talks/peter_hirshberg_the_web_is_more_than_better_tv', '2008']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=someone+else+has+taken+it+on+and+one+of+the+things+you+can+do+as+a+professor+is+you+stay+on+as+a+professor+and+i+will+now+do+for+the+rest+of+my+life+the+one+laptop+per
found 1 videos: [['/talks/nicholas_negroponte_one_laptop_per_child', '2006']]
selected: /talks/nicholas_negroponte_one_laptop_per_child
sleep 4 seconds to avoid blocking
------<1611>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NicholasNegroponte_2007P.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=most+people+don+t+know+that+when+i+went+to+high+school+in+this+country
found 2 videos: [['/talks/sir_ken_robinson_do_schools_kill_creativity', '2006'], ['/talks/jacqueline_novogratz_patient_capitalism', '2007']]
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=applied+for+university+at+a+time+when+i+was+convinced+i+was+going+to+be+an+artist+and+be+a+sculptor
found 1 videos: [['/talks/nicholas_negroponte_one_laptop_per_child_two_years_on', '2008']]
selected: /talks/nicholas_negroponte_one_laptop_per_child_two_years_on
sleep 2 seconds to avoid blocking
------<1612>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NicholasNegroponte_2008.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+amazing+when+you+meet+a+head+of+state+and+you+say+what+is+your+most+precious+natural+resource+they+will+not+say+children
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+first+and+then+when+you+say+children+they+will+pretty+quickly
found 16 videos: [['/talks/sugata_mitra_kids_can_teach_themselves', '2008'], ['/talks/pawan_sinha_how_brains_learn_to_see', '2010'], ['/talks/tim_brown_tales_of_creativity_and_play', '2008'], ['/talks/natalie_macmaster_fiddling_in_reel_time', '2009'], ['/talks/jessica_jackley_poverty_money_and_love', '2010'], ['/talks/paula_scher_great_design_is_serious_not_solemn', '2009'], ['/talks/nicholas_negroponte_one_laptop_per_child_two_years_on', '2008'], ['/talks/ray_kurzweil_the_accelerating_power_of_technology', '2006'], ['/talks/nicholas_negroponte_one_laptop_per_child', '2006'], ['/talks/nicholas_negroponte_5_predictions_from_1984', '2008'], ['/talks/rufus_griscom_alisa_volkman_let_s_talk_parenting_taboos', '2010'], ['/talks/brenda_laurel_why_not_make_video_games_for_girls', '2009'], ['/talks/nicholas_negroponte_taking_olpc_to_colombia', '2008'], ['/talks/catherine_mohr_surgery_s_past_present_and_robotic_future', '2009'], ['/talks/mark_roth_suspended_animation_is_within_our_grasp', '2010'], ['/talks/nancy_etcoff_happiness_and_its_surprises', '2009']]
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=traveling+today+with+the+minister+of+defense+of+colombia
found 1 videos: [['/talks/nicholas_negroponte_taking_olpc_to_colombia', '2008']]
selected: /talks/nicholas_negroponte_taking_olpc_to_colombia
sleep 2 seconds to avoid blocking
------<1613>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NicholasNegroponte_2014.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+switch+to+the+video+disc+which+is+in+play+mode
found 1 videos: [['/talks/nicholas_negroponte_a_30_year_history_of_the_future', '2014']]
selected: /talks/nicholas_negroponte_a_30_year_history_of_the_future
sleep 4 seconds to avoid blocking
------<1614>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NickBostrom_2005G.stm
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+been+asked+to+take+the+long+view++and+i+m+going+to
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=tell+you+what+i+think+are+the+three+biggest+problems+for+humanity
found 2 videos: [['/talks/nick_bostrom_a_philosophical_quest_for_our_biggest_problems', '2007'], ['/talks/stephen_petranek_10_ways_the_world_could_end', '2007']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=from+this+long+point+of+view+some+of+these+have+already+been+touched
found 4 videos: [['/talks/nick_bostrom_a_philosophical_quest_for_our_biggest_problems', '2007'], ['/talks/david_pogue_simplicity_sells', '2006'], ['/talks/jehane_noujaim_my_wish_a_global_day_of_film', '2006'], ['/talks/david_rockwell_a_memorial_at_ground_zero', '2007']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=upon+by+other+speakers+which+is+encouraging
found 2 videos: [['/talks/nick_bostrom_a_philosophical_quest_for_our_biggest_problems', '2007'], ['/talks/jane_goodall_what_separates_us_from_chimpanzees', '2007']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+seems+that+there+s+not+just+one+person+who+thinks+that+these+problems+are+important+the+first+is+death+is+a+big+problem++if+you
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=look+at+the+statistics++the+odds+are+not+very+favorable+to+us+so+far+most+people+who+have+lived+have+also+died+roughly+ninety+percent+of+everybody+who+has+been+alive+has+died+by+now
error: request timeout
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=annual+death+rate+adds+up+to+one+hundred+and+fifty+thousand+sorry+the+daily+death+rate+one+hundred+and+fifty+thousand+people+per+day
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+is+a+huge+number+by+any+standard+the
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=annual+death+rate+then+becomes+fifty+six+million+if+we+just+look+at+the+single++biggest+cause+of+death+aging
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+who+die+that+adds+up+to+an+annual+death+toll+of+greater+than+the+population+of+canada++sometimes+we+don+t+see+a+problem+because+either
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+too+familiar+or+it+s+too+big+can+t+see+it+because+it+s+too+big+i+think+death+might+be+both+too+familiar+and+too+big+for+most+people+to+see+it+as+a+problem
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+not+statistical+points+these+are
found 5 videos: [['/talks/hans_rosling_the_best_stats_you_ve_ever_seen', '2006'], ['/talks/nick_bostrom_a_philosophical_quest_for_our_biggest_problems', '2007'], ['/talks/jonathan_harris_the_web_s_secret_stories', '2007'], ['/talks/richard_dawkins_militant_atheism', '2007'], ['/talks/peter_donnelly_how_juries_are_fooled_by_statistics', '2006']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+s+see+how+far+have+i+talked+i+ve+talked+for
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=three+minutes++so+that+would+be
found 5 videos: [['/talks/dan_dennett_let_s_teach_religion_all_religion_in_schools', '2006'], ['/talks/david_bolinsky_visualizing_the_wonder_of_a_living_cell', '2007'], ['/talks/robert_fischell_my_wish_three_unusual_medical_inventions', '2006'], ['/talks/bono_my_wish_three_actions_for_africa', '2006'], ['/talks/allison_hunt_how_to_get_a_new_hip', '2007']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=roughly+three+hundred+and+twenty+four+people+have+died+since+i+ve+begun+speaking+people+like+it+s+roughly+the+population+in+this+room+has+just+died
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now++the+human+cost+of+that+is+obvious+once+you+start+to+think+about+it+the+suffering+the+loss+it+s
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+just+look+at+the+information+and+knowledge+and+experience+that+is+lost
found 1 videos: [['/talks/nick_bostrom_a_philosophical_quest_for_our_biggest_problems', '2007']]
selected: /talks/nick_bostrom_a_philosophical_quest_for_our_biggest_problems
sleep 4 seconds to avoid blocking
------<1615>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NickBostrom_2015.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+work+with+a+bunch+of+mathematicians+philosophers+and+computer+scientists+and
found 1 videos: [['/talks/nick_bostrom_what_happens_when_our_computers_get_smarter_than_we_are', '2015']]
selected: /talks/nick_bostrom_what_happens_when_our_computers_get_smarter_than_we_are
sleep 2 seconds to avoid blocking
------<1616>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NickHanauer_2014S.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=probably+don+t+know+me+but+i+am+one+of+those+01+percenters+that+you+hear+about+and+read+about+and+i+am+by+any+reasonable+definition+a+plutocrat
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+tonight+what+i+would+like+to+do+is+speak+directly+to+other+plutocrats+to+my+people+because+it+feels+like+it+s+time+for+us+all
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+most+plutocrats++i+too+am+a+proud+and+unapologetic+capitalist+i+have+founded+cofounded+or+funded
found 1 videos: [['/talks/nick_hanauer_beware_fellow_plutocrats_the_pitchforks_are_coming', '2014']]
selected: /talks/nick_hanauer_beware_fellow_plutocrats_the_pitchforks_are_coming
sleep 4 seconds to avoid blocking
------<1617>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NickSears_2007.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fuller+presented+the+particularly+audacious+proposal+for+the+geoscope+it+was+a+200+foot+diameter+geodesic+sphere
found 1 videos: [['/talks/nick_sears_demo_the_orb', '2008']]
selected: /talks/nick_sears_demo_the_orb
sleep 3 seconds to avoid blocking
------<1618>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NickVeasey_2009G.stm
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=quite+why+he+had+to+pin+her+fingers+to+the+floor+with+her+brooch+i+m+not+sure+it+seems+a+bit+extreme+to+me+that+image+was+the+start+of+the+x+ray+technology+and+i+m+still+fundamentally+using+the+same+principles+today
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+interpreting+it+in+a+more+contemporary+manner++the
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=first+shot+i+ever+did+was+of+a+soda+can+which+was+to+promote+a+brand+that+we+all+know+so+i+m+not+going+to+do+them+any+favors+by+showing+you+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+the+second+shot+i+did+was+my+shoes+i+was+wearing+on+the+day+and+i+do+really+like+this+shot+because
found 13 videos: [['/talks/aimee_mullins_changing_my_legs_and_my_mindset', '2009'], ['/talks/nick_veasey_exposing_the_invisible', '2010'], ['/talks/simon_lewis_don_t_take_consciousness_for_granted', '2011'], ['/talks/jr_my_wish_use_art_to_turn_the_world_inside_out', '2011'], ['/talks/steven_pinker_human_nature_and_the_blank_slate', '2008'], ['/talks/will_wright_spore_birth_of_a_game', '2007'], ['/talks/paola_antonelli_treat_design_as_art', '2008'], ['/talks/john_maeda_my_journey_in_design', '2009'], ['/talks/susan_blackmore_memes_and_temes', '2008'], ['/talks/eric_dishman_take_health_care_off_the_mainframe', '2010'], ['/talks/emily_levine_a_theory_of_everything', '2009'], ['/talks/bruce_schneier_the_security_mirage', '2011'], ['/talks/rory_sutherland_life_lessons_from_an_ad_man', '2009']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+shows+all+the+detritus+that+s+sort+of+embedded+in+the+sole+of+the+sneakers
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=time+moving+on+to+something+a+bit+larger+this+is+an+x+ray+of
found 2 videos: [['/talks/nick_veasey_exposing_the_invisible', '2010'], ['/talks/anders_ynnerman_visualizing_the_medical_data_explosion', '2011']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+bus+and+the+bus+is+full+of+people+it
found 8 videos: [['/talks/nick_veasey_exposing_the_invisible', '2010'], ['/talks/james_cameron_before_avatar_a_curious_boy', '2010'], ['/talks/anil_ananthaswamy_what_it_takes_to_do_extreme_astrophysics', '2011'], ['/talks/willard_wigan_hold_your_breath_for_micro_sculpture', '2009'], ['/talks/shukla_bose_teaching_one_child_at_a_time', '2010'], ['/talks/rick_smolan_the_story_of_a_girl', '2008'], ['/talks/lisa_gansky_the_future_of_business_is_the_mesh', '2011'], ['/talks/clifford_stoll_the_call_to_learn', '2008']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+actually+the+same+person+it+s+just+one+skeleton++and+back+in+the++60s+they+used+to+teach+student+radiographers+to+take+x+rays+thankfully+not+on+you+and+i+but
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+dead+people++so+i+ve+still+got+access+to+one+of+these+dead+people+called+frieda+she+s+falling+apart+i+m+afraid+because+she+s+very+old+and+fragile++but+everyone+on
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+bus+is+frieda+and+the+bus+is+taken+with+a
found 7 videos: [['/talks/nick_veasey_exposing_the_invisible', '2010'], ['/talks/jennifer_8_lee_the_hunt_for_general_tso', '2008'], ['/talks/michelle_obama_a_passionate_personal_case_for_education', '2009'], ['/talks/emily_pilloton_teaching_design_for_change', '2010'], ['/talks/jonathan_zittrain_the_web_as_random_acts_of_kindness', '2009'], ['/talks/mark_bittman_what_s_wrong_with_what_we_eat', '2008'], ['/talks/david_blaine_how_i_held_my_breath_for_17_minutes', '2010']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+is+the+sort+of+machine+you+have+on+borders+which
found 4 videos: [['/talks/nick_veasey_exposing_the_invisible', '2010'], ['/talks/sugata_mitra_kids_can_teach_themselves', '2008'], ['/talks/norman_foster_my_green_agenda_for_architecture', '2008'], ['/talks/dave_eggers_my_wish_once_upon_a_school', '2008']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=checks+for+contraband+and+drugs+and+bombs+and+things
found 1 videos: [['/talks/nick_veasey_exposing_the_invisible', '2010']]
selected: /talks/nick_veasey_exposing_the_invisible
sleep 4 seconds to avoid blocking
------<1619>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NicMarks_2010G.stm
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=did+not+say+i+have+a+nightmare+when+he+inspired+the+civil+rights+movements
found 1 videos: [['/talks/nic_marks_the_happy_planet_index', '2010']]
selected: /talks/nic_marks_the_happy_planet_index
sleep 1 seconds to avoid blocking
------<1620>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NicolasPerony_2013X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=has+allowed+us+to+know+so+much+about+the+far+reaches+of+the+the+universe++which+is+at+the+same+time
found 1 videos: [['/talks/nicolas_perony_puppies_now_that_i_ve_got_your_attention_complexity_theory', '2014']]
selected: /talks/nicolas_perony_puppies_now_that_i_ve_got_your_attention_complexity_theory
sleep 1 seconds to avoid blocking
------<1621>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NicoleParis_2015Y.stm
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+that+let+me+show+you+how+we+used+to
found 16 videos: [['/talks/zeynep_tufekci_we_re_building_a_dystopia_just_to_make_people_click_on_ads', '2017'], ['/talks/victoria_pratt_how_judges_can_show_respect', '2017'], ['/talks/jeremy_heimans_what_new_power_looks_like', '2014'], ['/talks/mary_lou_jepsen_could_future_devices_read_images_from_our_brains', '2014'], ['/talks/oscar_schwartz_can_a_computer_write_poetry', '2016'], ['/talks/martina_flor_the_secret_language_of_letter_design', '2017'], ['/talks/miguel_nicolelis_brain_to_brain_communication_has_arrived_how_we_did_it', '2015'], ['/talks/jeremy_howard_the_wonderful_and_terrifying_implications_of_computers_that_can_learn', '2014'], ['/talks/andrew_mcafee_what_will_future_jobs_look_like', '2013'], ['/talks/eric_liu_there_s_no_such_thing_as_not_voting', '2016'], ['/talks/edward_snowden_here_s_how_we_take_back_the_internet', '2014'], ['/talks/tasos_frantzolas_everything_you_hear_on_film_is_a_lie', '2016'], ['/talks/juno_mac_the_laws_that_sex_workers_really_want', '2016'], ['/talks/gonzalo_vilarino_how_argentina_s_blind_soccer_team_became_champions', '2016'], ['/talks/marc_kushner_why_the_buildings_of_the_future_will_be_shaped_by_you', '2015'], ['/talks/nadine_hachach_haram_how_augmented_reality_could_change_the_future_of_surgery', '2017']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+when+she+was+a+little+baby+we+would+do+something+like+this
found 2 videos: [['/talks/rodney_brooks_why_we_will_rely_on_robots', '2013'], ['/talks/tim_harford_how_frustration_can_make_us_more_creative', '2016']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+a+lot+of+people+out+there+don+t+really+know+what+beatboxing+is+where+it+started+from+ec+right+right+np+where+it+came+from+so+why+don+t+you+give+them+a+little+history+just+a+tickle+a
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+beatbox+started+here+in+new+york+what+you+would+have+is+that+when+we+would+go+to+parties+you+would+have+the+dj+and+you+would+have+the+rapper++but+because+i+don+t+have+electricity+coming+out+of+me+we+had+to+emulate+what+the+beats+was+doing
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+when+you+would+see+the+beatboxer+you+would+see+us+over+to+the+side+then+you+would+see+a+rapper++and+when+the+rapper+began+to+rap+we+would+do+a+simple+beat+because+back+then+the+beats+were+simple
error: request timeout
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=those+were+simple+beats+but+now
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+got+folks+that+want+to+do+all+type+of+stuff+with+their+beats+now++and+they+want+to+humiliate+their+father++which+is+not+right+when+you+want+to+humiliate+the+person+that+take+care+of+you++pay+all+your+tuition
found 1 videos: [['/talks/nicole_paris_and_ed_cage_a_beatboxing_lesson_from_a_father_daughter_duo', '2015']]
selected: /talks/nicole_paris_and_ed_cage_a_beatboxing_lesson_from_a_father_daughter_duo
sleep 3 seconds to avoid blocking
------<1622>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NielsDiffrient_2002.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+five+years+old+i+fell+in+love+with+airplanes++now+i+m+talking+about+the
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+a+guy+who+looked+like+cary+grant+he
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=had+high+leather+boots++jodhpurs+an+old+leather+jacket
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+wonderful+helmet+and+those+marvelous+goggles
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+inevitably+a+white+scarf+to+flow+in+the+wind++he+d+always+walk+up
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=up+to+his+airplane+in+a+kind+of
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=flick+the+cigarette+away+grab+the+girl+waiting+here+give+her+a+kiss
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+mount+his+airplane++maybe+for+the+last+time+of+course+i+always+wondered
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+would+happen+if+he+d+kissed+the+airplane+first
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=laughter+but+this+was+real+romance+to+me
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+those+years++which+was+you+have+to+stop+and+think+for+a+moment
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+probably+the+most+advanced+technological+thing+going+on+at+the+time++so+as+a+youngster
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+tried+to+get+close+to+this
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+drawing+airplanes++constantly+drawing+airplanes+it+s+the+way+i+got
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+part+of+this+romance+and+of+course+in+a+way+when+i+say+romance++i+mean+in+part+the+aesthetics
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+the+word+is+the+holistic+experience+revolving+around+a+product+the+product
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+that+airplane+but+it+built
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+romance++even+the+parts+of+the+airplane
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=had+french+names++ze+fuselage+ze+empanage
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=just+got+into+your+spirit+it+did+mine++and+i+decided+i+had+to+get+closer+than+just+drawing
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fantasy+airplanes++i+wanted+to+build+airplanes++so+i+built+model+airplanes++and+i+found
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+in+doing+the+model+airplanes
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=were+not+enough+you+couldn+t+transfer+those+to+the+model+itself+if+you+wanted+it+to+fly
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+flying++you+had+to+learn
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+aeronautics+you+had+to+learn+what+made+an+airplane+stay+in+the+air+and+of+course+as+a+model+in+those+years++you+couldn+t+control+it
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+had+to+give+up+the+approach+of+drawing+the+fantasy+shapes
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+convert+it+to+technical+drawings
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+shape+of+the+wing+the+shape+of+the+fuselage+and+so+on+and+build+an+airplane+over+these+drawings
error: request timeout
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=followed+some+of+the+principles+of+flying+and+in+so+doing+i+could+produce
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+would+fly++stay+in+the+air++and+it+had+once+it+was+in+the+air++some+of+this+romance
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+i+was+in+love+with+well+the+act+of+drawing+airplanes
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=led+me+to+when+i+had+the+opportunity+to+choose+a+course+in+school+led+me+to+sign+up+for+aeronautical+engineering
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+when+i+was+sitting+in+classes
error: request timeout
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=no+one+asked+me+to+draw+an+airplane+to+my+surprise
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+had+to+learn+mathematics+and+mechanics+and+all+this+sort+of+thing+i+d+wile+away+my+time+drawing+airplanes+in+the+class
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+should+be+in+the+art+department+and+i+said+why+and+he+said+well+for+one+thing+there+are+more+girls+there
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=laughter+and+i+went+into+art+because+they+appreciated+drawing+studied+painting+didn+t+do+very+well+at+that+went+through
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=eventually+hired+myself+out+as+a+designer++and+for+the+following+twenty+five+years
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=living+in+italy++living+in+america++i+doled+out
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+anybody+who+d+pay+for+it+this+sense+this
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+exists+any+of+you+who+rode+the+automobiles
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+it+yesterday+at+the+track+you+know+the+romance+revolving+around
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=around+those+high+performance+high+performance+cars++well+in+twenty+five+years
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+mostly+putting+out+pieces+of+this
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=romance+and+not+getting+a+lot+back+in+because+design+on+call
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=doesn+t+always+connect+you+with+a+circumstance+in+which+you+can
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=produce+things+of+this+nature++so+after+twenty+five+years+i+began+to+feel+as+though+i+was+running+dry
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+quit++and+i+started+up
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+in+an+effort+to+rediscover+my+innocence++i+wanted+to+get+back
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=where+the+romance+was+and+i+couldn+t+choose+airplanes+because+they+had+gotten+sort+of+unromantic
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+that+point+even+though+i+d+done+a+lot+of+airplane+work+on+the
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+chose+furniture++and+i+chose+chairs+specifically
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+i+knew+something+about+them+i+d+designed+a+lot+of+chairs+over+the+years+for+tractors+and+trucks
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+kinds+of+things+but+not+office+chairs++so+i+started+doing+that
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+found+that+there+were+ways+to+duplicate
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+i+used+to+use+on+the+airplane+only+this+time++instead+of+the+product+being+shaped+by+the+wind+it+was+shaped
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+the+human+body++so+the+discipline+was
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+in+the+airplane+you+learn+a+lot+about+how+to+deal+with+the+air+for+a+chair+you+have+to+learn+a+lot+about+how+to+deal
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+what+the+body+needs+wants++indicates+it+needs++and+that+s+the+way++ultimately+after
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+ups+and+downs++i+ended+up+designing+the+chair+i+m+going+to+show+you+i+should+say+one+more+thing+when+i+was+doing+those
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=model+airplanes++i+did+everything+i+conceived+the+kind+of+airplane
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+built+it++and+i+flew+it
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+s+the+way+i+work+now
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+started+this+chair+it+was+not+a+preconceived+notion+design
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+mean+it++you+don+t+start+with
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=styling+sketches+i+started+with+a+lot+of+loose+ideas+roughly+eight+or+nine+years+ago++and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+loose+ideas+had+something+to+do+with+what+i+knew+happened+with+people+in+the+office+at+the
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=work+place+people+who+worked+and+used+task+seating+a+great+many+of+them+sitting+in+front+of+a+computer
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+day+long++and+i+felt
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=felt+the+one+thing+they+don+t+need+is+a+chair+that+interferes
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+their+main+reason+for+sitting+there
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+took+the+approach+that+the+chair+should+do+as+much+for+them+as+humanly+possible
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+mechanistically+possible+so+that+they+didn+t+have+to+fuss+with+it++so+my+idea+was+that
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+sitting+down+and+reaching+for+a+lot+of+controls++that+you+would+sit+on+the+chair+and+it+would+automatically+balance+your+weight
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=against+the+force+required+to+recline++now+that
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+some+of+you+but+you+know+most+good+chairs+do+recline+because+it+s+beneficial+to+open+up+this+joint+between+your+legs+and+your+upper+body+for+better
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=breathing+and+better+flow+so+that+if+you+sit+down
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+my+chair+whether+you+re+five+feet+tall+or+six+foot+six+it+always
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+transfers+the+amount+of+force+required+to+recline+in+a+way+that+you+don+t+have+to+look
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ll+tell+you+right+up+front+this+is+a+trade+off+there+are+drawbacks+to+this+one+is+you+can+t
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+are+some+very+light+people+some+extremely+heavy+people
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=maybe+people+with+a+lot+of+bulk+up+top+they+begin+to+fall+off+the+end+of+your+chart
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+compromise+i+felt+was+in+my+favor+because+most+people
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=don+t+adjust+their+chairs+they+will+sit+in+them+forever+i+had+somebody
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+the+bus+out+to+the+racetrack+tell+me+about+his+sister+calling+him+he+said+she+had+one+of+the
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=come+over+and+look+at+it+he+came+over+and+looked+at+it++he+reached+down+he+pulled+a+lever++and+the+chair+sank+down+she+said+oh+it+s+wonderful+how+did+you+do+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+he+showed+her+the+lever++well+that+s+typical
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+a+lot+of+us+working+in+chairs+and+why+should+you
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=get+a+20+page+manual+about+how+to+run
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+had+one+for+a+wristwatch+once
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=twenty+pages++anyway+i+felt+that+it+was+important+that+you+didn+t+have+to+make+an+adjustment+in+order+to+get+this+kind+of
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=action+the+other+thing+i+felt+was+that+armrests+had+never+really+been
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=properly+approached+from+the+standpoint+of+how+much+of+an+aid+they+could+be
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+your+work+life+but+i+felt
error: request timeout
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+have+to+adjust+each+individual+armrest
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+order+to+get+it+where+you+wanted++so+i+spent+a+long+time+i+said+i+worked+eight+or+nine+years+on+it+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=each+of+these+things+went+along+sort+of+in+parallel+but+incrementally+were+a+problem+of+their+own++i+worked+a+long+time+on+figuring+out
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=arc+that+is+up+and+down
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+make+them+a+lot+easier++so+that+you+didn+t+have+to
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=use+a+button+and+so+after+many+trials+many+failures+we+came+up+with+a+very+simple+arrangement
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+which+we+could+just+move+one+arm+or+the+other+and+they+go+up
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+stop+where+you+want+you+can+put+them+down+essentially+out+of+the+way++no+arms+at+all+or+you+can+pull+them+up+where+you+want+them
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+was+another+thing+that+i+felt++while+not+nearly+as+romantic+as+cary+grant++nevertheless
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=grab+a+little+bit+of+aesthetic
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=aesthetic+performance+into+a+product+the+next+area+that+was+of+interest+to+me+was+the+fact+that
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=factor++and+the+more+you+can+recline
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+a+way+the+better+it+is
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+more+the+angle+between+here+and+here+opens+up+and+nowadays+with+a+screen+in+front+of+you+you+don+t+want+to+have+your+eye+drop+too+far+in+the+recline++so+we+keep+it+at+more+or+less+the+same+level
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+you+transfer+weight+off+your+tailbones+would+everybody+put+their+hand+under+their+bottom+and+feel+their+tailbone
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+feel+that+bone+under+there
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+the+weight+of+your+upper+torso+your+arms+your+head
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=goes+right+down+through+your+back+your+spine+into+those+bones+when+you+sit++and+that+s+a+lot+of+load
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=just+relieving+your+arms+with+armrests+takes+twenty+percent+of+that+load
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+your+spine+is+not+held+in+a+good+position+will+help+bend+your+spine+the+wrong+way+and+so+on+so+to+unload
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+recline++when+you+recline+you+take+away+a+lot+of+that+load
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=your+bottom+end+and+transfer+it+to+your+back+at+the+same+time+as+i+say+you+open+up+this+joint+and+breathability+is+good
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=amount+of+recline+it+gets+to+the+point+where+you+need+a+headrest
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=automatically+hold+your+head+in+a+vertical+position++see+as+i+recline
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+head+says+more+or+less
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=vertical+well+if+you+re+reclined+a+great+deal+you+have+to+use+muscle+force
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+hold+your+head+there++so+that+s+where+a+headrest+comes+in+now+headrest+is+a+challenge+because+you+want+it+to
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=adjust+enough+so+that+it+ll+fit++you
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=tall+guy+and+a+short+girl+so
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+we+are++i+ve+got+five+inches+of+adjustment+here+in+order+to+get+the+headrest+in+the+right+place+but+then+i+knew
error: request timeout
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+offices+where+there+were+chairs+with+headrests
error: request timeout
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+reach+back+and+turn+a+knob+and+adjust+the+headrest+to+put+it+in+position++and+you+need+it+in+a+different+position+when+you+re+upright
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=then+when+you+re+reclined+so+i+knew+that+had+to+be+solved++and+had+to+be+automatic+so+if+you+watch+this+chair+as+i+recline+the+headrest+comes+up
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+meet+my+neck++ideally+you+want+to+put+the+head+support+in+the+cranial+area+right+there
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+part+of+it+took+a+long+time+to+work+out
found 0 videos: []
error: no video is found.
sleep 5 seconds to avoid blocking
------<1623>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NielsDiffrient_2002a.stm
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+fell+in+love+with+airplanes+now+i+m+talking+about+the+thirtys+in
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+thirtys+an+airplane+had+two+wings+and+a+round+motor+and+was+always+flown
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=flown+by+a+guy+who+looked+like+cary+grant+he
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=had+high+leather+boots+jodhpurs+an+old+leather+jacket
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+wonderful+helmet+and+those+marvelous+goggles
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+inevitably+a+white+scarf+to+flow+in+the+wind
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=up+to+his+airplane+in+a+kind+of+saunter+devil+may+care+saunter
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=flick+the+cigarette+away+grab+the+girl+waiting+here+give+her+a+kiss
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+mount+his+airplane+maybe+for+the+last+time+of+course+i+always+wondered+what+would+happen+if+he+d+kissed+the+airplane+first
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+this+was+real+romance+to+me
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+those+years+which+was+i+have+to+stop+and+think+for+a+moment
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+probably+the+most+advanced+technological+thing+going+on+at+the+time
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=youngster+i+tried+to+get+close+to+this
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+drawing+airplanes+constantly+drawing+airplanes+it+s+the+way+i+got+a+part+of+this+romance
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+of+course+in+a+way+when+i+say+romance
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+mean+in+part+the+aesthetics+of+that+whole+situation+i+think+the+word+is+the+holistic+experience
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=revolving+around+a+product+the+product+was+that+airplane+but+it+built
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+romance+even+the+parts+of+the+airplane
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=had+french+names+the+fuselage+the+empanage+the+nessal
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=from+a+romance+language+so+that+it+was+something+that+just+got+into+your+spirit+it+did+mine
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+decided+i+had+to+get+closer+than+just+drawing
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fantasy+airplanes+i+wanted+to+build+airplanes+so+i+built+model+airplanes
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+found+that+in+doing+the+model+airplanes
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+appearance+drawings+were+not+enough+you+couldn+t+transfer+those
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+wanted+it+to+fly+you+had+to+learn+the+discipline+of+flying
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+had+to+learn+about+aeronautics
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+had+to+learn+what+made+an+airplane+stay+in+the+air+and+of+course+as+a+model+in+those+years+you+couldn+t+control+it+so+it+had+to+be+self
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+had+to+give+up+the+approach+of+drawing+the+fantasy+shapes
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+convert+it+to+technical+drawings
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+shape+of+the+wing+the+shape+of+the+fuselage+and+so+on+and+build
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=an+airplane+over+these+drawings+that+i+knew+followed+some+of+the+principles+of+flying
error: request timeout
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+so+doing+i+could+produce
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+model+that+would+fly+stay+in+the+air
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+had+once+it+was+in+the+air+some+of+this+romance+that+i+was+in+love+with
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+the+act+of+drawing+airplanes+led+me+to
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+had+the+opportunity+to+choose+a+course+in+school+led+me+to+sign+up+for+aeronautical+engineering
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+when+i+was+sitting+in+classes
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+which+no+one+asked+me+to+draw+an+airplane+to+my+surprise
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+had+to+learn+mathematics+and+mechanics+and+all+this+sort+of+thing+i+d+wile+away+my+time+drawing+airplanes+in+the+class
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=looked+over+my+shoulder+he+said+you+draw+very+well
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+should+be+in+the+art+department
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+said+why+he+said+well+for+one+thing+there+are+more+girls+there
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+my+romance+was+temporarily+shifted
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+went+in+to+art+because+they+appreciated+drawing+studied+painting
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=didn+t+do+very+well+at+that+went+through+design+some+architecture
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=eventually+hired+myself+out+as+a+designer+and+for+the+following+twenty+five+years
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=living+in+italy+living+in+america+i+doled+out+a+piece+of+this+romance
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+anybody+who+d+pay+for+it+this+sense+this+aesthetic+feeling+for+the+experience+revolving+around
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+exists+any+of+you+who+rode+the+automobiles+was+it+yesterday+at+the+track
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+you+know+the+romance+revolving+around+around+those+high+performance+high+performance+cars
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+mostly+putting+out+pieces+of
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+romance+and+not+getting+a+lot+back+in+because+design+on+call
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=doesn+t+always+connect+you+with+a+circumstance+in+which+you+can
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=produce+things+of+this+nature+so+after+twenty+five+years+i+began+to+feel+as+though+i+was+running+dry
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+quit+and+i+started+up+a+very+small+operation+went+from+forty+people
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+in+an+effort+to+rediscover+my+innocence
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=where+the+romance+was+i+couldn+t+choose+airplanes+because+they+had+gotten+sort+of+unromantic
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=even+though+i+d+done+a+lot+of+airplane+work+on+the+interiors
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+i+knew+something+about+them+i+d+designed+a+lot+of+chairs+over+the+years+for+tractors+and+trucks
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+submarines+all+kinds+of+things+but+not+office+chairs+so+i+started+doing+that
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+found+that+there+were+ways+to+duplicate+the+same+approach
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=approach+that+i+used+to+use+on+the+airplane+only+this+time
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=instead+of+the+product+being+shaped+by+the+wind+it+was+shaped+by+the+human+body
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+the+discipline+was+as+in+the+airplane+you+learn+a+lot+about+how+to+deal+with+the+air
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+a+chair+you+have+to+learn+a+lot+about+how+to+deal+with+the+body
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+what+the+body+needs+wants+indicates+it+needs
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+s+the+way+ultimately+after+some+ups+and+downs
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ended+up+designing+the+chair+i+m+going+to+show+you+i+should+say+one+more+thing+when+i+was+doing+those
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+did+everything+i+conceived+the+kind+of+airplane
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+built+it+and+i+flew+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+s+the+way+i+work+now
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+started+this+chair+it+was+not+a+preconceived+notion+design
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+don+t+start+with+styling+sketches
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+started+with+a+lot+of+loose+ideas+roughly+eight+or+nine+years+ago
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+loose+ideas+had+something+to+with+what+i+knew+happened+with+people+in+the+office+at
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=work+place+people+who+worked+and+used+task+seating+a
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=great+many+of+them+sitting+in+front+of+a+computer+all+day+long
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=felt+the+one+thing+they+don+t+need+is+a+chair+that+interferes+with+their+main+reason+for+sitting+there
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+took+the+approach+that+the+chair+should+do+as+much+for+them+as+humanly+possible
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+as+mechanistically+possible+so+that+they+didn+t+have+to+fuss+with+it+so+my+idea+was+that
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=instead+of+sitting+down+and+reaching+for+a+lot+of+controls+that+you+would+sit+on+the+chair
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+would+automatically+balance+your+weight+against+the+force+required+to+recline
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+some+of+you+but+you+know+most+good+chairs+do+recline+because+it+s+beneficial+to+open+up+this+joint+between+your+legs+and+your+upper+body+for+better
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+that+if+you+sit+down
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+my+chair+whether+you+re+five+feet+tall+or+six+foot+six+it+always
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+transfers+the+amount+of+force+required+to+recline+in+a+way+that+you+don+t+have+to+look
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ll+tell+you+right+up+front+this+is+a+trade+off
error: request timeout
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+is+you+can+t+accommodate+everybody
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+are+some+very+light+people+some+extremely+heavy+people+maybe+people+with+a+lot+of
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=bulk+up+top+they+begin+to+fall+off+the+end+of+your+chart
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+the+compromise+i+felt+was+in+my+favor+because+most+people
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=don+t+adjust+their+chairs+they+will+sit+in+them+forever+i+had+somebody
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+the+bus+out+to+the+racetrack+tell+me+about+his+sister+calling+him+he+said+she+had+one+of+the+new+better+chairs+she+said+oh+i+love+it
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=come+over+and+look+at+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+came+over+and+looked+at+it+he+reached+down+he
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=pulled+a+lever+and+the+chair+sank+down+she+said+oh+it+s+wonderful+how+did+you+do+that+and+he+showed+her+the+lever+well+that+s+typical
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+a+lot+of+us+working+in+chairs+and+why+should+you
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=get+a+twenty+page+manual+about+how+to+run+a+chair
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+had+one+for+a+wristwatch+once
error: request timeout
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+felt+that+it+was+important+that+you+didn+t+have+to+make+an+adjustment+in+order+to+get+this+kind+of
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=action+the+other+thing+i+felt+was+that+armrests+had+never+really+been
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=properly+approached+from+the+standpoint+of+how+much
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+an+aide+they+could+be
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+felt+it+was+too+much+to+ask+to+have+to+adjust+each+individual+arm+rest+in+order+to+get+it+where+you+wanted
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+spent+a+long+time+i+said+i+worked+on+eight+or+nine+years+on+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+each+of+these+things+went+along+sort+of+in+parallel+but+incrementally+were+a+problem+of+their+own
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=long+time+on+figuring+out+how+to+move+the+arms+over+a+much+greater+arc+that+is+up+and+down
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+make+them+a+lot+easier+so+that+you+didn+t+have+to+use+a+button
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+after+many+trials+many+failures+we+came+up+with+a+very+simple+arrangement
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+which+we+could+just+move+one+arm+or+the+other+and+they+go+up
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+stop+where+you+want+you+can+put+them+down+essentially+out+of+the+way+no+arms+at+all+or+you+can+pull+them+up+where+you+want+them
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+was+another+thing+that+i+felt+while+not+nearly+as+romantic+as+cary+grant
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=grab+a+little+bit+of+aesthetic
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=operation+aesthetic+performance+into+a+product
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+was+of+interest+to+me+was+the+fact+that+reclining+was+a+very+important+factor+and+the+more+you+can+recline
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+a+way+the+better+it+is
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+more+the+angle+between+here+and+here+opens+up+and+nowadays+with+a+screen+in+front+of+you+you+don+t+want+to+have+your+eye+drop+too+far+in+the+recline+so+we+keep+it+at+more+or+less+the+same+level
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+you+transfer+weight+off+your+tailbones+would+everybody+put+their+hand+under+their+bottom+and+feel+their+tailbone
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+feel+that+bone+under+there+just+your+own
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+is+two+of+them+one+on+either
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+the+weight+of+your+upper+torso+your+arms+your+head
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=goes+right+down+through+your+back+your+spine+into+those+bones+when+you+sit+and+that+s+a+lot+of+load
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=just+relieving+your+arms+with+armrests+takes+twenty+percent+of+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+your+spine+is+not+held+in+a+good+position+will+help+bend+your+spine+the+wrong+way+and+so+on
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+to+unload+that+great+weight
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+recline+when+you+recline+you+take+away+a+lot+of+that+load+off+your+bottom+end+and+transfer+it+to+your+back+at+the+same+time+as
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=say+you+open+up+this+joint+and+breathability+is+good+but+to+do+that
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=amount+of+recline+it+gets+to+the+point+where+you+need+a+headrest
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=automatically+hold+your+head+in+a+vertical+position+see+as+i+recline
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+head+says+more+or+less+vertical+and+if+you+re+reclined+a+great+deal
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+have+to+use+muscle+force
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+hold+your+head+there+so+that+s+where+a+headrest+comes+in+now+headrest+is+a+challenge+because+you+want+it+to
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=adjust+enough+so+that+it+will+fit
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know+a+tall+guy+and+a+short+girl+so+here+we+are
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+got+five+inches+of+adjustment+here+in+order+to+get+the+headrest+in+the+right+place+but+then+i+knew
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+offices+where+there+were+chairs+with+headrests
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+nobody+would+ever+bother+to+reach+back+and+turn+a+knob
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+need+it+in+a+different+position+when+you+re+upright+then+when+you+re+reclined
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+knew+that+had+to+be+solved+and+had+to+be+automatic+so+if+you+watch+this+chair+as+i+recline
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ideally+you+want+to+put+the+head+support+in+the+cranial+area+right+there
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+part+of+it+took+a+long+time+to+work+out+and+there+is+a+variety+of+other+things+the+shape+of+the+cushions+the
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+stole+the+idea+from+bicycle+seats+and+put+gel+in+the+cushions+and+in+the+armrests+to+absorb+absorb
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=point+load+distributes+the+loading+so+you+don+t+get+hard+spots+you+cant+hit
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+did+want+to+demonstrate+the+fact+that+the+chair+can+accommodate+people
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=while+you+re+sitting+in+it+you+can+adjust+it+down+for+the+five+footer
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+the+six+foot+six+guy
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+within+the+scope+of+a+few+simple+adjustments
found 0 videos: []
error: no video is found.
sleep 2 seconds to avoid blocking
------<1624>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NigelMarsh_2010X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+would+start+with+a+simple+request+i+d+like
found 1 videos: [['/talks/jer_thorp_make_data_more_human', '2012']]
selected: /talks/jer_thorp_make_data_more_human
sleep 2 seconds to avoid blocking
------<1625>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NikolaiBegg_2013X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+first+time+i+stood+in+the+operating+room+and+watched+a+real+surgery++i+had+no+idea+what+to+expect
found 1 videos: [['/talks/nikolai_begg_a_tool_to_fix_one_of_the_most_dangerous_moments_in_surgery', '2014']]
selected: /talks/nikolai_begg_a_tool_to_fix_one_of_the_most_dangerous_moments_in_surgery
sleep 4 seconds to avoid blocking
------<1626>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NiloferMerchant_2013.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+you+re+doing+right+now++at+this+very+moment+is+killing+you+more+than+cars+or+the+internet
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+even+that+little+mobile+device+we+keep+talking+about+the+technology+you+re+using+the+most+almost+every+day+is+this
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=nowadays+people+are+sitting+nine+point+three+hours+a+day+which+is+more+than+we+re+sleeping+at+seven+point+seven+hours
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sitting+is+so+incredibly+prevalent+we+don+t+even+question+how+much+we+re+doing+it+and+because
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=everyone+else+is+doing+it+it+doesn+t+even+occur+to+us+that+it+s+not+okay
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+that+way+sitting+has+become+the+smoking+of+our+generation
error: request timeout
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=health+consequences+to+this++scary+ones++besides+the+waist+things+like
found 1 videos: [['/talks/nilofer_merchant_got_a_meeting_take_a_walk', '2013']]
selected: /talks/nilofer_merchant_got_a_meeting_take_a_walk
sleep 1 seconds to avoid blocking
------<1627>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NinaFedoroff_2016X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+come+from+what+do+we+do+about+it+well+for+most+adults+it+s+a+relatively+mild+disease+a+little+fever+a+little+headache
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=joint+pain++maybe+a+rash+in+fact+most+people+who+get+it+don+t+even+know+they+ve+had+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+the+more+we+find+out+about+the+zika+virus+the+more+terrifying+it+becomes+for+example+doctors+have+noticed
found 1 videos: [['/talks/nina_fedoroff_a_secret_weapon_against_zika_and_other_mosquito_borne_diseases', '2017']]
selected: /talks/nina_fedoroff_a_secret_weapon_against_zika_and_other_mosquito_borne_diseases
sleep 4 seconds to avoid blocking
------<1628>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NinaJablonski_2009.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=charles+darwin+was+born+a+very+lightly+pigmented+man+in+a
found 1 videos: [['/talks/nina_jablonski_skin_color_is_an_illusion', '2009']]
selected: /talks/nina_jablonski_skin_color_is_an_illusion
sleep 5 seconds to avoid blocking
------<1629>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NinaTandon_2011U.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+work+with+really+amazing+little+itty+bitty+creatures
found 1 videos: [['/talks/nina_tandon_caring_for_engineered_tissue', '2011']]
selected: /talks/nina_tandon_caring_for_engineered_tissue
sleep 4 seconds to avoid blocking
------<1630>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NinaTandon_2012G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+video+of+some+of+the+models+i+work+with+they+re+all+the+perfect+size+and+they+don+t+have+an+ounce+of+fat
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=did+i+mention+they+re+gorgeous++and+they+re+scientific+models
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+you+might+have+guessed+i+m+a+tissue+engineer++and+this+is+a+video+of+some+of+the+beating+heart+that+i+ve+engineered+in+the+lab
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+one+day+we+hope+that+these+tissues+can+serve+as+replacement+parts+for+the+human+body
found 1 videos: [['/talks/nina_tandon_could_tissue_engineering_mean_personalized_medicine', '2012']]
selected: /talks/nina_tandon_could_tissue_engineering_mean_personalized_medicine
sleep 3 seconds to avoid blocking
------<1631>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NirmalyaKumar_2012X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=over+the+last+two+decades+india+has+become+a+global+hub+for+software+development+and
found 1 videos: [['/talks/nirmalya_kumar_india_s_invisible_innovation', '2012']]
selected: /talks/nirmalya_kumar_india_s_invisible_innovation
sleep 3 seconds to avoid blocking
------<1632>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NizarIbrahim_2014Y.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+re+beautiful++and+there+s+very+little+we+know+about+them
found 1 videos: [['/talks/gregoire_courtine_the_paralyzed_rat_that_walked', '2013']]
selected: /talks/gregoire_courtine_the_paralyzed_rat_that_walked
sleep 3 seconds to avoid blocking
------<1633>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NoahFeldman_2003.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+argue+to+you+that+in+fact
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+are+the+two+primary+factors+not+the+sole+but+overwhelmingly+the+primary+factors+which+are+driving+towards+a+war+which+looks+extremely+likely+bordering+on+the+inevitable+at+this+point+whether+one+is+in+favor+of+that+or+not
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+in+fact+themselves+better+conceptualized+as+kinds+of+technology
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+subject+to+kinds+of+questions+that+we+regularly+consider+in+the+space+of+conceptual+design
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+let+s+focus+on+the+political+system+in+particular+question+here+which+is+the+system+of+democracy++democracy+as+a+type+of+politics
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+a+technology+for+the+control+and+deployment+of+power
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+deploy+power+in+a+wide+range+of+ways
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+famous+ones+despotism+is+a+good+one+anarchy+is+a+way+to+not+deploy+the+power+in+any+organized+way+to+do+it+in+a+radically+diffused+fashion+and+democracy+is+a+set+of+technologies
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+have+the+effect+of+in+principle++diffusing+the+power+source+to+a+large+number+of
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+a+smaller+group+of+people+who+govern++and+who+themselves+are+in+principle++authorized+to+govern+by+virtue+of+what+the+broader+broader+public+has+done
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+consider+religion+in+this+case+islam+which+is+the+religion
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+in+some+direct+sense+can+be+said+to+be+precipitating+what+we+re+about+to+enter+let+me+say+parenthetically+why+i+think+that+s+the+case+because+i+think+it+s+a+potentially+controversial
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+would+put+it+in+the+following+equation+no+nine+eleven++no+war
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+the+beginning+of+the+bush+administration+when+president+bush+now+president+bush+was+running+for+president
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+made+it+very+clear+that+he+was+not+interested+in+intervening+broadly+in+the+world+in+fact++the+trend+was+for+disengagement+with+the+rest+of+the+world
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+why+we+heard+about+the+backing+away+from+the+kyoto+protocol+for+example
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=after+nine+eleven++the+tables+were+turned++and
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+president+decided+with+his+advisors+to+undertake+some+kind+of+an+active
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=intervention+in+the+world+around+us
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+began+with+afghanistan+and+when+afghanistan+went+extremely+smoothly+and+quickly+a+decision+was+made+through+the+technology+of+democracy
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=again+notice+not+a+perfect+technology+but+through+the+technology+of+democracy+that+this+administration+was+going+to+push+in+the+direction+of+another+war+this+time+a+war+in+iraq
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+reason+i+begin+by+saying+no+nine+eleven
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=no+war+is+that+we+have+to+acknowledge+that+islam
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+interpreted+by+a+very+very+small+extremely+radical+group+of+people
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+a+precipitating+cause+of+the+nine+eleven+attacks+the+precipitating+cause+of+the+nine+eleven+attacks+and+as+a+consequence+at+one+degree+of
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=precipitating+cause+of+the+coming+war+that+we+re+about+to+be+engaged+in+and+i+would+add+that+bin+laden+and+his+followers+are+consciously+devoted+to+the+goal+of+creating+a+conflict+between
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=democracy+or+at+least+capitalist+democracy+on+the+one+hand++and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+world+of+islam+as+they+see+and+define+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+how+is+islam+a+technology+in+this+conceptual+apparatus+well+it+s+a+technology+for+first+salvation+in+its+most+basic+sense+it+s+meant+to+be+a+mechanism+for+construing+the+universe+in+a
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+will+bring+about+the+salvation+of+the+individual+believer
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+it+s+also+meant+by+the+islamists+and+i+use+that+term+to+mean+people+who+believe+that+islam+they+follow+the+slogan+islam+is+the+answer+to+a+wide+range+of+questions+whether+they+re+social+or+political+or+personal+or+spiritual
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=within+the+sphere+of+people+who+have+that+view++and+it+s+a+large+number+of+people+in+the+muslim+world+who+disagree+with+bin+laden+in+his+application+but+agree+that+islam+is+the+answer+islam+represents+a+way+of+engaging+the
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=world+through+which+one+can+achieve+certain+desirable+goals+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+goals+from+the+perspective+of+muslims+are+in+principle++peace++justice+and+equality
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+on+terms+that+correspond+to+traditional+muslim+teachings
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+i+don+t+want+to+leave+a+misimpression+by+identifying+either+of+these+propositions+rather+either+of+these+phenomena+democracy+or+islam+as+technologies
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=don+t+want+to+suggest+that+they+are+a+single+thing+that+you+can+point+to+and+i+think+a+good+way+to+prove+this
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+simply+to+demonstrate+to+you+what+my+thought+process+was+when+deciding+what+to+put+on+the+on+the+wall+behind+me+when+i+spoke
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+ran+immediately+into+a+conceptual+problem+you+can+t+show+a+picture+of+democracy
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+show+a+slogan++or+a+symbol++or+a+sign+that+stands+for+democracy+you+can+show+the+capitol+i+had+the+same+problem+when+i+was+designing+the+cover+of+my+forthcoming+book+in+fact+what+do+you+put+on+the+cover
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+show+democracy+and+the+same+problem+with+respect+to+islam++you+can+show+a+mosque+or+you+can+show+worshippers++but+there+s+not+a+straightforward+way+of+depicting+islam+that+s+because+these+are+the+kinds+of+concepts+that+are+not+susceptible+to+easy+representation
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+it+follows+from+that+that+they+re+deeply+contestable
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+follows+from+that+that+all+of+the+people+in+the+world+who+say+that+they+are+muslims
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+principle+subscribe+to+a+wide+range+of+different+interpretations+of+what+islam+really+is++and+the+same+is+true+of+democracy
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+word+hope+which+one+could+look+up+in+a+dictionary+and+derive+origins+for+and+perhaps+reach+some+kind+of+a+consensual+use+analysis+these+are+essentially+contested+concepts+they+re+ideas
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+which+people+disagree+in+the+deepest+possible+sense++and+as+a+consequence+of+this+disagreement
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=very+very+difficult+for+anyone+to+say+i+have+the+right+version+of+islam+you+know+post+9+eleven+we+were+treated+to+the+amazing+phenomenon+of+george+w+bush+saying+islam+means+peace
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well++so+says+george+w+bush+other+people+would+say+it+means+something+else+some+people+would+say+that+islam+means+submission+other+people+would+say+it+means+an+acknowledgement+or+recognition+of+god+s
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+wide+range+of+different+things+that+islam+can+mean+and+ostensibly+the+same+is+true+of+democracy
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+people+say+that+democracy+consists+basically+in+elections
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=other+people+say+no+that+s+not+enough+there+have+to+be+basic+liberal+rights+free+speech+free+press+equality+of+citizens+these+are+contested+points+and+it+s+impossible+to+answer+them+by+saying+ah+ha+i+looked+in+the+right+place+and+i+found+out+what+these+concepts+mean
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+at+present+in+a+moment+of+great+confrontation+what+does+that+mean
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well++you+could+fit+it+into+a+range+of+different+interpretative+frameworks++you+could+begin+with+the+one+that+we+began+with+a+couple+of+days+ago+which+was+fear
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fear+is+not+an+implausible+reaction+with+a+war+just+around+the+corner
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+with+a+very+very+high+likelihood+that+many+many+people+are+going+to+die+as+a+consequence+of+this+confrontation
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=many+people+in+the+muslim+world+do+not+want
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=many+many+people+in+the+american+democracy+do+not+want+many+people+elsewhere+in+the+world+do+not+want+but+which+nonetheless+is+favored+by+a+large+enough+number+of+people+at+least+in+the+relevant
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=space+which+is+the+united+states
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+actually+go+forward++so+fear+is+not+a+crazy+response+at+all+and+i+think+that+that+s+in+fact++probably+the+first+appropriate+response
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+i+want+to+suggest+to+you+though+in+the+next+couple+of+minutes
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+that+there+s+also+a+hopeful+response+to+this+and+the+hopeful+response
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+islam+and+democracy+are+technologies++and+by+virtue+of+being+technologies++they+re+manipulable
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+re+manipulable+in+ways+that+can+produce+some+extremely+positive+outcomes+what+do+i+have+in+mind
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+all+over+the+muslim+world
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+are+people+who+take+islam+deeply+seriously++people+who+care+about+islam+for+whom+it+s+a+source+either+of+faith++or+of+civilization+or+of+deep+values++or+just+a+source+of
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=powerful+personal+identity+who+think+and+are+saying+loudly+that+islam+and+democracy+are+in+fact+not+in+conflict+but+are+in+fact+deeply+compatible
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+these+muslims+and+it+s+the+vast+majority+of+muslims
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=disagree+profoundly+with+bin+laden+s+approach++profoundly
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+furthermore+think+overwhelmingly+again+one+can+t+speak+of+every+person+but+overwhelmingly+and+one+can+find+this+by+reading+any+of+the+sources+that+they
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+produced+and+they+re+all+over+the+internet+and+in+all+sorts+of+languages
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+can+see+that+they+re+saying+that+their+concern+in+their+own+countries+is+primarily+to+free+up
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=free+up+themselves+to+have+choice+in+the+spheres+of+personal+life
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+sphere+of+economics+in+the+sphere+of+politics+and+yes+in+the+sphere+of+religion+which
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=closely+regulated+in+most+of+the+muslim+world+and+many+of+these+muslims+further+say+that+their+disagreement+with+the+united+states
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+that+it+in+the+past+and+still+in+the+present+has+sided
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+autocratic+rulers+in+the+muslim+world+in+order+to
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=promote+america+s+short+term+interests++now+during+the+cold+war+that+may+have+been+a+defensible+position+for+the+united+states+to+take+that+s+an
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+may+be+that+there+was+a+a+great+war+to+be+fought+between+west+and+east+and+it+was+necessary+on+the+axis+of+democracy+against+communism+and+it+was+necessary+in+some+way+for+these+to+contradict+each+other+and+as+a+consequence+you+have+to+make+friends+wherever+you+can+get+them
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+now+that+the+cold+war+is+over
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+nearly+universal+consensus+in+the+muslim+world+and+pretty+close+to+the+same+here+in+the+united+states+if+you+talk+to+people+and+ask+them
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+in+principle+there+s+no+reason+that+democracy+and+islam+cannot++co+exist
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+see+this+among+activist+practical+muslims+like+the+muslims+who+are+presently+the+elected+parliamentary+democratic+government+of+turkey
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+are+behaving+pragmatically+not+ideologically
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+are+promoting+their+own+religious+values+who+are+elected+by+their+own+people+because+they+were+perceived+as+honest+and+sincere+because+of+their+religious+values
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+who+do+not+think+that+islam+and+a+democratic+system+of+governance+are+fundamentally+incompatible
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+you+may+say++but+surely
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+we+ve+seen+on+television+about+saudi+islam+convinces+us+that+it+can+t+possibly+be+compatible+with+what+we+consider+the+core+of+democracy
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=namely+free+political+choice+basic+liberty+and+basic+equality++but+i+m+here+to+tell+you
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+technologies+are+more+malleable+than+that+i+m+here+to+tell+you+that+many+many+muslims+believe
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+vast+majority+in+fact+in+fact+i+think+i+would+go+so+far+as+to+say+that+many+muslims+in+saudi+arabia+believe
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+the+core+values+of+islam+namely+acknowledgement+of+god+s+sovereignty
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+basic+human+equality+before+god+are+themselves+compatible+with+liberty+equality+and+free+political+choice
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+there+are+muslims+many+muslims+out+there+who+are+saying+precisely+this
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+re+making+this+argument+wherever+they+re+permitted+to+make+it+but+their+governments++needless+to+say+are+relatively+threatened+by+this+and+for+the+most+part+try+to+stop+them+from+making+this+argument+so+for+example+a+group
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+young+activists+in+egypt+try+to+form+a+party+known+as+the+center+party+which+advocated+the+compatibility+of+islam+and+democracy+they+weren+t+even+allowed+to+form+a+party
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+were+actually+blocked+from+even+forming+a+party+under+the+political+system+there+why+because+they+would+have+done+extraordinarily+well
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+most+recent+elections+in+the+muslim+world+which+are+those+in+pakistan+those+in+morocco+and+those+in+turkey+in+each
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+who+present+themselves+to+the+electorate+as+islamic+democrats+were+far+and+away+the+most+successful++vote+getters+every+place+they+were+allowed+to+run+freely
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+in+morocco+for+example+they+finished+third+in+the+political+race+but+they+were+only+allowed+to+contest+half+the+seats++so+had+they+contested+a+larger+number+of+the+seats+they+would+have+done+even+better
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+what+i+want+to+suggest+to+you+is+that+the+reason+for+hope+in+this+case+is+that+we+are
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+the+edge+of+a+real+transformation+in+the+muslim+world
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+s+a+transformation+in+which+many+sincerely+believing+muslims+who+care+very+very+deeply+about+their+traditions+who+do+not+want+to
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=believe+through+the+malleability+of+the+technology+of+democracy+and+the+malleability+and+synthetic+capability+of+the+technology+of+islam
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+these+two+ideas+can+work+together
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+does+it+mean+to+say+that+there+s+an+islamic+democracy++well+one+thing+is+it+s+not+going+to+look+identical+to+democracy+as+we+know+it+in+the+united+states++that+may+be+a+good+thing
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+light+of+some+of+the+criticisms+we+ve+heard+today+for+example+in+the+regulatory+context+of+what+democracy+produces
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+will+also+not+look+exactly+the+way+either+the+people+in+this+room++or+muslims+out+in+the+rest+of+the+world+i+don+t+mean+to+imply+there
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+will+be+transformative+of+islam+as+well
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+as+a+result+of+this+convergence+this+synthetic+attempt+to+make+sense+of+these+two+ideas+together++there+s+a+real+possibility
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+instead+of+a+clash+of+islamic+civilization+if+there+is+such+a+thing+and+democratic+civilization+if+there+is+such+a+thing+we+ll+in+fact+have+close+compatibility
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+i+began+with+the+war+because+it+s+the+elephant+in+the+room+and+you+can+t+pretend+that+there
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+to+be+a+war+if+you+re+talking+about+these+issues+the+war+has+tremendous+risks+for+the+model+that+i+m+describing
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+it+s+very+possible+that+as+a+consequence+of+a+war+many+muslims+will+conclude+that+the+united+states+is+not+the+kind+of+place+that+they+want+to+emulate+with+respect+to+its+forms+of+political+government
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+the+other+hand++there+s+a+further+possibility+that+many
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=swept+up+in+the+fever+of+a+war
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=will+say+and+feel+and+think+that+islam+is+the+enemy+somehow+that+islam+ought+to+be+construed+as+the+enemy+and+even+though+for+political+tactical+reasons+the+president+has+been+very+very+good+about+saying+that+islam+is+not+the+enemy
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=nonetheless+there+s+a+natural+impulse+when+one+enters+war
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+think+of+the+other+side+as+an+enemy++and+one+furthermore+has+the+impulse+to+generalize+as+much+as+possible+in+defining+who+that+enemy+is+so+the+risks+are+very+great
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+aftermath+of+a+war+are+also+not+to+be+underestimated
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=even+by+and+i+would+say+especially+by+people+who+are+deeply+skeptical+about+whether+we+should+go+to+war+in+the+first+place
error: request timeout
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ought+to+realize+that+if+a+war+happens++it+cannot+be+the+right+strategy
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+morally+to+say+after+the+war+well++let+s+let+it+all+run+itself+out+and+play+out+however+it+wants+to+play+out+because+we+opposed+the+war+in+the+first+place
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+not+the+way+human+circumstances+operate+you+face+the+circumstances+you+have+in+front+of+you+and+you+go+forward
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well++what+i+m+here+to+say+then+is+for+people+who+are+skeptical+about+the+war+it+s+especially+important+to+recognize
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+in+the+aftermath+of+the+war+there+is+a+possibility+for+the+government+of+the+united+states+and+the+muslim+peoples
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+create+real+forms+of+government+that+are+truly+democratic+and+also+truly+islamic+and+it+is+crucial+it+is+crucial+in+a+practical+activist+way
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+people+who+care+about+these+issues
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+make+sure+that+within+the+technology+of+democracy+in+this+system+they+exercise+their+preferences+their+choices+and+their+voices
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+encourage+that+outcome++that+s+a+hopeful+message+but+it+s+a+message+that+s+hopeful
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=only+if+you+understand+it+as+incurring+serious+obligation+for+all+of+us
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+think+that+we+are+capable+of+taking+on+that+obligation+but+only+if+we+put+what+we+can+into+it+and+if+we+do+then+i+don+t+think+that+the+hope+will+be+unwarranted+altogether
error: request timeout
error: no video is found.
sleep 5 seconds to avoid blocking
------<1634>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NoahWilsonRich_2012X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+man+is+wearing+what+we+call+a+bee+beard
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+beard+full+of+bees+now+this+is+what+many+of+you+might+picture+when+you+think+about+honeybees
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+maybe+anything+that+has+more+legs+than+two++and+let+me+start+by+telling+you+i+gotcha++i+understand+that+but
found 1 videos: [['/talks/noah_wilson_rich_every_city_needs_healthy_honey_bees', '2012']]
selected: /talks/noah_wilson_rich_every_city_needs_healthy_honey_bees
sleep 2 seconds to avoid blocking
------<1635>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NoelMerz_2011X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+you+women+will+be+impacted+by+cardiovascular+disease+in+your+lifetime
found 1 videos: [['/talks/noel_bairey_merz_the_single_biggest_health_threat_women_face', '2012']]
selected: /talks/noel_bairey_merz_the_single_biggest_health_threat_women_face
sleep 1 seconds to avoid blocking
------<1636>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NonnydelaPena_2015W.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+if+i+could+present+you+a+story+that+you+would+remember+with+your+entire+body+and+not+just+with+your+mind
found 6 videos: [['/talks/nonny_de_la_pena_the_future_of_news_virtual_reality', '2015'], ['/talks/yuval_noah_harari_nationalism_vs_globalism_the_new_political_divide', '2017'], ['/talks/peter_attia_is_the_obesity_crisis_hiding_a_bigger_problem', '2013'], ['/talks/jarrett_j_krosoczka_how_a_boy_became_an_artist', '2013'], ['/talks/naomi_mcdougall_jones_what_it_s_like_to_be_a_woman_in_hollywood', '2017'], ['/talks/ole_scheeren_why_great_architecture_should_tell_a_story', '2016']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+whole+life+as+a+journalist+i+ve+really+been+compelled+to+try+to+make+stories+that+can+make+a+difference+and+maybe+inspire+people+to+care
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+worked+in+print++i+ve+worked+in+documentary+i+ve+worked+in+broadcast
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+it+really+wasn+t+until+i+got+involved+with+virtual+reality+that+i+started+seeing+these+really+intense+authentic+reactions+from+people+that+really+blew+my+mind
error: request timeout
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+deal+is+that+with+vr+virtual+reality+i+can+put+you+on+scene
found 1 videos: [['/talks/nonny_de_la_pena_the_future_of_news_virtual_reality', '2015']]
selected: /talks/nonny_de_la_pena_the_future_of_news_virtual_reality
sleep 2 seconds to avoid blocking
------<1637>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NoraYorkWHATIWANT_2006S.stm
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=begin+this+song+i+wrote+about+ceaseless+yearning+and+never+ending+want
found 1 videos: [['/talks/nora_york_singing_what_i_want', '2007']]
selected: /talks/nora_york_singing_what_i_want
sleep 3 seconds to avoid blocking
------<1638>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NoreenaHertz_2010S.stm
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+president+of+the+united+states+is+sitting+in+the+oval+office++assessing+whether+or+not+to+strike+al+qaeda
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+yemen+at+number+ten+downing+street+david+cameron
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+trying+to+work+out+whether+to+cut+more+public+sector+jobs
found 2 videos: [['/talks/noreena_hertz_how_to_use_experts_and_when_not_to', '2011'], ['/talks/melinda_gates_what_nonprofits_can_learn_from_coca_cola', '2010']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+order+to+stave+off+a+double+dip+recession+in+madrid++maria+gonzalez
found 1 videos: [['/talks/noreena_hertz_how_to_use_experts_and_when_not_to', '2011']]
selected: /talks/noreena_hertz_how_to_use_experts_and_when_not_to
sleep 4 seconds to avoid blocking
------<1639>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NormanFoster_2007P.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+an+architect+you+design+for
found 10 videos: [['/talks/william_mcdonough_cradle_to_cradle_design', '2007'], ['/talks/norman_foster_my_green_agenda_for_architecture', '2008'], ['/talks/thom_mayne_how_architecture_can_connect_us', '2007'], ['/talks/joshua_prince_ramus_behind_the_design_of_seattle_s_library', '2006'], ['/talks/moshe_safdie_building_uniqueness', '2008'], ['/talks/frank_gehry_my_days_as_a_young_rebel', '2008'], ['/talks/jacek_utko_can_design_save_newspapers', '2009'], ['/talks/bjarke_ingels_3_warp_speed_architecture_tales', '2009'], ['/talks/cameron_sinclair_my_wish_a_call_for_open_source_architecture', '2006'], ['/talks/paula_scher_great_design_is_serious_not_solemn', '2009']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+present+with+an+awareness+of+the+past++for+a+future+which+is+essentially
found 2 videos: [['/talks/norman_foster_my_green_agenda_for_architecture', '2008'], ['/talks/eve_ensler_what_security_means_to_me', '2008']]
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+most+important+agenda+and+issue+of+the+day++and+i+d+like+to+share+some+experience
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=over+the+last+forty+years+we+celebrate+our+fortieth+anniversary+this+year+and+and+to+explore+and+to+touch+on+some
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=observations+about+the+nature+of+sustainability
found 1 videos: [['/talks/norman_foster_my_green_agenda_for_architecture', '2008']]
selected: /talks/norman_foster_my_green_agenda_for_architecture
sleep 5 seconds to avoid blocking
------<1640>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NormanLear_2016.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+assume+that+norman+doesn+t+need+much+of+an+introduction+but+ted+s+audience+is+global+it+s+diverse++so+i+ve+been+tasked+with
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=starting+with+his+bio+which+could+easily+take+up+the+entire+eighteen+minutes+so+instead+we+re
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=born+in+new+haven+connecticut+your+father+was+a+con+man+i+got+that+right
found 1 videos: [['/talks/norman_lear_an_entertainment_icon_on_living_a_life_of_meaning', '2016']]
selected: /talks/norman_lear_an_entertainment_icon_on_living_a_life_of_meaning
sleep 5 seconds to avoid blocking
------<1641>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NormanSpack_2013X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+you+all+to+think+about+the+third+word+that+was+ever+said+about+you
found 12 videos: [['/talks/boyd_varty_what_i_learned_from_nelson_mandela', '2013'], ['/talks/norman_spack_how_i_help_transgender_teens_become_who_they_want_to_be', '2014'], ['/talks/jean_paul_mari_the_chilling_aftershock_of_a_brush_with_death', '2015'], ['/talks/deb_roy_the_birth_of_a_word', '2011'], ['/talks/adam_spencer_why_i_fell_in_love_with_monster_prime_numbers', '2013'], ['/talks/regina_dugan_from_mach_20_glider_to_hummingbird_drone', '2012'], ['/talks/david_steindl_rast_want_to_be_happy_be_grateful', '2013'], ['/talks/ed_gavagan_a_story_about_knots_and_surgeons', '2012'], ['/talks/roger_mcnamee_6_ways_to_save_the_internet', '2011'], ['/talks/sarah_kay_if_i_should_have_a_daughter', '2011'], ['/talks/hilary_cottam_social_services_are_broken_how_we_can_fix_them', '2015'], ['/talks/leslie_t_chang_the_voices_of_china_s_workers', '2012']]
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+shows+you+that+i+also+deal+with+issues+where+there+s+not+certainty+of+whether+it+s
found 1 videos: [['/talks/morgan_spurlock_the_greatest_ted_talk_ever_sold', '2011']]
selected: /talks/morgan_spurlock_the_greatest_ted_talk_ever_sold
sleep 5 seconds to avoid blocking
------<1642>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NoyThrupkaew_2015.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ten+years+ago+i+went+through+a+little+bit+of+a+hard+time
found 6 videos: [['/talks/abe_davis_new_video_technology_that_reveals_an_object_s_hidden_properties', '2015'], ['/talks/jorge_drexler_poetry_music_and_identity', '2017'], ['/talks/noy_thrupkaew_human_trafficking_is_all_around_you_this_is_how_it_works', '2015'], ['/talks/al_gore_the_case_for_optimism_on_climate_change', '2016'], ['/talks/adam_spencer_why_i_fell_in_love_with_monster_prime_numbers', '2013'], ['/talks/jimmy_nelson_gorgeous_portraits_of_the_world_s_vanishing_people', '2015']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+decided+to+go+see+a+therapist+i+had+been+seeing+her+for+a+few+months+when+she+looked+at+me+one+day+and+said+who+actually+raised+you+until+you+were+three
found 1 videos: [['/talks/noy_thrupkaew_human_trafficking_is_all_around_you_this_is_how_it_works', '2015']]
selected: /talks/noy_thrupkaew_human_trafficking_is_all_around_you_this_is_how_it_works
sleep 1 seconds to avoid blocking
------<1643>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/NuclearDebate_2010.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=debate+is+over+the+proposition+what+the+world+needs+now+is+nuclear+energy
found 1 videos: [['/talks/stewart_brand_mark_z_jacobson_debate_does_the_world_need_nuclear_energy', '2010']]
selected: /talks/stewart_brand_mark_z_jacobson_debate_does_the_world_need_nuclear_energy
sleep 3 seconds to avoid blocking
------<1644>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/OdedShoseyov_2016S.stm
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+have+to+admit+that+our+performance+is+not+great+the+machines+we+build+continue+to+suffer+from+mechanical+failures
found 1 videos: [['/talks/oded_shoseyov_how_we_re_harnessing_nature_s_hidden_superpowers', '2016']]
selected: /talks/oded_shoseyov_how_we_re_harnessing_nature_s_hidden_superpowers
sleep 4 seconds to avoid blocking
------<1645>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/OKGo_2017.stm
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+ve+been+together+as+a+band+since+one+thousand+nine+hundred+and+ninety+eight
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+in+the+last+decade+we+ve+become+known+as+much+for+the+elaborate+music+videos+like+the+one+we+just+saw+as+for+the+songs+they+accompany++so+we+will+play
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=along+with+another+one+of+those+in+a+few+minutes+but+in+the+meantime+we+want+to+address+this+question+that+we+get+asked+all+the+time
found 2 videos: [['/talks/ok_go_how_to_find_a_wonderful_idea', '2017'], ['/talks/the_ted_interview_sir_ken_robinson_still_wants_an_education_revolution', '2018']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+we++we+ve+really+never+come+up+with+an+adequate+answer+for+it+and+that+is+how+do+we+think+of+those+ideas
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+videos+are+not+all+rube+goldberg+machines+by+the+way+last+year+we+did+a+dance+in+zero+gravity++and+once+we+set+up
found 1 videos: [['/talks/ok_go_how_to_find_a_wonderful_idea', '2017']]
selected: /talks/ok_go_how_to_find_a_wonderful_idea
sleep 4 seconds to avoid blocking
------<1646>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/OlafurEliasson_2009.stm
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+this+snow+just+last+weekend
found 3 videos: [['/talks/olafur_eliasson_playing_with_space_and_light', '2009'], ['/talks/saul_griffith_high_altitude_wind_energy_from_kites', '2009'], ['/talks/c_k_williams_poetry_of_youth_and_age', '2009']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+studio+we+do+a+lot+of+experiments++i+would+consider+the+studio+more+like+a+laboratory+i+have+occasional+meetings+with+scientists+and+i+have+an+academy
found 1 videos: [['/talks/olafur_eliasson_playing_with_space_and_light', '2009']]
selected: /talks/olafur_eliasson_playing_with_space_and_light
sleep 4 seconds to avoid blocking
------<1647>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/OleScheeren_2015G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+much+of+the+past+century+architecture+was+under+the+spell+of+a+famous+doctrine
found 1 videos: [['/talks/ole_scheeren_why_great_architecture_should_tell_a_story', '2016']]
selected: /talks/ole_scheeren_why_great_architecture_should_tell_a_story
sleep 3 seconds to avoid blocking
------<1648>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/OliverSacks_2009.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+see+with+the+eyes++but+we+see+with+the+brain+as+well++and+seeing+with+the+brain+is+often+called+imagination
found 2 videos: [['/talks/oliver_sacks_what_hallucination_reveals_about_our_minds', '2009'], ['/talks/iain_hutchison_saving_faces_a_facial_surgeon_s_craft', '2011']]
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+the+landscapes+of+our+own+imagination+our+inscapes+we+ve+lived+with+them+all+our+lives
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+there+are+also+hallucinations+as+well
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+hallucinations+are+completely+different+they+don+t+seem+to+be+of+our+creation++they+don+t+seem+to+be+under+our+control++they+seem+to+come+from+the+outside
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+to+mimic+perception++so+i+am+going+to+be+talking
found 1 videos: [['/talks/oliver_sacks_what_hallucination_reveals_about_our_minds', '2009']]
selected: /talks/oliver_sacks_what_hallucination_reveals_about_our_minds
sleep 5 seconds to avoid blocking
------<1649>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/OlivierScalabre_2016S.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+s+a+big+deal++our+global+economy+stops+growing++and+it+s+not+new
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=actually+declined+for+the+last+fifty+years++if+we+continue+like+this+we+need+to+learn+how+to+live+in+a+world+with+no+growth+in+the+next+decade
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+when+the+economy+doesn+t+grow++our+children+don+t+get+better+lives++what+s+even+scarier
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+that+when+the+pie+does+not+grow++each+of+us+get+a+smaller+piece+we+re+then+ready+to+fight+for+a+bigger+one
found 1 videos: [['/talks/olivier_scalabre_the_next_manufacturing_revolution_is_here', '2016']]
selected: /talks/olivier_scalabre_the_next_manufacturing_revolution_is_here
sleep 5 seconds to avoid blocking
------<1650>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/OmarAhmad_2010U.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+the+things+that+defines+a+tedster
found 4 videos: [['/talks/omar_ahmad_political_change_with_pen_and_paper', '2010'], ['/talks/stefan_sagmeister_the_power_of_time_off', '2009'], ['/talks/chip_conley_measuring_what_makes_life_worthwhile', '2010'], ['/talks/niall_ferguson_the_6_killer_apps_of_prosperity', '2011']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+you+ve+taken+your+passion+and+you+ve+turned+it+into+stewardship+you+actually+put+action+to+the+issues+you+care+about
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+what+you+re+going+to+find+eventually+is+you+may+need+to+actually+get+elected+officials
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+how+do+you+do+that
found 8 videos: [['/talks/markham_nolan_how_to_separate_fact_and_fiction_online', '2012'], ['/talks/neil_burgess_how_your_brain_tells_you_where_you_are', '2012'], ['/talks/richard_seymour_how_beauty_feels', '2011'], ['/talks/simon_berrow_how_do_you_save_a_shark_you_know_nothing_about', '2012'], ['/talks/sarah_jayne_blakemore_the_mysterious_workings_of_the_adolescent_brain', '2012'], ['/talks/george_zaidan_how_do_pain_relievers_work', '2012'], ['/talks/carl_schoonover_how_to_look_inside_the_brain', '2012'], ['/talks/tim_ferriss_smash_fear_learn_anything', '2009']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+the+things+i+should+probably+tell+you+is+i+worked+for+the+discovery+channel+early+in+my+career++and+that+sort+of+warped+my+framework
found 1 videos: [['/talks/omar_ahmad_political_change_with_pen_and_paper', '2010']]
selected: /talks/omar_ahmad_political_change_with_pen_and_paper
sleep 1 seconds to avoid blocking
------<1651>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/OnoraONeill_2013X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+start+by+reminding+you+of+the+standard+views+that+people+have+about+trust++i+think+these+are+so+commonplace+they+ve+become+clichs+of+our+society
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+there+are+three+one+s+a+claim++there+has+been+a+great+decline+in+trust++very+widely+believed++the+second+is
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=an+aim++we+should+have+more+trust++and+the+third+is
found 6 videos: [['/talks/onora_o_neill_what_we_don_t_understand_about_trust', '2013'], ['/talks/naomi_oreskes_why_we_should_trust_scientists', '2014'], ['/talks/josh_luber_why_sneakers_are_a_great_investment', '2015'], ['/talks/john_hunter_teaching_with_the_world_peace_game', '2011'], ['/talks/don_tapscott_four_principles_for_the_open_world', '2012'], ['/talks/susan_cain_the_power_of_introverts', '2012']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+task++we+should+rebuild+trust
found 6 videos: [['/talks/onora_o_neill_what_we_don_t_understand_about_trust', '2013'], ['/talks/catherine_bracy_why_good_hackers_make_good_citizens', '2014'], ['/talks/don_tapscott_four_principles_for_the_open_world', '2012'], ['/talks/neil_macgregor_2600_years_of_history_in_one_object', '2012'], ['/talks/leslie_morgan_steiner_why_domestic_violence_victims_don_t_leave', '2013'], ['/talks/jimmy_nelson_gorgeous_portraits_of_the_world_s_vanishing_people', '2015']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+that+the+claim++the+aim+and+the+task+are+all+misconceived
found 1 videos: [['/talks/onora_o_neill_what_we_don_t_understand_about_trust', '2013']]
selected: /talks/onora_o_neill_what_we_don_t_understand_about_trust
sleep 4 seconds to avoid blocking
------<1652>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/OrenYakobovich_2014G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+would+like+to+start+with+the+story+of+mary+a+woman+from+an+african+village
found 7 videos: [['/talks/oren_yakobovich_hidden_cameras_that_film_injustice_in_the_world_s_most_dangerous_places', '2014'], ['/talks/severine_autesserre_to_solve_mass_violence_look_to_locals', '2015'], ['/talks/melinda_gates_let_s_put_birth_control_back_on_the_agenda', '2012'], ['/talks/ann_morgan_my_year_reading_a_book_from_every_country_in_the_world', '2015'], ['/talks/allan_savory_how_to_fight_desertification_and_reverse_climate_change', '2013'], ['/talks/gail_reed_where_to_train_the_world_s_doctors_cuba', '2014'], ['/talks/linda_hill_how_to_manage_for_collective_creativity', '2015']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=her+first+memories+are+of+her+family+fleeing+violent+riots+orchestrated+by+the+ruling+political+party
error: request timeout
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=state+sponsored+militia++and+she+was+raped+more+than+once+just+because+she+belonged+to+the+wrong+party
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+morning+a+month+before+the+election++mary+s+village+was+called+to+another+intimidation+meeting
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+this+meeting+there+is+a+man+standing+in+front+of+them+telling+them+we+know+who+you
found 5 videos: [['/talks/sheryl_sandberg_so_we_leaned_in_now_what', '2014'], ['/talks/oren_yakobovich_hidden_cameras_that_film_injustice_in_the_world_s_most_dangerous_places', '2014'], ['/talks/karima_bennoune_when_people_of_muslim_heritage_challenge_fundamentalism', '2014'], ['/talks/chelsea_shields_how_i_m_working_for_change_inside_my_church', '2015'], ['/talks/mohamed_ali_the_link_between_unemployment_and_terrorism', '2013']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+know+who+you+will+vote+for+and+if+you+re+not+going+to+drop+the+right+paper++we+re+going+to+take+revenge
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+for+mary+this+meeting+is+different+she+feels+different
found 11 videos: [['/talks/alec_soth_and_stacey_baker_this_is_what_enduring_love_looks_like', '2015'], ['/talks/oren_yakobovich_hidden_cameras_that_film_injustice_in_the_world_s_most_dangerous_places', '2014'], ['/talks/sherry_turkle_connected_but_alone', '2012'], ['/talks/tristan_harris_how_better_tech_could_protect_us_from_distraction', '2016'], ['/talks/bruce_feiler_agile_programming_for_your_family', '2013'], ['/talks/brene_brown_listening_to_shame', '2012'], ['/talks/stewart_brand_the_dawn_of_de_extinction_are_you_ready', '2013'], ['/talks/john_maeda_how_art_technology_and_design_inform_creative_leaders', '2012'], ['/talks/mia_birdsong_the_story_we_tell_about_poverty_isn_t_true', '2015'], ['/talks/sheryl_sandberg_so_we_leaned_in_now_what', '2014'], ['/talks/kevin_rudd_are_china_and_the_us_doomed_to_conflict', '2015']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+time+she+s+waiting+for+this+meeting
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+this+time+she+s+carrying+a+small+hidden+camera+in+her+dress+a+camera+that+nobody+else+can+see
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=nobody+is+allowed+to+film+in+these
found 6 videos: [['/talks/oren_yakobovich_hidden_cameras_that_film_injustice_in_the_world_s_most_dangerous_places', '2014'], ['/talks/christopher_bell_bring_on_the_female_superheroes', '2016'], ['/talks/sarah_jones_one_woman_five_characters_and_a_sex_lesson_from_the_future', '2015'], ['/talks/rives_reinventing_the_encyclopedia_game', '2012'], ['/talks/anders_fjellberg_two_nameless_bodies_washed_up_on_the_beach_here_are_their_stories', '2015'], ['/talks/lorrie_faith_cranor_what_s_wrong_with_your_pa_w0rd', '2014']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+risk+your+life+if+you+do+mary+knows+that+but+she+also+knows+that+the+only+way+to+stop+them
found 15 videos: [['/talks/oren_yakobovich_hidden_cameras_that_film_injustice_in_the_world_s_most_dangerous_places', '2014'], ['/talks/karima_bennoune_when_people_of_muslim_heritage_challenge_fundamentalism', '2014'], ['/talks/juno_mac_the_laws_that_sex_workers_really_want', '2016'], ['/talks/halla_tomasdottir_it_s_time_for_women_to_run_for_office', '2016'], ['/talks/guy_winch_why_we_all_need_to_practice_emotional_first_aid', '2015'], ['/talks/sherry_turkle_connected_but_alone', '2012'], ['/talks/al_gore_the_case_for_optimism_on_climate_change', '2016'], ['/talks/melissa_fleming_a_boat_carrying_500_refugees_sunk_at_sea_the_story_of_two_survivors', '2015'], ['/talks/edward_snowden_here_s_how_we_take_back_the_internet', '2014'], ['/talks/beau_lotto_amy_o_toole_science_is_for_everyone_kids_included', '2012'], ['/talks/adam_galinsky_how_to_speak_up_for_yourself', '2016'], ['/talks/verna_myers_how_to_overcome_our_biases_walk_boldly_toward_them', '2014'], ['/talks/hannah_fry_the_mathematics_of_love', '2015'], ['/talks/stephen_friend_the_hunt_for_unexpected_genetic_heroes', '2014'], ['/talks/susan_cain_the_power_of_introverts', '2012']]
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+her+community+is+to+expose+their+intimidation+to+make+sure+they+understand+somebody+is+following+them
found 1 videos: [['/talks/oren_yakobovich_hidden_cameras_that_film_injustice_in_the_world_s_most_dangerous_places', '2014']]
selected: /talks/oren_yakobovich_hidden_cameras_that_film_injustice_in_the_world_s_most_dangerous_places
sleep 3 seconds to avoid blocking
------<1653>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/OryOkolloh_2007G.stm
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+it++and+i+must+say+i+think+emeka+is+trying+to+send+a+lot+of+subliminal+messages+because+i+m+going+to+keep+harping+on+some+of+the+issues
found 1 videos: [['/talks/ory_okolloh_how_i_became_an_activist', '2008']]
selected: /talks/ory_okolloh_how_i_became_an_activist
sleep 3 seconds to avoid blocking
------<1654>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/OscarSchwartz_2015X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+have+a+question++can+a+computer+write+poetry
found 4 videos: [['/talks/oscar_schwartz_can_a_computer_write_poetry', '2016'], ['/talks/mariano_sigman_your_words_may_predict_your_future_mental_health', '2016'], ['/talks/linda_liukas_a_delightful_way_to_teach_kids_about_computers', '2016'], ['/talks/jeremy_howard_the_wonderful_and_terrifying_implications_of_computers_that_can_learn', '2014']]
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+think+about+it+for+a+minute++and+you+suddenly+have+a+bunch+of+other+questions+like+what+is+a+computer
found 3 videos: [['/talks/oscar_schwartz_can_a_computer_write_poetry', '2016'], ['/talks/yuval_noah_harari_nationalism_vs_globalism_the_new_political_divide', '2017'], ['/talks/david_chalmers_how_do_you_explain_consciousness', '2014']]
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+these+are+questions+that+people+spend+their+entire+lifetime+trying+to+answer+not+in+a+single+ted+talk
found 4 videos: [['/talks/oscar_schwartz_can_a_computer_write_poetry', '2016'], ['/talks/alice_goffman_how_we_re_priming_some_kids_for_college_and_others_for_prison', '2015'], ['/talks/tony_fadell_the_first_secret_of_design_is_noticing', '2015'], ['/talks/elon_musk_the_mind_behind_tesla_spacex_solarcity', '2013']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+we+re+going+to+have+to+try+a+different+approach
found 2 videos: [['/talks/moshe_szyf_how_early_life_experience_is_written_into_dna', '2017'], ['/talks/nicholas_negroponte_a_30_year_history_of_the_future', '2014']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+up+here++we+have+two+poems
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+them+is+written+by+a+human++and+the+other+one+s+written+by+a+computer
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hands+up+if+you+think+poem+one+was+written+by+a+human
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=most+of+you+hands+up+if+you+think+poem+two+was+written+by+a+human
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=very+brave+of+you+because+the+first+one+was+written+by+the+human+poet+william+blake
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+second+one+was+written+by+an+algorithm+that+took+all+the+language+from+my+facebook+feed+on+one+day+and+then+regenerated+it+algorithmically+according+to
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=describe+a+little+bit+later+on+so+let+s+try+another+test++again+you+haven+t+got+ages+to+read+this+so+just+trust+your+gut
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=time+s+up++so+if+you+think+the+first+poem+was+written+by+a+human+put+your+hand+up
found 1 videos: [['/talks/stephen_burt_why_people_need_poetry', '2014']]
selected: /talks/stephen_burt_why_people_need_poetry
sleep 1 seconds to avoid blocking
------<1655>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PaddyAshdown_2011X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+poem+written+by+a+very+famous+english+poet+at+the+end+of+the+19th+century+it+was+said+to+echo+in+churchill+s+brain+in+the
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hark+i+hear+a+distant+drummer+drumming+like+a+sound+in+dreams++far+and+near+and+low+and+louder+on+the+roads+of+earth+go+by+dear+to+friend
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+food+to+powder+soldiers+marching++soon+to+die
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=those+who+are+interested+in+poetry+the+poem+is+a+shropshire+lad+written+by+a+e+housman
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+what+housman+understood+and+you+hear+it+in+the+symphonies+of+nielsen+too
found 1 videos: [['/talks/paddy_ashdown_the_global_power_shift', '2012']]
selected: /talks/paddy_ashdown_the_global_power_shift
sleep 3 seconds to avoid blocking
------<1656>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PamelaMeyer_2011G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=want+to+alarm+anybody+in+this+room+but+it+s+just+come+to+my+attention+that+the+person+to+your+right+is+a+liar
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=also+the+person+to+your+left+is+a+liar++also+the+person+sitting+in+your+very+seats+is+a+liar
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+re+all+liars+what+i+m+going+to+do+today+is+i+m+going+to+show+you+what+the+research+says+about+why+we+re+all+liars+how+you+can+become+a+liespotter
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+why+you+might+want+to+go+the+extra+mile+and+go+from+liespotting+to+truth+seeking+and+ultimately+to+trust+building
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+speaking+of+trust+ever+since+i
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+can+t+even+get+a+coffee+date+at+starbucks
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+husband+s+like+honey+deception++maybe+you+could+have+focused+on+cooking+how+about+french+cooking
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+before+i+get+started+what+i+m+going+to+do+is+i+m+going+to+clarify+my+goal+for+you
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+is+not+to+teach+a+game+of+gotcha++liespotters+aren+t+those+nitpicky+kids+those+kids+in+the+back+of+the+room
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+are+shouting+gotcha+gotcha+your+eyebrow+twitched
found 1 videos: [['/talks/pamela_meyer_how_to_spot_a_liar', '2011']]
selected: /talks/pamela_meyer_how_to_spot_a_liar
sleep 1 seconds to avoid blocking
------<1657>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PamelaRonald_2015.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+am+a+plant+geneticist++i+study+genes+that+make+plants+resistant+to+disease+and+tolerant+of+stress
found 1 videos: [['/talks/pamela_ronald_the_case_for_engineering_our_food', '2015']]
selected: /talks/pamela_ronald_the_case_for_engineering_our_food
sleep 4 seconds to avoid blocking
------<1658>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PameliaKurstin_2002.stm
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thing+that+happens+is+people+scream
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+sure+you+re+trying+to+figure+out+well+how+does+this+thing+work+well+what+i+m+doing+is+controlling
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+the+further+away+my+right+hand+gets+the+louder+it+gets
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=tones+so+basically+with+both+of+your+hands+you+re+controlling
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=kind+of+trying+to+create+the+illusion+that+you+re+doing+separate+notes+when+really+it+s+continuously+going
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sometimes+i+startle+myself+i+ll
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+like+a+funny+sound+effect+that+follows+you+around+if+you+don+t+turn+the+thing+off+laughter
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=maybe+we+ll+go+into+the+next+tune+because+i+totally+lost+where+this+is+going+we
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=re+going+to+do+a+song+by+david+mash+called+listen+the+words+are+gone
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=maybe+i+ll+have+words+come+back+into+me+afterwards+if+i+can
error: request timeout
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=came+up+with+the+idea+for
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=making+the+theremin++i+think+when+he+was+working+on+some+shortwave+radios+and+there+d+be+that+sound+in+the+signal+it+s+like
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+he+thought+oh+what+if+i+could+control
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+sound+and+turn+it+into+an+instrument+because+there+are+pitches+in+it+and+so+somehow
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=through+developing+that+he+eventually+came+to+make+the+theremin+the+way+it+is+now++and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+lot+of+times++even+kids+nowadays+they+ll+make+reference
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+kind+of+a+funny+goofy+sound+to+do+and+sometimes+if+i+have+too+much+coffee+then+my+vibrato+gets+out+of+hand+you+re
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=really+sensitive+to+your+body+and+its
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+re+behind+this+thing+you+have+to+stay+so+still+if+you+want+to+have+the+most+control+it+reminds+me+of+the+balancing+act+earlier+on+what+michael+was+doing+because+you+re+fighting+so+hard
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+you+re+playing+with+and+stay+in+tune+and+at+the+same+time+you+don+t+want+to+focus+so+much+on
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=being+in+tune+all+the+time+you+want+to+be+feeling+the+music
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+also+you+re+trying+to
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=stay+very+very+very+still+because+little+movements+with+other+parts+of+your+body+will+affect+the+pitch+or+sometimes+if+you+re+holding+a+low+note
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+aware+of+every+little+crazy+thing+your+body+is+doing++or+just
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=aware+of+what+you+don+t+want+it+to+be+doing+while+you+re+playing+you+don+t+want+to+have+any+sudden+movements+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+i+go+to+a+club+and+play+a+gig+people+are+like+here+have+some+drinks+on+us+and+it+s+like+well+i+m+about+to+go+on+soon+i+don+t+want+to+be+like
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know+it+really+does+reflect+the+mood+that+you+re+in+also+if+you+re
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+similar+to+being+a+vocalist+except+instead+of+it+coming+out+of+your+throat+you+re+controlling+it+just+in+the+air+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+don+t+really+have+a+point+of+reference+you+re+always+relying+on+your+ears+and
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+just+have+to+always+adjust+to+what+s+happening+and+realize+you+ll+have+bummer+notes+come+here+and+there+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=listen+to+it+adjust+it+and+just+move+on+or+else+you+ll+get+too+tied+up+and
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
error: no video is found.
sleep 5 seconds to avoid blocking
------<1659>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PamWarhurst_2012S.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+live+life+differently+can+start+in+some+of+the+most+unusual+places+this+is+where+i
found 2 videos: [['/talks/pam_warhurst_how_we_can_eat_our_landscapes', '2012'], ['/talks/elif_shafak_the_politics_of_fiction', '2010']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=come+from+todmorden+it+s+a+market+town+in+the+north+of+england+fifteen+thousand+people+between+leeds+and+manchester++fairly+normal+market+town
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+now+it+s+more+like+this+with+fruit+and+veg+and+herbs+sprouting+up+all+over+the+place++we+call+it+propaganda+gardening
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=corner+row+railway+station+car+park+front+of+a+health+center+people+s+front+gardens
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+even+in+front+of+the+police+station
found 12 videos: [['/talks/pam_warhurst_how_we_can_eat_our_landscapes', '2012'], ['/talks/jr_one_year_of_turning_the_world_inside_out', '2012'], ['/talks/joshua_prager_in_search_of_the_man_who_broke_my_neck', '2013'], ['/talks/paul_bloom_the_origins_of_pleasure', '2011'], ['/talks/jr_my_wish_use_art_to_turn_the_world_inside_out', '2011'], ['/talks/todd_humphreys_how_to_fool_a_gps', '2012'], ['/talks/martin_jacques_understanding_the_rise_of_china', '2011'], ['/talks/marc_goodman_a_vision_of_crimes_in_the_future', '2012'], ['/talks/julian_assange_why_the_world_needs_wikileaks', '2010'], ['/talks/lisa_margonelli_the_political_chemistry_of_oil', '2010'], ['/talks/stephen_palumbi_hidden_toxins_in_the_fish_we_eat', '2010'], ['/talks/janette_sadik_khan_new_york_s_streets_not_so_mean_any_more', '2013']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+ve+got+edible+canal+towpaths++and+we+ve+got+sprouting+cemeteries+the+soil+is+extremely+good
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+ve+even+invented+a+new+form+of+tourism+it+s+called+vegetable+tourism
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+believe+it+or+not+people+come+from+all+over+the+world+to+poke+around+in+our+raised+beds+even+when+there+s+not+much+growing
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=re+not+doing+it+because+we+re+bored+we+re+doing+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+we+want+to+start+a+revolution
found 14 videos: [['/talks/sir_ken_robinson_bring_on_the_learning_revolution', '2010'], ['/talks/wael_ghonim_inside_the_egyptian_revolution', '2011'], ['/talks/shereen_el_feki_a_little_told_tale_of_sex_and_sensuality', '2014'], ['/talks/beth_noveck_demand_a_more_open_source_government', '2012'], ['/talks/eric_liu_why_ordinary_people_need_to_understand_power', '2014'], ['/talks/jose_bowen_beethoven_the_businessman', '2012'], ['/talks/shekhar_kapur_we_are_the_stories_we_tell_ourselves', '2010'], ['/talks/michael_porter_the_case_for_letting_business_solve_social_problems', '2013'], ['/talks/pam_warhurst_how_we_can_eat_our_landscapes', '2012'], ['/talks/alessandra_orofino_it_s_our_city_let_s_fix_it', '2014'], ['/talks/damon_horowitz_we_need_a_moral_operating_system', '2011'], ['/talks/michael_green_why_we_should_build_wooden_skyscrapers', '2013'], ['/talks/william_li_can_we_eat_to_starve_cancer', '2010'], ['/talks/ernesto_sirolli_want_to_help_someone_shut_up_and_listen', '2012']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+tried+to+answer+this+simple+question+can+you+find+a+unifying+language+that+cuts+across+age+and+income+and+culture+that+will+help+people+themselves+find+a+new+way+of+living
found 1 videos: [['/talks/pam_warhurst_how_we_can_eat_our_landscapes', '2012']]
selected: /talks/pam_warhurst_how_we_can_eat_our_landscapes
sleep 2 seconds to avoid blocking
------<1660>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PankajGhemawat_2012G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+here+to+talk+to+you+about
found 17 videos: [['/talks/shea_hembrey_how_i_became_100_artists', '2011'], ['/talks/jason_fried_why_work_doesn_t_happen_at_work', '2010'], ['/talks/jay_silver_hack_a_banana_make_a_keyboard', '2013'], ['/talks/megan_washington_why_i_live_in_mortal_dread_of_public_speaking', '2014'], ['/talks/toby_shapshak_you_don_t_need_an_app_for_that', '2014'], ['/talks/susan_etlinger_what_do_we_do_with_all_this_big_data', '2014'], ['/talks/james_randi_homeopathy_quackery_and_fraud', '2010'], ['/talks/ben_goldacre_battling_bad_science', '2011'], ['/talks/ami_klin_a_new_way_to_diagnose_autism', '2012'], ['/talks/paul_zak_trust_morality_and_oxytocin', '2011'], ['/talks/eric_topol_the_wireless_future_of_medicine', '2010'], ['/talks/dennis_hong_my_seven_species_of_robot_and_how_we_created_them', '2010'], ['/talks/anant_agarwal_why_massive_open_online_courses_still_matter', '2014'], ['/talks/harsha_bhogle_the_rise_of_cricket_the_rise_of_india', '2010'], ['/talks/lauren_zalaznick_the_conscience_of_television', '2011'], ['/talks/charles_hazlewood_trusting_the_ensemble', '2011'], ['/talks/cameron_russell_looks_aren_t_everything_believe_me_i_m_a_model', '2013']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+globalized+we+are+how+globalized+we+aren+t+and+why+it+s+important+to+actually+be+accurate+in+making+those+kinds+of
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+leading+point+of+view+on+this+whether+measured+by+number+of+books+sold+mentions+in+media++or+surveys+that+i+ve+run+with+groups+ranging+from+my+students+to+delegates+to+the+world+trade+organization
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+this+view+that+national+borders+really+don+t+matter+very+much+anymore
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=cross+border+integration+is+close+to+complete+and+we+live+in+one+world+and+what+s+interesting
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+this+view+is+again+it+s+a+view+that+s+held+by
found 4 videos: [['/talks/karima_bennoune_when_people_of_muslim_heritage_challenge_fundamentalism', '2014'], ['/talks/charles_hazlewood_trusting_the_ensemble', '2011'], ['/talks/david_agus_a_new_strategy_in_the_war_on_cancer', '2010'], ['/talks/nicholas_christakis_how_social_networks_predict_epidemics', '2010']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+tom+friedman+from+whose+book+this+quote+is+obviously+excerpted++but+it+s+also+held+by
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+see+this+giant+globalization+tsunami+that+s+about+to+wreck+all+our+lives+if+it+hasn+t+already
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+other+thing+i+would+add+is+that+this+is+not+a+new+view
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+a+little+bit+of+an+amateur+historian++so+i+ve+spent+some+time+going+back+trying+to+see+the+first+mention+of+this+kind+of+thing
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+best+earliest+quote+that+i+could+find
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+one+from+david+livingstone+writing+in+the
error: request timeout
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+steam+ship++and+the+telegraph+were+integrating+east+africa+perfectly
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+the+rest+of+the+world
found 13 videos: [['/talks/toby_shapshak_you_don_t_need_an_app_for_that', '2014'], ['/talks/harsha_bhogle_the_rise_of_cricket_the_rise_of_india', '2010'], ['/talks/niall_ferguson_the_6_killer_apps_of_prosperity', '2011'], ['/talks/seth_priebatsch_the_game_layer_on_top_of_the_world', '2010'], ['/talks/kavita_ramdas_radical_women_embracing_tradition', '2010'], ['/talks/bruce_aylward_how_we_ll_stop_polio_for_good', '2011'], ['/talks/george_monbiot_for_more_wonder_rewild_the_world', '2013'], ['/talks/hans_rosling_the_good_news_of_the_decade_we_re_winning_the_war_against_child_mortality', '2010'], ['/talks/patricia_kuhl_the_linguistic_genius_of_babies', '2011'], ['/talks/bruce_feiler_the_council_of_dads', '2011'], ['/talks/dean_kamen_the_emotion_behind_invention', '2010'], ['/talks/ami_angelowicz_the_terrors_of_sleep_paralysis', '2013'], ['/talks/diana_reiss_peter_gabriel_neil_gershenfeld_and_vint_cerf_the_interspecies_internet_an_idea_in_progress', '2013']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+clearly++david+livingstone+was+a+little+bit+ahead+of+his+time
found 1 videos: [['/talks/pankaj_ghemawat_actually_the_world_isn_t_flat', '2012']]
selected: /talks/pankaj_ghemawat_actually_the_world_isn_t_flat
sleep 2 seconds to avoid blocking
------<1661>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PaolaAntonelli_2007.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=those+of+us+who+believe+in+heaven+have+some+sort+of+idea+of+what+heaven+would+be+and+in+my+idea+heaven+is+satisfied+curiosity
found 1 videos: [['/talks/paola_antonelli_treat_design_as_art', '2008']]
selected: /talks/paola_antonelli_treat_design_as_art
sleep 5 seconds to avoid blocking
------<1662>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PaolaAntonelli_2007P.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=curator+of+architecture+and+design+i+happen+to+be+at+the+museum+of+modern+art++but+what
found 1 videos: [['/talks/paola_antonelli_design_and_the_elastic_mind', '2008']]
selected: /talks/paola_antonelli_design_and_the_elastic_mind
sleep 5 seconds to avoid blocking
------<1663>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PaolaAntonelli_2013S.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+crazy+evangelical+i+ve+always+known+that+the+age+of+design+is+upon+us+almost+like+a+rapture
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+the+day+is+sunny+i+think+oh++the+gods+have+had+a+good+design+day++or+i+go+to+a+show+and+i+see+a+beautiful+piece+by+an+artist+particularly+beautiful
found 1 videos: [['/talks/paola_antonelli_why_i_brought_pac_man_to_moma', '2013']]
selected: /talks/paola_antonelli_why_i_brought_pac_man_to_moma
sleep 2 seconds to avoid blocking
------<1664>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PaoloCardini_2012G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+a+designer+and+an+educator+i+m+a+multitasking+person++and+i+push+my+students+to+fly+through
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+very+creative+multitasking+design+process++but+how+efficient+is+really+this+multitasking+let+s+consider
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=consider+for+a+while+the+option+of
error: request timeout
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=look+at+that+this+is+my+multitasking+activity+result
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+trying+to+cook+answering+the+phone+writing+sms+and+maybe+uploading+some+pictures+about+this+awesome
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+someone+tells+us+the+story+about+supertaskers+so+this+two+percent+of+people+who+are+able+to+control
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=multitasking+environment++but+what+about
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ourselves+and+what+about+our+reality+when+s+the+last+time+you+really+enjoyed+just+the+voice+of+your+friend
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+this+is+a+project+i+m+working+on+and+this+is+a+series
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+front+covers+to+downgrade+our+super++hyper
found 1 videos: [['/talks/paolo_cardini_forget_multitasking_try_monotasking', '2012']]
selected: /talks/paolo_cardini_forget_multitasking_try_monotasking
sleep 5 seconds to avoid blocking
------<1665>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ParagKhanna_2009G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=do+we+live+in+a+borderless+world
found 2 videos: [['/talks/parag_khanna_mapping_the_future_of_countries', '2009'], ['/talks/maajid_nawaz_a_global_culture_to_fight_extremism', '2011']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=before+you+answer+that+have+a+look+at+this+map+contemporary+political+map+shows+that+we+have+over+two+hundred+countries+in+the+world+today++that+s+probably+more+than+at+any+time
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=many+of+you+will+object+for+you+this+would+be+a+more+appropriate+map+you+could+call+it+tedistan
found 1 videos: [['/talks/parag_khanna_mapping_the_future_of_countries', '2009']]
selected: /talks/parag_khanna_mapping_the_future_of_countries
sleep 3 seconds to avoid blocking
------<1666>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ParagKhanna_2016.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+you+to+reimagine+how+life+is+organized+on+earth
found 1 videos: [['/talks/parag_khanna_how_megacities_are_changing_the_map_of_the_world', '2016']]
selected: /talks/parag_khanna_how_megacities_are_changing_the_map_of_the_world
sleep 2 seconds to avoid blocking
------<1667>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PardisSabeti_2015W.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+may+never+have+heard+of+kenema+sierra+leone+or+arua+nigeria++but+i+know+them+as+two+of+the+most+extraordinary+places+on+earth
found 1 videos: [['/talks/pardis_sabeti_how_we_ll_fight_the_next_deadly_virus', '2016']]
selected: /talks/pardis_sabeti_how_we_ll_fight_the_next_deadly_virus
sleep 1 seconds to avoid blocking
------<1668>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ParulSehgal_2013S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+eight+years+old+a+new+girl+came+to+join+the+class++and
found 4 videos: [['/talks/parul_sehgal_an_ode_to_envy', '2013'], ['/talks/adam_spencer_why_i_fell_in_love_with_monster_prime_numbers', '2013'], ['/talks/jeffrey_kluger_the_sibling_bond', '2012'], ['/talks/robyn_stein_deluca_the_good_news_about_pms', '2015']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=she+was+so+impressive+as+the+new+girl+always+seems+to+be+she+had+vast+quantities+of+very+shiny+hair+and+a+cute+little+pencil+case
found 1 videos: [['/talks/parul_sehgal_an_ode_to_envy', '2013']]
selected: /talks/parul_sehgal_an_ode_to_envy
sleep 1 seconds to avoid blocking
------<1669>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PatienceMthunzi_2015U.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+do+you+do+when+you+have+a+headache
found 18 videos: [['/talks/celine_valery_how_does_your_body_process_medicine', '2017'], ['/talks/david_schwartz_not_all_scientific_studies_are_created_equal', '2014'], ['/talks/manoush_zomorodi_how_boredom_can_lead_to_your_most_brilliant_ideas', '2017'], ['/talks/suzanne_talhouk_don_t_kill_your_language', '2014'], ['/talks/nina_fedoroff_a_secret_weapon_against_zika_and_other_mosquito_borne_diseases', '2017'], ['/talks/rishi_manchanda_what_makes_us_get_sick_look_upstream', '2014'], ['/talks/sarah_jones_one_woman_five_characters_and_a_sex_lesson_from_the_future', '2015'], ['/talks/jessica_ladd_the_reporting_system_that_sexual_assault_survivors_want', '2016'], ['/talks/patience_mthunzi_could_we_cure_hiv_with_lasers', '2015'], ['/talks/geraldine_hamilton_body_parts_on_a_chip', '2013'], ['/talks/seth_berkley_the_troubling_reason_why_vaccines_are_made_too_late_if_they_re_made_at_all', '2015'], ['/talks/kailash_satyarthi_how_to_make_peace_get_angry', '2015'], ['/talks/hadyn_parry_re_engineering_mosquitos_to_fight_disease', '2013'], ['/talks/sharon_horesh_bergquist_how_stress_affects_your_body', '2015'], ['/talks/murat_dalkilinc_the_benefits_of_good_posture', '2015'], ['/talks/jonathan_marks_in_praise_of_conflict', '2017'], ['/talks/marc_abrahams_a_science_award_that_makes_you_laugh_then_think', '2014'], ['/talks/ziauddin_yousafzai_my_daughter_malala', '2014']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+swallow+an+aspirin++but+for+this+pill+to+get+to+your+head++where+the+pain+is+it+goes+through
found 1 videos: [['/talks/patience_mthunzi_could_we_cure_hiv_with_lasers', '2015']]
selected: /talks/patience_mthunzi_could_we_cure_hiv_with_lasers
sleep 2 seconds to avoid blocking
------<1670>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PatriciaBurchat_2008.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+a+particle+physicist++i+study+the+elementary+particles+and+how+they+interact+on+the+most+fundamental+level
found 1 videos: [['/talks/patricia_burchat_shedding_light_on_dark_matter', '2008']]
selected: /talks/patricia_burchat_shedding_light_on_dark_matter
sleep 3 seconds to avoid blocking
------<1671>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PatriciaKuhl_2010X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+take+a+look+at+this+baby
found 9 videos: [['/talks/tyrone_hayes_penelope_jagessar_chaffer_the_toxic_baby', '2012'], ['/talks/jack_horner_where_are_the_baby_dinosaurs', '2012'], ['/talks/eric_dishman_take_health_care_off_the_mainframe', '2010'], ['/talks/scott_fraser_why_eyewitnesses_get_it_wrong', '2012'], ['/talks/loretta_napoleoni_the_intricate_economics_of_terrorism', '2009'], ['/talks/eve_ensler_embrace_your_inner_girl', '2010'], ['/talks/william_li_can_we_eat_to_starve_cancer', '2010'], ['/talks/diana_nyad_extreme_swimming_with_the_world_s_most_dangerous_jellyfish', '2012'], ['/talks/naomi_klein_addicted_to_risk', '2011']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+you+re+drawn+to+are+her+eyes+and+the+skin+you+love+to+touch++but+today+i+m+going+to+talk+to+you+about+something+you+can+t+see+what+s+going
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=up+in+that+little+brain+of+hers
found 12 videos: [['/talks/amy_tan_where_does_creativity_hide', '2008'], ['/talks/patricia_kuhl_the_linguistic_genius_of_babies', '2011'], ['/talks/kwabena_boahen_a_computer_that_works_like_the_brain', '2008'], ['/talks/rebecca_saxe_how_we_read_each_other_s_minds', '2009'], ['/talks/read_montague_what_we_re_learning_from_5_000_brains', '2012'], ['/talks/jim_fallon_exploring_the_mind_of_a_killer', '2009'], ['/talks/shawn_achor_the_happy_secret_to_better_work', '2012'], ['/talks/greg_gage_the_cockroach_beatbox', '2012'], ['/talks/charles_limb_your_brain_on_improv', '2011'], ['/talks/pawan_sinha_how_brains_learn_to_see', '2010'], ['/talks/daniel_wolpert_the_real_reason_for_brains', '2011'], ['/talks/gero_miesenboeck_re_engineering_the_brain', '2010']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+modern+tools+of+neuroscience+are+demonstrating+to+us+that+what+s+going+on+up+there+is+nothing+short+of+rocket+science
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+going+to+shed+some+light+on+what+the+romantic+writers+and+poets+described+as+the+celestial+openness+of+the+child+s+mind
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+we+see+here+is+a+mother+in+india++and+she+s+speaking+koro+which+is+a+newly
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=discovered+language+and+she+s+talking+to+her+baby
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+this+mother+and+the+eight+hundred+people+who+speak+koro+in+the+world+understands+is+that+to+preserve+this+language+they+need+to+speak+it+to+the+babies
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+therein+lies+a+critical+puzzle+why+is+it+that+you+can+t+preserve+a+language+by+speaking+to+you+and+i+to+the+adults
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+we+see+here+is+that+language+has+a+critical+period+for+learning
found 4 videos: [['/talks/daphne_koller_what_we_re_learning_from_online_education', '2012'], ['/talks/patricia_kuhl_the_linguistic_genius_of_babies', '2011'], ['/talks/nicholas_negroponte_one_laptop_per_child_two_years_on', '2008'], ['/talks/michael_merzenich_growing_evidence_of_brain_plasticity', '2009']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+way+to+read+this+slide+is+to+look+at+your+age+on+the+horizontal+axis+and+you
found 1 videos: [['/talks/patricia_kuhl_the_linguistic_genius_of_babies', '2011']]
selected: /talks/patricia_kuhl_the_linguistic_genius_of_babies
sleep 5 seconds to avoid blocking
------<1672>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PatriciaMedici_2015F.stm
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+the+most+amazing+animals+on+the+face+of+the+earth++this+is+a+tapir
found 1 videos: [['/talks/patricia_medici_the_coolest_animal_you_know_nothing_about_and_how_we_can_save_it', '2015']]
selected: /talks/patricia_medici_the_coolest_animal_you_know_nothing_about_and_how_we_can_save_it
sleep 5 seconds to avoid blocking
------<1673>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PatriciaRyan_2010X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+think+i+ve+lost+my+way+and+somebody+s+going+to+come+on+the+stage+in+a+minute+and+guide+me+gently+back+to+my+seat
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+actually+i+hope+for+a+while+longer+yet++i+have+been+living+and+teaching+in+the+gulf+for+over+thirty+years
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+quite+shocking++and+i+want+to+talk+to+you+today+about+language+loss+and+the+globalization+of+english
found 1 videos: [['/talks/patricia_ryan_don_t_insist_on_english', '2011']]
selected: /talks/patricia_ryan_don_t_insist_on_english
sleep 2 seconds to avoid blocking
------<1674>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PatrickAwuah_2007G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=many+of+you+here++i+am+trying+to+contribute
found 5 videos: [['/talks/patrick_awuah_how_to_educate_leaders_liberal_arts', '2007'], ['/talks/jonathan_haidt_the_moral_roots_of_liberals_and_conservatives', '2008'], ['/talks/clay_shirky_institutions_vs_collaboration', '2008'], ['/talks/charles_leadbeater_the_era_of_open_innovation', '2007'], ['/talks/majora_carter_greening_the_ghetto', '2006']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=towards+a+renaissance+in+africa+the+question+of+transformation+in+africa+really+is+a+question+of+leadership++africa+can+only+be+transformed
found 1 videos: [['/talks/patrick_awuah_how_to_educate_leaders_liberal_arts', '2007']]
selected: /talks/patrick_awuah_how_to_educate_leaders_liberal_arts
sleep 5 seconds to avoid blocking
------<1675>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PatrickChappatte_2010G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=know+if+you+ve+heard+about+it+newspapers+it+s+a+sort+of
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know+what+they+say+they+say+the+print+media+is+dying+who+says+that+well+the+media+but
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+no+news+right++you+ve+read+about+it
error: request timeout
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ladies+and+gentlemen+the+world+has+gotten+smaller
found 1 videos: [['/talks/patrick_chappatte_the_power_of_cartoons', '2010']]
selected: /talks/patrick_chappatte_the_power_of_cartoons
sleep 5 seconds to avoid blocking
------<1676>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PattieMaes_2009.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+been+intrigued+by+this+question+of+whether+we+could+evolve+or+develop+a+sixth+sense+a+sense+that+would+give+us+seamless+access+and+easy+access
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+information+that+may+exist+somewhere+that+may+be+relevant+to+help+us+make+the+right+decision+about+whatever+it+is+that+we+re+coming+across
found 1 videos: [['/talks/pattie_maes_pranav_mistry_meet_the_sixthsense_interaction', '2009']]
selected: /talks/pattie_maes_pranav_mistry_meet_the_sixthsense_interaction
sleep 3 seconds to avoid blocking
------<1677>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PaulaHammond_2015P.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=affects+all+of+us+especially+the+ones+that+come+back+over+and+over+again+the+highly+invasive+and
found 2 videos: [['/talks/paula_hammond_a_new_superweapon_in_the_fight_against_cancer', '2016'], ['/talks/jorge_soto_the_future_of_early_cancer_detection', '2014']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+ones+that+defy+medical+treatment+even+when+we+throw+our+best+drugs+at+them+engineering+at+the+molecular+level
found 1 videos: [['/talks/paula_hammond_a_new_superweapon_in_the_fight_against_cancer', '2016']]
selected: /talks/paula_hammond_a_new_superweapon_in_the_fight_against_cancer
sleep 5 seconds to avoid blocking
------<1678>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PaulaJohnson_2013W.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+of+my+most+wonderful+memories+of+childhood+are+of+spending+time+with+my+grandmother+mamar
found 1 videos: [['/talks/paula_johnson_his_and_hers_health_care', '2014']]
selected: /talks/paula_johnson_his_and_hers_health_care
sleep 5 seconds to avoid blocking
------<1679>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PaulaScher_2008P.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+work+is+play++and+i+play+when+i+design+i+even+looked+it+up+in+the+dictionary+to+make+sure+that+i+actually+do+that+and
found 2 videos: [['/talks/paula_scher_great_design_is_serious_not_solemn', '2009'], ['/talks/noah_feldman_politics_and_religion_are_technologies', '2008']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+definition+of+play+number+one+was+engaging+in+a+childlike+activity+or+endeavor+and+number+two+was+gambling
found 1 videos: [['/talks/paula_scher_great_design_is_serious_not_solemn', '2009']]
selected: /talks/paula_scher_great_design_is_serious_not_solemn
sleep 1 seconds to avoid blocking
------<1680>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PaulBennett_2005G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+bauer+bodoni+for+the+typographically+hysterical+amongst+us+one+of+the+threads+that+seems+to+have+come+through+loud+and+clear
found 1 videos: [['/talks/paul_bennett_design_is_in_the_details', '2007']]
selected: /talks/paul_bennett_design_is_in_the_details
sleep 4 seconds to avoid blocking
------<1681>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PaulBloom_2011G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+talk+today+about+the+pleasures+of+everyday+life++but+i+want+to+begin+with+a+story+of+an+unusual+and+terrible+man++this+is+hermann+goering
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=goering+was+hitler+s+second+in+command+in+world+war+ii+his+designated+successor+and+like+hitler+goering+fancied+himself+a
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=collector+of+art++he+went+through+europe++through+world+war+ii+stealing+extorting+and+occasionally+buying+various+paintings+for+his+collection
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+what+he+really+wanted+was+something+by+vermeer
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hitler+had+two+of+them++and+he+didn+t+have+any++so+he+finally+found+an+art+dealer+a+dutch+art+dealer+named+han+van+meegeren
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+sold+him+a+wonderful+vermeer+for+the+cost+of+what+would+now+be+ten+million+dollars
found 1 videos: [['/talks/paul_bloom_the_origins_of_pleasure', '2011']]
selected: /talks/paul_bloom_the_origins_of_pleasure
sleep 2 seconds to avoid blocking
------<1682>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PaulBloom_2014S.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=prejudice+and+bias+we+tend+to+think+about+stupid+and+evil+people+doing+stupid+and+evil+things
found 1 videos: [['/talks/paul_bloom_can_prejudice_ever_be_a_good_thing', '2014']]
selected: /talks/paul_bloom_can_prejudice_ever_be_a_good_thing
sleep 1 seconds to avoid blocking
------<1683>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PaulCollier_2008.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=can+we+dare+to+be+optimistic++well+the+thesis+of+the+bottom+billion+is+that+a+billion+people+have+been+stuck+living
found 1 videos: [['/talks/paul_collier_the_bottom_billion', '2008']]
selected: /talks/paul_collier_the_bottom_billion
sleep 4 seconds to avoid blocking
------<1684>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PaulCollier_2009S.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+all+post+conflict+situations+historically+have+reverted+back+to+conflict+within+a+decade
found 1 videos: [['/talks/paul_collier_new_rules_for_rebuilding_a_broken_nation', '2009']]
selected: /talks/paul_collier_new_rules_for_rebuilding_a_broken_nation
sleep 4 seconds to avoid blocking
------<1685>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PaulConneally_2011X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+humanitarian+model+has+barely+changed+since+the+early+20th+century++its+origins+are+firmly+rooted+in+the+analog+age++and
found 1 videos: [['/talks/paul_conneally_how_mobile_phones_power_disaster_relief', '2012']]
selected: /talks/paul_conneally_how_mobile_phones_power_disaster_relief
sleep 3 seconds to avoid blocking
------<1686>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PaulDebevec_2009X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=biggest+challenges+in+computer+graphics+has+been+being+able+to+create+a+photo+real+digital+human+face+and+one+of+the+reasons+it+is+so+difficult+is+that+unlike
found 1 videos: [['/talks/paul_debevec_animating_a_photo_real_digital_face', '2009']]
selected: /talks/paul_debevec_animating_a_photo_real_digital_face
sleep 3 seconds to avoid blocking
------<1687>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PaulEwald_2007.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+i+d+like+to+do+is+just+drag+us+all+down+into+the+gutter+and+actually+all+the+way+down+into+the+sewer+because+i+want+to+talk+about+diarrhea++and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+particular+i+want+to+talk+about+the+design+of+diarrhea
found 1 videos: [['/talks/paul_ewald_can_we_domesticate_germs', '2008']]
selected: /talks/paul_ewald_can_we_domesticate_germs
sleep 2 seconds to avoid blocking
------<1688>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PaulGilding_2012.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+me+begin+with+four+words+that+will+provide+the+context+for+this+week++four+words+that+will+come+to+define+this+century
found 1 videos: [['/talks/paul_gilding_the_earth_is_full', '2012']]
selected: /talks/paul_gilding_the_earth_is_full
sleep 3 seconds to avoid blocking
------<1689>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PaulGreenberg_2015Z.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+a+kid+this+was+my+team
found 17 videos: [['/talks/kevin_breel_confessions_of_a_depressed_comic', '2013'], ['/talks/taylor_wilson_my_radical_plan_for_small_nuclear_fission_reactors', '2013'], ['/talks/michael_bierut_how_to_design_a_library_that_makes_kids_want_to_read', '2017'], ['/talks/nancy_frates_meet_the_mom_who_started_the_ice_bucket_challenge', '2014'], ['/talks/jessica_mccabe_this_is_what_it_s_really_like_to_live_with_adhd_jan_2017', '2017'], ['/talks/khalida_brohi_how_i_work_to_protect_women_from_honor_killings', '2015'], ['/talks/martine_rothblatt_my_daughter_my_wife_our_robot_and_the_quest_for_immortality', '2015'], ['/talks/ben_saunders_to_the_south_pole_and_back_the_hardest_105_days_of_my_life', '2014'], ['/talks/suzanne_barakat_islamophobia_killed_my_brother_let_s_end_the_hate', '2016'], ['/talks/jia_jiang_what_i_learned_from_100_days_of_rejection', '2016'], ['/talks/catherine_bracy_why_good_hackers_make_good_citizens', '2014'], ['/talks/jennifer_senior_for_parents_happiness_is_a_very_high_bar', '2014'], ['/talks/carolyn_jones_a_tribute_to_nurses', '2017'], ['/talks/pico_iyer_the_beauty_of_what_we_ll_never_know', '2016'], ['/talks/karim_abouelnaga_a_summer_school_kids_actually_want_to_attend', '2017'], ['/talks/peter_weinstock_lifelike_simulations_that_make_real_life_surgery_safer', '2017'], ['/talks/luma_mufleh_don_t_feel_sorry_for_refugees_believe_in_them', '2017']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+stunk+at+sports+i+didn+t+like+to+play+them+i+didn+t+like+to+watch+them+so+this+is+what+i+did+i+went+fishing
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+for+all+of+my+growing+up+i+fished+on+the+shores+of+connecticut++and+these+are+the+creatures+that+i+saw+on+a+regular+basis
found 1 videos: [['/talks/paul_greenberg_the_four_fish_we_re_overeating_and_what_to_eat_instead', '2015']]
selected: /talks/paul_greenberg_the_four_fish_we_re_overeating_and_what_to_eat_instead
sleep 5 seconds to avoid blocking
------<1690>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PaulKempRobertson_2013G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+i+was+to+ask+you+what+the+connection+between+a+bottle+of+tide+detergent+and+sweat+was
found 1 videos: [['/talks/paul_kemp_robertson_bitcoin_sweat_tide_meet_the_future_of_branded_currency', '2013']]
selected: /talks/paul_kemp_robertson_bitcoin_sweat_tide_meet_the_future_of_branded_currency
sleep 1 seconds to avoid blocking
------<1691>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PaulKnoepfler_2015X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+if+i+could+make+for+you+a+designer+baby+what+if+you+as+a
found 6 videos: [['/talks/paul_knoepfler_the_ethical_dilemma_of_designer_babies', '2017'], ['/talks/ed_boyden_a_new_way_to_study_the_brain_s_invisible_secrets', '2016'], ['/talks/heather_lanier_good_and_bad_are_incomplete_stories_we_tell_ourselves', '2017'], ['/talks/negin_farsad_a_highly_scientific_taxonomy_of_haters', '2016'], ['/talks/manoush_zomorodi_how_boredom_can_lead_to_your_most_brilliant_ideas', '2017'], ['/talks/jarrett_j_krosoczka_how_a_boy_became_an_artist', '2013']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+as+a+scientist+decided+to+go+down+that+road+together+what+if+we+didn+t+what+if+we+thought+that+s+a+bad+idea
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+many+of+our+family+friends+and+coworkers
found 7 videos: [['/talks/leslie_morgan_steiner_why_domestic_violence_victims_don_t_leave', '2013'], ['/talks/nancy_frates_meet_the_mom_who_started_the_ice_bucket_challenge', '2014'], ['/talks/jackson_katz_violence_against_women_it_s_a_men_s_issue', '2013'], ['/talks/paul_knoepfler_the_ethical_dilemma_of_designer_babies', '2017'], ['/talks/michael_botticelli_addiction_is_a_disease_we_should_treat_it_like_one', '2017'], ['/talks/sue_klebold_my_son_was_a_columbine_shooter_this_is_my_story', '2017'], ['/talks/manoush_zomorodi_how_boredom_can_lead_to_your_most_brilliant_ideas', '2017']]
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+s+fast+forward+just+fifteen+years+from+now++let+s+pretend+it+s+the+year+two+thousand+and+thirty
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+re+a+parent+you+have+your+daughter+marianne+next+to+you+and+in+two+thousand+and+thirty+she+is+what+we+call+a+natural
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+she+has+no+genetic+modifications
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+because+you+and+your+partner+consciously+made+that+decision
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=many+in+your+social+circle+they+kind+of+look+down+on+you+they+think+you+re+like+a+luddite+or+a+technophobe
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=marianne+s+best+friend+jenna+who+lives+right+next+door+is+a+very+different+story++she+was+born+a+genetically+modified
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=using+a+new+genetic+modification+technology+that+goes+by+the+funny+name+crispr+you+know+like+something+s+crisp+this+is+crispr
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+scientist+that+jenna+s+parents+hired+to+do+this+for+several+million
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=into+a+whole+panel+of+human+embryos
found 1 videos: [['/talks/paul_knoepfler_the_ethical_dilemma_of_designer_babies', '2017']]
selected: /talks/paul_knoepfler_the_ethical_dilemma_of_designer_babies
sleep 5 seconds to avoid blocking
------<1692>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PaulMacCready_1998.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+hear+that+this+is+the+era+of+environment
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+information+technology+well+it+s+the+era+of+a+lot+of+different+things+that+we+re+in+right+now++but+one+thing+for+sure+it+s+the+era+of+change+there+s+more+change+going+on+than+ever+has+occurred+in+the+history+of
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=human+life+on+earth+and+you+all+sort+of+know+it+but+it+s+hard+to+get+it+so+that+you
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=really+understand+it+and+i+ve+tried+to+put+together+something+that+s+a+good+start+for+this+i+ve+tried+to+show
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+this+though+the+color+doesn+t+come+out+that+what+i+m+concerned+with+is+the+little
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=time+bubble+that+you+are+in+you+tend+to+be+interested+in+a+generation+past+a+generation+future+your+parents+your+kids+things+you+can+change+over+the+next+few+decades+and+this
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=50+year+time+bubble+you+kind+of+move+along+in+and+in+that+fifty+years+if+you+look+at+the+population+curve+you+find+the+population+of+humans+on+the+earth+more+than
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+have+a+new+baby+by+the+time+that+kid+gets+out+of
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=more+people+will+be+added+than+existed+on+earth+when+i+was+born++this+is+unprecedented++and+it+s+big++where+it+goes+in+the+future+is
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=questioned+so+that+s+the+human+part+now+the+human+part+related+to
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=animals+look+at+the+left+side+of+that+what+i+call+the+human+portion+humans+and+their+livestock+and+pets+versus+the+natural+portion+all+the+other+wild+animals+and+just+these+are+vertebrates+and
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=birds+etc+in+the+land+and+air+not+in+the+water
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+does+it+balance+certainly+ten+thousand+years+ago+the+civilization+s+beginning+the+human
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=portion+was+less+than+one+tenth+of+one+percent++let+s+look+at+it+now++you+follow+this+curve+and+you+see+the+whiter+spot+in+the+middle+that+s+your
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+pets+are+now+ninety+seven+percent+of+that+integrated+total+mass+on+earth+and+all+wild+nature+is+three+percent++we+have+won+the+next+generation+doesn+t+even+have+to+worry+about+this+game+it+is+over
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+biggest+problem+came+in+the+last
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=charge+of+life+on+earth+we+re+like+the+capricious+gods+of+old+greek+myths++kind+of+playing+with+life+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+a+great+deal+of+wisdom+injected+into+it+now+the+third+curve+is+information+technology+this+is+moore+s+law+plotted+here++which+relates+to+density
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=has+been+pretty+good+for+showing+a+lot+of+other+things+about+information+technology+computers+their+use+internet+etc++and+what+s+important+is+it+just+goes+straight+up+through+the+top+of+the+curve+and+has+no+real
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=limits+to+it+now+try+and+contrast+these++this+is+the+size+of+the+earth+going+through+that+same
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=see+the+little+detailed+words+on+it+that+first+one+is
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+ve+won++there+s+no+more+gain
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=human+population+and+so+if+you+re+looking+for+growth+industries+to+get+into+that+s+not+a+good+one+protecting+natural+creatures+human+population+is+going+up+it+s+going+to+continue+for+quite+a+while
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+deal+with+human+bodies++which+require+being
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+on++and+the+information+technology++which+connects+to+our+brains+has+no+limit+now+that+is+a+wonderful+field+to+be+in+you+re+looking+for+growth+opportunity+it+s+just+going+up
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=size+of+the+earth+somehow+making+these+all+compatible+with+the+earth+looks+like+a+pretty+bad+industry+to+be+involved+with+so+that+s+the+stage+out+of+all+this+i+find
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+reasons+i+don+t+understand+i+really+do+have+a+goal+and+the+goal+is+that
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+world+be+desirable+and+sustainable+when+my+kids+reach+my+age+and+i+think+that+s+in+other+words+the+next+generation+i+think+that+s+a+goal+that+we
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+a+hopeless+goal+technologically++it+s
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=achievable+economically+it+s+achievable+politically++it+means+sort+of+the+habits+institutions+of+people+it+s+impossible
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+institutions+of+the+past+with+all+their+inertia+are+just+irrelevant+for+the+future++except+they+re+there+and+we+have+to+deal
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+them++i+spend+about+fifteen+percent+of+my+time+trying+to+save
error: request timeout
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ourselves+to+and+in+that+fifteen+percent+the+main+focus+is+on+human+mind+thinking+skills+somehow+trying+to+unleash+kids+from+the+straightjacket+of+school
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+is+putting+information+and+dogma+into+them+get+them+so+they+really+think+ask+tough+questions+argue+about+serious+subjects+don+t+believe+everything+that+s+in+the+book+think+broadly+or+creative+they+can+be+our+school+systems
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=flawed+and+do+not+reward+you+for+the+things+that+are+important+in+life+or+for+the+survival+of+civilization+they+reward+you+for+a+lot+of+learning+and+sopping+up
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=stuff+we+can+t+go+into+that+today+because+there+isn+t+time+it+s
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+broad+subject+one+thing+for+sure+in+the+future+there+is+an+essential
error: request timeout
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+doing+more+with+less+we+ve+got+to+be+doing+things+with+more+efficiency+using+less+energy+less+material+your+great+great+grandparents+got+by+on+muscle+power+and+yet+we+all+think+there+s+this+huge+power+that+s+essential
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+our+lifestyle++and+with+all+the+wonderful+technology+we+have+we+can+do+things+that+are
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=prize+in+aviation+history+followed+by+the+albatross+and+we+began+making+various+odd+planes+and
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=trying+to+have+it+fly+straight+is+like+trying+to+shoot+an+arrow+with+the+feathered+end+forward+it+was+a+tough+job+and+boy+it+made+me+have+a+lot+of+respect+for+nature+this+was+the+full+size+of
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=original+creature+we+did+things+on+land+in+the+air+on+water+vehicles+of+all+different+kinds++usually+with+some+electronics+or+electric+power+systems+in+them++i+find+they+re+all+the+same
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+water+i+ll+be+focusing+on+the+air+here+this
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+a+solar+powered+airplane+one+hundred+and+sixty+five+miles+carrying+a+person+from+france+to+england+as+a+symbol+that+solar+power+is+going+to+be+an+important+part
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+our+future++then+we+did+the+solar+car+for+general+motors+the+sunracer+that+won+the+race+in+australia+we
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=got+a+lot+of+people+thinking+about+electric+cars+what+you+could+do+with+them+a+few+years+later+when+we+suggested+to+gm+that+now+is+the+time+and+we+could+do+a+thing+called+the+impact+they+sponsored+it+and+here+s+the+impact+that+we+developed+with+them+on+their
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=programs+this+is+the+demonstrator++and+they+put+huge+effort+into+turning+it+into+a+commercial
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+s+show+the+first++two+minute+videotape+which+shows+a+little+airplane+for+surveillance+and+moving+to+a+giant+airplane
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=tiny+airplane+the+av+pointer+serves+for+surveillance+in+effect+a+pair+of+roving+eyeglasses
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+cutting+edge+example+of+where+miniaturization+can+lead+if+the+operator+is+remote+from+the+vehicle++it+is+convenient+to+carry++assemble+and+launch+by+hand
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=battery+powered+it+is+silent+and+rarely+noticed
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=video+pictures+back+to+the+operator
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+onboard+gps++it+can+navigate+autonomously++and+it+is+rugged+enough+to+self+land+without+damage
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+modern+sailplane+is+superbly+efficient+some+can+glide+as+flat+as+sixty+feet+forward+for+every+foot+of+descent
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+are+powered+only+by+the+energy+they+can+extract+from+the+atmosphere
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=an+atmosphere+nature+stirs+up+by+solar+energy+humans+and+soaring+birds+have+found+nature
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+be+generous+in+providing+replenishable+energy
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sailplanes+have+flown+over+one+thousand+miles++and+the+altitude+record+is+over+fifty+thousand+feet
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+solar+challenger+was+made+to+serve+as+a+symbol+that+photovoltaic+cells+can+produce+real+power+and+will+be+part+of+the+world+s+energy+future
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=from+paris+to+england+solely+on+the+power+of+sunbeams++and+established+a+basis+for+the+pathfinder
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+message+from+all+these+vehicles+is+that+ideas+and+technology+can+be+harnessed+to+produce+remarkable+gains+in+doing+more+with+less
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=gains+that+can+help+us+attain
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=desirable+balance+between+technology+and+nature+the+stakes+are+high+as+we+speed+toward+a+challenging+future
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=buckminster+fuller+said+it+clearly+there+are+no+passengers+on+spaceship+earth+only+crew
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+the+crew+can+and+must+do+more+with+less
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+could+have+the+second+video+the+one+minute+put+in+as+quickly+as+you+can+which+this+will+show+the
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=pathfinder+airplane+in+some+flights+this+past+year+in
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hawaii++and+will+show+a+sequence+of+some+of+the+beauty+behind+it+after+it+had+just+flown+to
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=five+hundred+and+thirty+feet+higher+than+any+propeller+airplane+has+ever+flown+it+s+amazing+just+on+the+puny+power+of+the+sun+by+having+a+super+lightweight+plane+you+re+able+to+get+it+up
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+part+of+a+long+term+program+nasa+sponsored+and+we+worked+very+closely+with+the+whole+thing+being+a
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=results+like+that+flight+and+we+re+working+on+a+bigger+plane+220+foot+span+and+an+intermediate+size+one+with+a+regenerative+fuel+cell+that+can+store+excess+energy+during+the+day+feed+it+back
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+night+and+stay+up+sixty+five+thousand+feet+for+months+at+a+time
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ray+morgan+s+voice+will+come+in+here
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=congenial+hospitality+shown+by+our+hawaiian+and+military+hosts
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=going+out+through+the+internet+while+the+plane+is+flying+and+it+s+exploring+without+polluting+the+stratosphere+that+s+its+goal+the+stratosphere+the+blanket+that+really+controls+the+radiation+of+the+earth+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=permits+life+on+earth+to+be+the+success+that+it+is+probing+that+is+very
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=important+and+also+we+consider+it+as+a+sort+of+poor+man+s
error: request timeout
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=right+overhead+for+months+at+a+time+two+thousand+times+closer+than+the+real+gfc+synchronous
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=satellite++we+couldn+t+bring+one+here+to+fly+it+and+show+you+but+now+let+s+look+at+the+other+end
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=just+done+a+remarkable+job+where+some+have+servos+that+have+gotten+down+to+oh++eighteen+or+twenty+five+grams+his+weigh+one+third+of+a+gram
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+what+he+s+going+to+bring+out+here
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+a+surveillance+drone+that+weighs+about+two+ounces+that+includes+the+video+camera+the+batteries+that+run+it+the+telemetry++the
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+hope+with+the+same+success+that+we+had+last+night+when+we+did+the+practice+so+matt+keenan+just+any+time+you+re+all+right
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+it+s+appearing+on+the+screen+so+you+see+what+it+sees+you+can+imagine+yourself+being+a+mouse+or+fly+inside
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+now+we+re+trying+to+get+the+video
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+we+go+mk+can+you+bring+up+the+house+lights+pm+yeah+the+house+lights+and+we+ll+see+you+all+better
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+be+able+to+fly+the+plane+better+mk+all+right+we+ll+try+to+do+a
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=video+worked+right+for+the+first+few+and+i+don+t+know+why+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+was+only+a+minute+but+i+think+you+d+be+safe+to+have+that+near+the+end+of+the+flight+perhaps
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+say+in+infomercials++we+have+something+much+better+for
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+which+we+re+working+on+planes+that+are+only+six+inches+fifteen+centimeters+in+size+and+matt+s+plane
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+on+the+cover+of+popular+science+last+month
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=showing+what+this+can+lead+to+and+in+a+while+something+this+size+will+have+gps+and+a
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+it++we+ve+had+one+of+these+fly+nine+miles
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=through+the+air+at+thirty+five+miles+an+hour+with+just+a+little+battery+in+it+but+there+s+a+lot+of+technology+going+there+are+just
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=milestones+along+the+way+of+some+remarkable+things+this+one+doesn+t+have+the+video+in+it+but+you+get+a+little+feel+from+what+it+can+do
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=pass+it+down+when+you+re+done++yeah+i+think+i+lost+a+little+orientation+i+looked+up+into+this+light+it+hit+the+building++and+the+building+was+poorly
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+re+beginning+to+see+what+can+be+done+we+re+working+on+projects+now+even+wing+flapping+things+the+size+of+hawk+moths
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=darpa+contracts+working+with+caltech+ucla+where+all+this+leads+i+don+t+know
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+it+practical+i+don+t+know+but+like+any+basic+research+when+you+re+really+forced+to+do+things+that+are+way+beyond+existing+technology+you+can+get+there
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+do+amazing+things+when+you+realize+what+nature+has+been+doing+all+along+as+you+get+to+these+small+scales+you+realize+we+have+a+lot+to+learn+from+nature+not+with
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=747s+but+when+you+get+down+to+the+nature+s+realm
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=nature+has+two+hundred+million+years+of+experience+it+never+makes+a+mistake++because+if+you+make+a+mistake+you+don+t+leave+any+progeny++we+should+have+nothing+but+success+stories
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+you+or+for+birds+and+we+re+learning+a+lot+from+its+fascinating+subjects+in
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=concluding+i+want+to+get+back+to
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+big+picture+and+i+have+just+two+final+slides+to+try+and+put+it+in+perspective+the+first
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ll+just+read+at+last+i+put+in+three+sentences+and+had+it+say+what+i+wanted+over+billions+of+years+on+a+unique+sphere+chance+has+painted+a+thin
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=covering+of+life+complex++improbable+wonderful+and+fragile+suddenly+we+humans+a+recently+arrived+species+no+longer+subject+to+the+checks+and+balances
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=inherent+in+nature+have+grown+in+population+technology+and+intelligence+to+a+position+of+terrible+power+we+now+wield+the+paintbrush
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=re+not+very+bright+we+re+short+on+wisdom+we+re+high+on+technology+where+s+it+going+to+lead+well++inspired+by
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+sentences+i+decided+to+wield+the+paintbrush+every+twenty+five+years+i+do+a+picture+here+s+the+one+tries+to+show+that+the+world+isn+t+getting+any+bigger+sort+of+a+timeline
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=very+non+linear+scale+nature+rates+and+trilobites+and+dinosaurs+and+eventually+we+saw
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=birds+were+flying+overhead+after+pterosaurs++and+then+we+get+to+the+civilization+above+the+little
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=tv+set+with+a+gun+on+it+then+traffic+jams+and+power+systems+and+some+dots+for
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=digital+where+it+s+going+to+lead+i+have+no+idea
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+i+just+put+robotic+and+natural+cockroaches+out+there++but+you+can+fill+in+whatever+you+want+this+is+not+a+forecast++this+is+a+warning
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+have+to+think+seriously+about+it+and+that+time+when+this+is+happening+is+not+one+hundred+years+or+five+hundred+years+things+are+going+on
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+decade+next+decade+it+s+a+very+short+time+that+we+have+to+decide+what+we+are+going+to+do++and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+we+can+get+some+agreement+on+where+we+want+the+world+to+be+desirable+sustainable+when+your+kids+reach+your+age
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+we+actually+can+reach+it+now+i+said+this+was+a+warning+not+a+forecast+that+was
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=before+i+painted+this+before+we+started+in+on+making
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=robotic+versions+of+hawk+moths+and+cockroaches++and+now+i+m+beginning+to+wonder+seriously+was+this+more+of+a+forecast+than+i+wanted+i+personally+think+the+surviving+intelligent+life+form+on+earth+is+not+going+to+be
error: request timeout
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=final+bit+of+sparkle+we+ll+put+in+at+the+very
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=end+here+is+an+utterly+impractical+flight+vehicle++which+is+a+little
error: request timeout
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+if+this+lands+on+you+i+assure+you+it+will+not+hurt+you+but+if+you+reach+out+to+grab+it+or+hold+it+you+will+destroy+it+so+be+gentle+just+act+like
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+wooden+indian+or+something+and+when+it+comes+down
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+ll+see+how+it+goes++we+consider+this+to+be+sort+of+the+spirit
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+wonder+is+it+practical+and+it+turns+out+if+i+had+not+been
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+have+some+light+bulb+changes+we+can+probably+get+it+down+but+it+s+possible+it+s+gone+up+to+a+greater+destiny+up+there
found 0 videos: []
error: no video is found.
sleep 2 seconds to avoid blocking
------<1693>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PaulMacCready_2003.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+that+was+just+one+thing+that
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=got+me+going+in+the+sort+of+things+that+i+m+working+in+now+as+a
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=youngster++i+was+very+interested+in+model+airplanes++ornithopters+autogyros+helicopters+gliders
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=power+planes++indoor+models+outdoor+models++everything++which+i+just+thought+was+a+lot+of+fun++and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=wondered+why+most+other+people+didn+t+share+my+same+enthusiasm+with+them++and+then
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=training+and+after+college+i+got+into+sailplane+flying+power+plane+flying++and
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=considered+the+sailplanes+as+a+sort+of+hobby+and+fun++but+got+tangled+up+with+some+great
error: request timeout
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=else+in+the+field+that+this+was+a+good+way+to+get+into
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=really+deep+science+while+this+was+all+going+on++i+was
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+field+of+weather+modification+although+getting
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+ph+d+in+aeronautics++the+weather+modification+subject+was+getting
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+as+a+graduate+student+i+could+go+around+to+the+various+talks+that+were+being+given+on+a+hitchhiker+ride+to+the+east+coast+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+on+and+everybody+would+talk+to+me+but+all+the+professionals+in+the+field+hated+each+other++and+they+wouldn+t+communicate++and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+a+result+i+got+the+absolutely+unique+background+in+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=field+and+started+a+company+which+did+more+research+in+weather+modification+than+anybody
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+there+are+a+lot+of+things+that+i+just+can+t+go+into+but+then
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=companies+on+some+big+many+year+project++and
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=projects+and+the+company+slowly+grew++the+thing+that+is+exciting+was+in+one+thousand+nine
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=made+a+loan+to+a+friend
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+one+hundred+thousand+dollars+or+i+guaranteed+the+money+at+the+bank+he+needed+them+he+needed+the+money+for+starting+a
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=company+the+company+did+not+succeed++and+he+couldn+t+pay+the+money+back+and+i+was+the+guarantor+of+the+note++so+i
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=had+a+$+one+hundred+thousand
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=seventeen+years+at+the+time+was+fifty+thousand+pounds+which+at+the+exchange+rate+was+just+about+one+hundred+thousand+dollars++so+suddenly+i+was+interested+in
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+way+i+approached+it++first
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thinking+about+ways+to+make+the+planes++was
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=just+like+they+d+been+doing+in+england
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+not+succeeding+and+i+gave+it+up+i
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=figured+nah+there+isn+t+any+simple+easy+way++but+then+got+off+on+a+vacation+trip++and+was+studying+bird+flight+just+for+the
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fun+of+it++and+you+can+watch+a+bird+soaring+around+in+circles++and+measure+the+time++and+estimate+the+bank+angle
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=out+its+speed++and+the+turning+radius+and+so+on+which+i+could
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=do+in+the+car+as+we+re+driving+along+on+a+vacation+trip+with
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+three+sons++young+sons++helping+me++but
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ridiculing+the+whole+thing+very+much+but+that
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=began+thinking+about+how+birds+went+around
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+airplanes+would+how+hang+gliders+would+fly++and+then+other+planes++and+the+idea+of+the
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=airplane+quickly+emerged+was+so+logical+one+should+have+thought+of+it+in+the+first+place+but+one+didn+t+and+it+was+just+keep+the+weight+down
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=seventy+pounds+was+all+it+weighed+but+let+the+size+swell+up
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+a+hang+glider+but+three+times+the+span+three+times+the+cord+you+re+down+to+a+third+of+the+speed+a+third+of+the+power+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+good+bicyclist+can+put+out+that+power+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+worked++and+we+won+the+prize+a+year+later+we
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=flying+a+lot+of+experiments+a+lot+of+things+that+didn+t+work++and+ones+that+did+work+and+the+plane+kept+getting+a+little+better+a+little+better+got+a+good
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=pilot+brian+allen+to+operate+it++and+finally
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=succeeded++but+unfortunately+about+sixty+five+thousand+dollars+was+spent+on+the+project
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+was+only+about+thirty+to+help+retire+the+debt+but+fortunately+henry+kramer+who+put+up+the+prize
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+that+was+a+one+mile+flight
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=put+up+a+new+prize+for+flying+the+english+channel+twenty+one+miles
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+he+thought+it+would+take+another+eighteen+years+for+somebody+to+win+that+we+realized+that+if+you+just+cleaned+up
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=our+gossamer+condor+a+little+bit+the+power+to+fly+would+be+decreased+a+little+bit
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+if+you+decrease+the+power+required+a+little+the+pilot+can+fly+a+much+longer+period+of+time++and+brian+allen+was+able+in+a+miraculous+flight+to+get+the+gossamer+albatross+across+the
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+giving+the+planes+to+the+museum+was+worth+much+more+than+the+the+debt++so
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+five+years++six+years++i+only+had+to+pay+one+third+income+tax
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+there+were+good+economic+reasons+for+the+project
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=done+entirely+for+economic+reasons++and+we+have+not+been+involved+in+any+human+powered+flight+since+then+because
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+prizes+are+all+over+but
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+sure+started+me+thinking+about+various+things+and+immediately
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+we+felt+solar+power+was+going+to+be+so+important+for+the+country+and+the+world+we+didn+t+want+the
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=small+funding+in+the+government+to+be+decreased+which+is+what+the+government+was+trying+to+do+with+it++and+we+thought
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+solar+powered+plane+wouldn+t+really+make+sense+but+you+could+do+it+and+it+would+get+a+lot+of+publicity+for+solar+power+and+maybe+help+that
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+got+a+prize+from+the+lindbergh+foundation+their+annual+prize+and+i
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+collected+all+my+varied+thoughts+and+varied+interests+over+the+years++this+was+the+one+chance+that+i+had+to+focus+on+what+i+really+was+after+and+what+was+important+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+my+surprise++i+realized+the
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+charles+lindbergh+devoted+the+last+third+of+his+life+to+and+preparing+that+paper
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=did+me+a+lot+of+good+i+thought+back+about
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+i+was+a+space+traveler+and+came+and+visited+earth+every+five+thousand+years++and+for
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+few+thousand+visits+i+would+see+the+same+thing
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=every+time+the+little+differences+in+the+earth++but+this+last+time
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=just+coming+round+right+now++suddenly+there+d+be+huge+changes+in+the+environment+in+the+concentration+of+people++and+it+was+just
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=unbelievable+the+amount+of+all+the+the+change+in
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+the+biggest+changes+is+two+hundred+years+ago+we+began+using
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=coal+from+underground++which+has+a+lot+of+pollution++and+one+hundred+years+ago+began+getting+gasoline+from+underground+with+a+lot+of+pollution++and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=gasoline+consumption++or+production+will+reach+its+limit+in+about+ten+years++and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=then+go+down++and+we+wonder
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+s+going+to+happen+with+transportation++i+wanted+to+show+the+slide
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+slide++i+think+is+the+most+important+one+any+of+you+will+see
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+year+two+thousand+you+see+there+and
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+the+weight+of+all+air+and+land+vertebrates+humans+and+muskrats+and+giraffes+and+birds+and+so+on+are+the+red+line+goes+up
error: request timeout
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+green+line+goes+down+that+s+the+wild+nature+portion+humans+livestock+and+pets+are+now+ninety+eight+percent
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+the+total+world+s+mass+of+vertebrates+on+land+and+air+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+don+t+know+what+the+future+will+hold+but+it+s+not+going+to+get+a
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+lower+percentage+ten+thousand+years+ago++the+humans+and+livestock+and+pets+were+not+even+one+tenth+of+one+percent+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=wouldn+t+even+have+been+visible+on+such+a+curve+now+they+are++ninety+eight+percent+and+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think++shows+human+domination+of+the+earth+i+give+a+talk+to+some
error: request timeout
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ask+them+after+they+ve+asked+me+questions+and+i+give+them+a+talk+and
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+on+then+i+ask+them+questions+what+s+the+population+of+the+earth+what+s+the+population+of+the+earth+going+to+be+when+you+re+the+age+of+your+parents
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+i+d+never+really+they+had+never+really+thought+about+but+now+they+think+about+it++and+then+what+population+of+the+earth
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+form+little+groups+all+fighting+with+each+other++and+when+i+leave+two+hours+later++most+of+them+are+saying+about+two+billion
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people++and+they+don+t+have+any+clue+about+how+to+get+down+to+two+billion+nor+do+i+but+i+think+they+re+right+and+this+is
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=rachel+carson+was+thinking+of+these+and+came+out+with+silent+spring+way+back
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=solar+manifesto+by+hermann+scheer+in+germany+claims+all+energy+on+earth+can+be+derived
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+on+you+don+t+need+to+dig+down+for+these+chemicals++and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+can+do+things+much+more+efficiently
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+s+have+the+next+slide+so+this+just+summarizes+it+over+billions+of+years+on+a+unique+sphere+chance+has+painted+a+thin+covering+of+life+complex+and+probable+wonderful
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+fragile+suddenly+we+humans+a+recently+arrived+species+no+longer+subject
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+checks+and+balances+inherent+in+nature+have+grown+in+population+technology+and+intelligence+to+a+position+of+terrible+power
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+now+wield+the+paintbrush+we+re+in+charge+it+s
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+do+a+painting+every+twenty+or+twenty+five+years++this+is+the
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+[+it+]+shows+the+earth+in+a+time+flag+on+the+right+in+trilobites+and+dinosaurs+and+so+on++and+over+the+triangle
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=civilization+and+tv+and+traffic+jams+and+so+on++i+have+no+idea+of+what+comes+next+so+i+just
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=used+robotic+and+natural+cockroaches+as+the+future+as+a+little
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=warning+and+two+weeks+after+this+drawing+was+done+we+actually+had+our+first
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=time+went+on++we+stopped+our+environmental+programs+we+focused+more+on+the+really+serious+energy+problems+of+the+future++and+we+produced+products
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+the+company++and+we+developed+the+impact+car+that+general+motors
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=made+the+ev1+out+of+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=got+the+air+resources+board+to+have+the+regulations+that+stimulated+the+electric+cars+but+they+ve
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+ve+done+a+lot+of
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=things++small+drone+airplanes+and+so+on++i+have
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+have+the+first+video+narrator+with+a+wingspan+of+two+hundred+and+forty+seven+feet+this+makes+her+larger+than+a+boeing+seven
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=her+designers++attention+to+detail+and+her+construction+gives+helios++structure+the+flexibility+and+strength
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+deal+with+the+turbulence+encountered+in+the+atmosphere
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+enables+her+to+easily+ride+through+the+air+currents+as+if+she+s+sliding+along+on+the+ocean+waves+paul+maccready+the+wings+could+touch+together+on+top+and+not+break
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=turning+her+back+to+the+sun+to+maximize+the+power+from+her+solar+array
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+the+sky+gets+darker++and+the+outside+air+temperatures+drop+below+minus+one+hundred+degrees+fahrenheit
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+most+environmentally+hostile+segment+of+helios+s+journey+has+gone+by+without+notice++except+for
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=being+recorded+by+specially+designed+data+acquisition+systems+and+their+associated+sensors
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=approaching+a+peak+radar+altitude+of++ninety+six+thousand+eight+hundred+and+sixty+three+feet++at+four+twelve++p+m+helios+is+standing+on+top+of+ninety+eight+percent+of+the+earth+s+atmosphere
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+more+than+ten+thousand+feet+higher+than+the+previous
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+plane+has+many+purposes+but+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+aimed+for+communications++and+it+can+fly+so+slowly+that+it+ll+just+stay+up+at+sixty+five+thousand+feet
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=will+be+able+to+have+to+stay+up+day+night+day+night+for+six+months+at+a+time++acting+like+the+synchronous+satellite++but+only+ten+miles+above+the+earth+let+s+have+the+next+video++this+shows
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+sends+high+resolution+video+pictures+back+to+the+operator
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+on+board+gps+it+can+navigate+autonomously++and+it+is+rugged+enough+to+self+land+without+damage+pm
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=okay+and+let+s+have+the+next
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=applause+that+plane+is+widely+used+by+the
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=going+to+end+our+visit+with+paul+maccready+s+flying+circus+by+meeting+his+son+tyler+who+with+his+two+brothers
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=helped+build+the+gossamer+condor+twenty+five+years+ago+tyler+maccready+you+can
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=chase+it+like+this+for+hours+aa
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+they+got+bored+with+their+father+s+project
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+invented+an+extraordinary+little+plane+of+their+own+tm+and+i+can+control+it+by+putting+the+lift+on+one+side+of+the+wing+or+on+the+other+aa
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+called+it+their+walkalong+glider
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+got+a+couple+of+these+in+your+gift+bags+and+one+of+the+first+things
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+production+version+seemed+to+dive+a+little+bit+and+so+i+would+just+suggest+you+bend+the+wing+tips+up+a+little+bit+before+you+try+flying+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ll+give+you+a+demonstration+of+how+it+works+the+idea+is+that+it+it+soars+on+the+lift+over+your+body++like+a+seagull+soaring+on+a+cliff
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+the+wind+comes+up+it+has+to+go+over+the+cliff++so+as+you+walk+through+the+through+the+air++it+goes+around+your+body+some+has+to+go+over+you
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+you+just+keep+the+glider+positioned+in+that+up+current++the+launch
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=got+to+hold+it+high+up+over+your+head++and+you+start+walking+forward+and+just+let+go+of+it++and+you+can+control+it+like+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+also+like+it+said+in+the+video++you+can+turn+it+left+or+right+just+by+putting+the+lift+under+one+wing+or+another
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+can+do+it+oops+that+was+going+to+be+a+right+turn+okay+this+one+will+be+a+left
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+you+can+just+control+it++wherever+you+want+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+just+hours+of+fun+and+these+are+no+longer+in+production+so+you+have+real+collector+s+items
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=laughter+and+this+we+just+wanted+to+show+you+if+we+can+get+the+video+running+on+this+yeah+just+an+example
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=laughter+this+was+flying+around+in+the+party+last+night+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+see+how+it+just+can+fly+around+and+you+can+spy+on+anybody+you+want
found 0 videos: []
error: no video is found.
sleep 3 seconds to avoid blocking
------<1694>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PaulMoller_2004.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ask+the+question+you+know+why+is+a+flying+car+or+maybe+more+accurately+a+roadable+aircraft+possible+at+this+time+a+number+of+years+ago
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=predicted+that+flying+cars+of+some+form+would+be+available+now+sixty+years+later
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+tell+you+why+it+s+possible+when+i+was+about+five+years+old+not+very+much+about+a+year+after+mr+ford+made+his+predictions++i+was+living+in+a+rural+part+of
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=canada+on+the+side+of+a+mountain+in+a+very+isolated+area
found 1 videos: [['/talks/larry_brilliant_my_wish_help_me_stop_pandemics', '2006']]
selected: /talks/larry_brilliant_my_wish_help_me_stop_pandemics
sleep 4 seconds to avoid blocking
------<1695>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PaulNicklen_2011.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+journey+to+become+a+polar+specialist+photographing+specializing+in+the+polar+regions+began
found 1 videos: [['/talks/paul_nicklen_animal_tales_from_icy_wonderlands', '2011']]
selected: /talks/paul_nicklen_animal_tales_from_icy_wonderlands
sleep 3 seconds to avoid blocking
------<1696>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PaulPholeros_2013X.stm
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+a+great+goal+i+don+t+think+anyone+in+this+room+would+disagree+what+worries+me
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+when+politicians+with+money+and+charismatic+rock+stars
found 1 videos: [['/talks/paul_pholeros_how_to_reduce_poverty_fix_homes', '2013']]
selected: /talks/paul_pholeros_how_to_reduce_poverty_fix_homes
sleep 3 seconds to avoid blocking
------<1697>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PaulPiff_2013X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+you+to+for+a+moment+think+about+playing+a+game+of+monopoly
found 2 videos: [['/talks/paul_piff_does_money_make_you_mean', '2013'], ['/talks/brenda_romero_gaming_for_understanding', '2012']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=except+in+this+game+that+combination+of+skill++talent+and+luck
found 1 videos: [['/talks/paul_piff_does_money_make_you_mean', '2013']]
selected: /talks/paul_piff_does_money_make_you_mean
sleep 1 seconds to avoid blocking
------<1698>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PaulRomer_2009G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=take+a+look+at+this+picture++it+poses+a+very+fascinating+puzzle+for+us+these+african+students+are+doing+their+homework
found 1 videos: [['/talks/paul_romer_why_the_world_needs_charter_cities', '2009']]
selected: /talks/paul_romer_why_the_world_needs_charter_cities
sleep 5 seconds to avoid blocking
------<1699>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PaulRomer_2011U.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=two+thousand+and+seven+i+decided+that+we+needed+to+reconceptualize+how+we+thought+about+economic+development
found 1 videos: [['/talks/paul_romer_the_world_s_first_charter_city', '2011']]
selected: /talks/paul_romer_the_world_s_first_charter_city
sleep 5 seconds to avoid blocking
------<1700>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PaulRothemund_2007.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+an+ancient+and+universal+concept+that+words+have+power+that+spells+exist+and+that+if+we+could+only+pronounce+the+right+words+then
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=whoosh+you+know+an+avalanche+would+come+and+wipe+out+the
found 1 videos: [['/talks/paul_rothemund_playing_with_dna_that_self_assembles', '2007']]
selected: /talks/paul_rothemund_playing_with_dna_that_self_assembles
sleep 5 seconds to avoid blocking
------<1701>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PaulRothemund_2008.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+argue+vigorously+about+the+definition+of+life+they+ask+if+it+should+have+reproduction+in+it++or+metabolism++or+evolution++and+i+don+t+know+the+answer+to+that+so+i+m+not+going+to+tell+you+i+will+say+that+life+involves
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+this+is+a+computer+program+booted+up+in+a+cell++the+program+would+execute+and+it+could+result
found 1 videos: [['/talks/paul_rothemund_dna_folding_in_detail', '2008']]
selected: /talks/paul_rothemund_dna_folding_in_detail
sleep 3 seconds to avoid blocking
------<1702>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PaulSereno_2005.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=very+important+and+catastrophic+event+changed+the+course+of+of+life+on+land+and+although+we+know+that+the+land+animals+i+m+going+to+talk+about+are+just+the+scum+of+the+earth
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+the+land+the+little+bits+of+land+floating+around+but+they+are+important+to+us+because+they+re+sort+of+in+our+scale+of+experience+from+millimeters+to
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=mammals+radiated+out+to+take+their+place+and+so+we+know+this+in+extraordinary+detail+and+so+this+is+a+core+from+near+bermuda+we+know+that+the+tsunamis+the+earthquakes+and+the+things+that+we+ve+experienced
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+entire+record+of+humankind+history+can
found 1 videos: [['/talks/stephen_petranek_10_ways_the_world_could_end', '2007']]
selected: /talks/stephen_petranek_10_ways_the_world_could_end
sleep 3 seconds to avoid blocking
------<1703>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PaulSnelgrove_2011G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+oceans+cover+some+seventy+percent+of+our+planet+and+i+think+arthur+c+clarke+probably+had+it+right+when+he+said+that+perhaps+we+ought+to+call+our+planet
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=planet+ocean++and+the+oceans+are+hugely+productive+as+you+can+see+by+the+satellite+image+of+photosynthesis+the+production+of+new+life+in+fact+the+oceans+produce+half
found 1 videos: [['/talks/paul_snelgrove_a_census_of_the_ocean', '2012']]
selected: /talks/paul_snelgrove_a_census_of_the_ocean
sleep 2 seconds to avoid blocking
------<1704>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PaulStamets_2008.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=love+a+challenge+and+saving+the+earth+is+probably+a+good+one
found 13 videos: [['/talks/roz_savage_why_i_m_rowing_across_the_pacific', '2010'], ['/talks/bono_my_wish_three_actions_for_africa', '2006'], ['/talks/paul_stamets_6_ways_mushrooms_can_save_the_world', '2008'], ['/talks/bjorn_lomborg_global_priorities_bigger_than_climate_change', '2007'], ['/talks/peter_ward_a_theory_of_earth_s_mass_extinctions', '2009'], ['/talks/james_randi_homeopathy_quackery_and_fraud', '2010'], ['/talks/chris_abani_telling_stories_from_africa', '2007'], ['/talks/bill_gates_innovating_to_zero', '2010'], ['/talks/seth_berkley_hiv_and_flu_the_vaccine_strategy', '2010'], ['/talks/evelyn_glennie_how_to_truly_listen', '2007'], ['/talks/anil_gupta_india_s_hidden_hotbeds_of_invention', '2010'], ['/talks/stewart_brand_mark_z_jacobson_debate_does_the_world_need_nuclear_energy', '2010'], ['/talks/alex_steffen_the_route_to_a_sustainable_future', '2007']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+all+know+the+earth+is+in+trouble++we+have+now+entered+in+the+6x+the+sixth+major+extinction+on+this+planet
found 1 videos: [['/talks/paul_stamets_6_ways_mushrooms_can_save_the_world', '2008']]
selected: /talks/paul_stamets_6_ways_mushrooms_can_save_the_world
sleep 4 seconds to avoid blocking
------<1705>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PaulTudorJones_2015.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+a+story+about+capitalism
found 8 videos: [['/talks/paul_tudor_jones_ii_why_we_need_to_rethink_capitalism', '2015'], ['/talks/niki_okuk_when_workers_own_companies_the_economy_is_more_resilient', '2017'], ['/talks/william_black_how_to_rob_a_bank_from_the_inside_that_is', '2014'], ['/talks/casey_gerald_the_gospel_of_doubt', '2016'], ['/talks/eric_x_li_a_tale_of_two_political_systems', '2013'], ['/talks/yuval_noah_harari_nationalism_vs_globalism_the_new_political_divide', '2017'], ['/talks/thomas_piketty_new_thoughts_on_capital_in_the_twenty_first_century', '2014'], ['/talks/timothy_ihrig_what_we_can_do_to_die_well', '2016']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+a+system+i+love+because+of+the+successes+and+opportunities+it+s+afforded+me+and+millions+of+others+i+started+in
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+pits+and+if+there+was+ever+a+free+market+free+for+all+this+was+it+where+men+wearing+ties+but+acting+like+gladiators+fought+literally+and+physically+for+a+profit
found 1 videos: [['/talks/paul_tudor_jones_ii_why_we_need_to_rethink_capitalism', '2015']]
selected: /talks/paul_tudor_jones_ii_why_we_need_to_rethink_capitalism
sleep 4 seconds to avoid blocking
------<1706>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PaulWolpe_2010X.stm
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+not+design+as+we+usually+think+about+it
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+talk+about+what+is+happening+now+in+our+scientific+biotechnological+culture+where+for+really+the+first+time+in+history++we+have+the+power+to+design+bodies+to+design+animal+bodies+to+design
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=human+bodies+in+the+history+of
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=our+planet++there+have+been+three+great+waves+of+evolution
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+first+wave+of+evolution+is+what+we+think+of+as+darwinian+evolution
found 3 videos: [['/talks/spencer_wells_a_family_tree_for_humanity', '2008'], ['/talks/paul_root_wolpe_it_s_time_to_question_bio_engineering', '2011'], ['/talks/freeman_dyson_let_s_look_for_life_in_the_outer_solar_system', '2008']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+as+you+all+know+species+lived+in+particular+ecological+niches+and+particular+environments+and+the+pressures+of+those+environments+selected+which+changes+through
found 1 videos: [['/talks/paul_root_wolpe_it_s_time_to_question_bio_engineering', '2011']]
selected: /talks/paul_root_wolpe_it_s_time_to_question_bio_engineering
sleep 4 seconds to avoid blocking
------<1707>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PaulZak_2011G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+only+creatures+with+fully+developed+moral+sentiments
found 1 videos: [['/talks/paul_zak_trust_morality_and_oxytocin', '2011']]
selected: /talks/paul_zak_trust_morality_and_oxytocin
sleep 3 seconds to avoid blocking
------<1708>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PavanSukhdev_2011G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=m+here+to+talk+to+you+about+the+economic+invisibility+of+nature
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+bad+news+is+that+mother+nature+s+back+office+isn+t+working+yet+so+those+invoices+don+t+get+issued++but+we+need+to+do+something+about+this+problem
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=began+my+life+as+as+a+markets+professional+and
found 4 videos: [['/talks/pavan_sukhdev_put_a_value_on_nature', '2011'], ['/talks/dan_pink_the_puzzle_of_motivation', '2009'], ['/talks/roger_mcnamee_6_ways_to_save_the_internet', '2011'], ['/talks/greg_stone_saving_the_ocean_one_island_at_a_time', '2010']]
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+most+of+my+recent+effort+has+been+looking+at+the+value+of+what+comes+to+human+beings+from+nature+and+which+doesn+t+get+priced+by+the+markets
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+project+called+teeb+was+started+in+two+thousand+and+seven+and+it+was+launched+by+a+group+of+environment+ministers+of+the+g8+++five
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+their+basic+inspiration+was+a+stern+review+of+lord+stern+they+asked+themselves+a+question+if+economics
found 1 videos: [['/talks/pavan_sukhdev_put_a_value_on_nature', '2011']]
selected: /talks/pavan_sukhdev_put_a_value_on_nature
sleep 2 seconds to avoid blocking
------<1709>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PawanSinha_2009I.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+are+a+blind+child+in+india+you+will+very+likely+have+to+contend+with
found 1 videos: [['/talks/pawan_sinha_how_brains_learn_to_see', '2010']]
selected: /talks/pawan_sinha_how_brains_learn_to_see
sleep 5 seconds to avoid blocking
------<1710>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PearlArredondo_2013S.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=gang+member+who+ran+the+streets++everyone+knew+who+i+was+so+i+thought+i+was+a+pretty+big
found 3 videos: [['/talks/pearl_arredondo_my_story_from_gangland_daughter_to_star_teacher', '2013'], ['/talks/dave_isay_everyone_around_you_has_a_story_the_world_needs_to_hear', '2015'], ['/talks/johann_hari_everything_you_think_you_know_about_addiction_is_wrong', '2015']]
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+even+though+my+dad+spent+most+of+my+life+in+and+out+of+jail++i+had+an+amazing+mom+who+was+just+fiercely+independent+she+worked+at+the+local+high+school
found 1 videos: [['/talks/pearl_arredondo_my_story_from_gangland_daughter_to_star_teacher', '2013']]
selected: /talks/pearl_arredondo_my_story_from_gangland_daughter_to_star_teacher
sleep 2 seconds to avoid blocking
------<1711>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PeggyOrenstein_2016W.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+several+years+now+we+ve+been+engaged+in+a+national+debate+about+sexual+assault+on+campus
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=no+question+it+s+crucial+that+young+people+understand+the+ground+rules+for+consent
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+that+s+where+the+conversation+about+sex+is+ending+and+in+that+vacuum+of
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=information+the+media+and+the+internet+that+new+digital+street+corner+are+educating+our+kids+for+us
found 1 videos: [['/talks/peggy_orenstein_what_young_women_believe_about_their_own_sexual_pleasure', '2017']]
selected: /talks/peggy_orenstein_what_young_women_believe_about_their_own_sexual_pleasure
sleep 4 seconds to avoid blocking
------<1712>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PenelopeBoston_2006.stm
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=early+on+in+my+life+was+looking+for+exotic+life+forms+in+exotic+places+and+at+that+time+i+was+working+in+the+antarctic+and+the+arctic+and+high+deserts+and+low+deserts
found 1 videos: [['/talks/penelope_boston_there_might_just_be_life_on_mars', '2008']]
selected: /talks/penelope_boston_there_might_just_be_life_on_mars
sleep 5 seconds to avoid blocking
------<1713>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PeteAlcorn_2009.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+used+to+be+a+malthusian+this+was+my+mental+model+of+the+world
found 1 videos: [['/talks/pete_alcorn_the_world_in_2200', '2009']]
selected: /talks/pete_alcorn_the_world_in_2200
sleep 4 seconds to avoid blocking
------<1714>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PeterAttia_2013P.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=never+forget+that+day+back+in+the
found 13 videos: [['/talks/cesar_kuriyama_one_second_every_day', '2013'], ['/talks/melinda_gates_let_s_put_birth_control_back_on_the_agenda', '2012'], ['/talks/diana_nyad_never_ever_give_up', '2013'], ['/talks/robin_nagle_what_i_discovered_in_new_york_city_trash', '2013'], ['/talks/linda_cliatt_wayman_how_to_fix_a_broken_school_lead_fearlessly_love_hard', '2015'], ['/talks/jose_miguel_sokoloff_how_christmas_lights_helped_guerrillas_put_down_their_guns', '2014'], ['/talks/jeff_hancock_the_future_of_lying', '2012'], ['/talks/vincent_cochetel_i_was_held_hostage_for_317_days_here_s_what_i_thought_about', '2015'], ['/talks/chris_burkard_the_joy_of_surfing_in_ice_cold_water', '2015'], ['/talks/nonny_de_la_pena_the_future_of_news_virtual_reality', '2015'], ['/talks/mark_plotkin_what_the_people_of_the_amazon_know_that_you_don_t', '2014'], ['/talks/nancy_duarte_the_secret_structure_of_great_talks', '2012'], ['/talks/dan_pacholke_how_prisons_can_help_inmates_live_meaningful_lives', '2014']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=spring+of+two+thousand+and+six
found 12 videos: [['/talks/anil_ananthaswamy_what_it_takes_to_do_extreme_astrophysics', '2011'], ['/talks/io_tillett_wright_fifty_shades_of_gay', '2013'], ['/talks/pico_iyer_where_is_home', '2013'], ['/talks/nicolas_perony_puppies_now_that_i_ve_got_your_attention_complexity_theory', '2014'], ['/talks/holly_morris_why_stay_in_chernobyl_because_it_s_home', '2013'], ['/talks/elora_hardy_magical_houses_made_of_bamboo', '2015'], ['/talks/paul_pholeros_how_to_reduce_poverty_fix_homes', '2013'], ['/talks/david_epstein_are_athletes_really_getting_faster_better_stronger', '2014'], ['/talks/sara_seager_the_search_for_planets_beyond_our_solar_system', '2015'], ['/talks/james_stavridis_a_navy_admiral_s_thoughts_on_global_security', '2012'], ['/talks/annie_murphy_paul_what_we_learn_before_we_re_born', '2011'], ['/talks/jake_barton_the_museum_of_you', '2013']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+a+surgical+resident+at+the+johns+hopkins+hospital++taking+emergency+call++i+got+paged+by+the+e+r+around+two+in+the+morning
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+come+and+see+a+woman+with+a+diabetic+ulcer+on+her+foot
found 1 videos: [['/talks/peter_attia_is_the_obesity_crisis_hiding_a_bigger_problem', '2013']]
selected: /talks/peter_attia_is_the_obesity_crisis_hiding_a_bigger_problem
sleep 2 seconds to avoid blocking
------<1715>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PeterDiamandis_2005G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+mission+in+life+since+i+was+a+kid
found 1 videos: [['/talks/bill_stone_inside_the_world_s_deepest_caves', '2007']]
selected: /talks/bill_stone_inside_the_world_s_deepest_caves
sleep 2 seconds to avoid blocking
------<1716>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PeterDiamandis_2008.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=those+of+you+who+know+me+know+how+passionate+i+am+about+opening+the+space+frontier+so
found 1 videos: [['/talks/peter_diamandis_stephen_hawking_s_zero_g_flight', '2008']]
selected: /talks/peter_diamandis_stephen_hawking_s_zero_g_flight
sleep 3 seconds to avoid blocking
------<1717>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PeterDiamandis_2012.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+wake+of+bin+laden+s+death+have+spiked
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+those+are+just+a+few+of+the+clips+i+collected+over+the+last+six+months
found 2 videos: [['/talks/peter_diamandis_abundance_is_our_future', '2012'], ['/talks/aaron_koblin_visualizing_ourselves_with_crowd_sourced_data', '2011']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=could+have+easily+been+the+last+six+days+or+the+last+six+years++the+point+is+that+the+news+media+preferentially+feeds+us+negative+stories+because+that
found 1 videos: [['/talks/peter_diamandis_abundance_is_our_future', '2012']]
selected: /talks/peter_diamandis_abundance_is_our_future
sleep 1 seconds to avoid blocking
------<1718>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PeterDonnelly_2005G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+other+speakers+have+said+it+s+a+rather+daunting+experience+a+particularly+daunting+experience+to+be+speaking+in+front+of+this+audience
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+unlike+the+other+speakers+i+m+not+going+to+tell+you+about+the+mysteries+of+the+universe+or+the+wonders+of+evolution++or+the+really+clever+innovative+ways+people+are
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=attacking+the+major+inequalities+in+our+world++or+even+the+challenges+of
found 1 videos: [['/talks/peter_donnelly_how_juries_are_fooled_by_statistics', '2006']]
selected: /talks/peter_donnelly_how_juries_are_fooled_by_statistics
sleep 2 seconds to avoid blocking
------<1719>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PeterDoolittle_2013G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+yesterday+i+was+out+in+the+street+in+front+of+this+building++and
found 4 videos: [['/talks/jr_my_wish_use_art_to_turn_the_world_inside_out', '2011'], ['/talks/peter_doolittle_how_your_working_memory_makes_sense_of_the_world', '2013'], ['/talks/mac_barnett_why_a_good_book_is_a_secret_door', '2014'], ['/talks/yuval_noah_harari_what_explains_the_rise_of_humans', '2015']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+walking+down+the+sidewalk
found 9 videos: [['/talks/ed_gavagan_a_story_about_knots_and_surgeons', '2012'], ['/talks/phil_hansen_embrace_the_shake', '2013'], ['/talks/chris_downey_design_with_the_blind_in_mind', '2013'], ['/talks/peter_doolittle_how_your_working_memory_makes_sense_of_the_world', '2013'], ['/talks/eli_beer_the_fastest_ambulance_a_motorcycle', '2013'], ['/talks/chip_kidd_the_art_of_first_impressions_in_design_and_life', '2015'], ['/talks/neil_pasricha_the_3_a_s_of_awesome', '2011'], ['/talks/amanda_burden_how_public_spaces_make_cities_work', '2014'], ['/talks/andreas_ekstrom_the_moral_bias_behind_your_search_results', '2015']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+had+company+several+of+us+and+we+were+all+abiding+by+the+rules+of+walking+down+sidewalks++we+re+not+talking+each+other++we+re+facing+forward++we+re+moving
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+the+person+in+front+of+me
found 13 videos: [['/talks/ron_mccallum_how_technology_allowed_me_to_read', '2013'], ['/talks/ramona_pierson_an_unexpected_place_of_healing', '2011'], ['/talks/josette_sheeran_ending_hunger_now', '2011'], ['/talks/kelli_swazey_life_that_doesn_t_end_with_death', '2013'], ['/talks/robert_hammond_building_a_park_in_the_sky', '2011'], ['/talks/wadah_khanfar_a_historic_moment_in_the_arab_world', '2011'], ['/talks/sarah_kay_if_i_should_have_a_daughter', '2011'], ['/talks/andrew_solomon_depression_the_secret_we_share', '2013'], ['/talks/leyla_acaroglu_paper_beats_plastic_how_to_rethink_environmental_folklore', '2014'], ['/talks/janine_di_giovanni_what_i_saw_in_the_war', '2013'], ['/talks/geena_rocero_why_i_must_come_out', '2014'], ['/talks/kimberley_motley_how_i_defend_the_rule_of_law', '2014'], ['/talks/chip_kidd_the_art_of_first_impressions_in_design_and_life', '2015']]
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+m+watching+him+and+he+slows+down+and+finally+he+stops++well+that+wasn+t+fast+enough+for+me
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+put+on+my+turn+signal++and+i+walked+around+him++and+as+i+walked+i+looked+to+see+what+he+was+doing++and+he+was+doing+this
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+was+texting++and+he+couldn+t+text+and+walk+at+the+same+time++now+we+could+approach+this+from+a+working+memory
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=perspective+or+from+a+multitasking+perspective+we+re+going+to+do+working+memory+today++now+working+memory
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+that+part+of+our+consciousness+that+we+are
found 14 videos: [['/talks/john_searle_our_shared_condition_consciousness', '2013'], ['/talks/antonio_damasio_the_quest_to_understand_consciousness', '2011'], ['/talks/peter_doolittle_how_your_working_memory_makes_sense_of_the_world', '2013'], ['/talks/martine_rothblatt_my_daughter_my_wife_our_robot_and_the_quest_for_immortality', '2015'], ['/talks/alison_gopnik_what_do_babies_think', '2011'], ['/talks/carl_safina_what_are_animals_thinking_and_feeling', '2015'], ['/talks/david_eagleman_can_we_create_new_senses_for_humans', '2015'], ['/talks/lauren_zalaznick_the_conscience_of_television', '2011'], ['/talks/russell_foster_why_do_we_sleep', '2013'], ['/talks/chris_anderson_ted_questions_no_one_knows_the_answers_to', '2012'], ['/talks/aaron_o_connell_making_sense_of_a_visible_quantum_object', '2011'], ['/talks/donald_hoffman_do_we_see_reality_as_it_is', '2015'], ['/talks/chelsea_shields_how_i_m_working_for_change_inside_my_church', '2015'], ['/talks/sarah_jayne_blakemore_the_mysterious_workings_of_the_adolescent_brain', '2012']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=aware+of+at+any+given+time+of+day+you+re+going+it+right+now+it+s+not+something+we+can+turn+off++if+you+turn+it+off+that+s+called+a+coma
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=okay+so+right+now+you+re+doing+just+fine
found 12 videos: [['/talks/stewart_brand_the_dawn_of_de_extinction_are_you_ready', '2013'], ['/talks/thomas_goetz_it_s_time_to_redesign_medical_data', '2011'], ['/talks/raffaello_d_andrea_the_astounding_athletic_power_of_quadcopters', '2013'], ['/talks/amy_webb_how_i_hacked_online_dating', '2013'], ['/talks/alice_goffman_how_we_re_priming_some_kids_for_college_and_others_for_prison', '2015'], ['/talks/toby_eccles_invest_in_social_change', '2013'], ['/talks/david_kwong_two_nerdy_obsessions_meet_and_it_s_magic', '2014'], ['/talks/susan_solomon_the_promise_of_research_with_stem_cells', '2012'], ['/talks/bruce_feiler_the_council_of_dads', '2011'], ['/talks/andrew_stanton_the_clues_to_a_great_story', '2012'], ['/talks/vinay_venkatraman_technology_crafts_for_the_digitally_underserved', '2012'], ['/talks/nicholas_negroponte_a_30_year_history_of_the_future', '2014']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+working+memory+has+four+basic+components
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+allows+us+to+store+some+immediate+experiences+and+a+little+bit+of+knowledge+it+allows+us+to+reach+back+into+our+long+term+memory+and+pull+some+of+that+in+as+we+need+it
error: request timeout
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+light+of+whatever+our+current+goal+is++now+the+current+goal+isn+t+something+like+i+want+to+be+president+or+the+best+surfer+in+the+world+it+s+more+mundane+i+d+like+that+cookie
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+need+to+figure+out+how+to+get+into+my+hotel+room++now+working+memory+capacity+is+our+ability+to+leverage+that+our+ability+to+take
found 1 videos: [['/talks/peter_doolittle_how_your_working_memory_makes_sense_of_the_world', '2013']]
selected: /talks/peter_doolittle_how_your_working_memory_makes_sense_of_the_world
sleep 3 seconds to avoid blocking
------<1720>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PeterEigen_2009X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=am+going+to+speak+about+corruption+but+i+would+like+to
found 8 videos: [['/talks/ngozi_okonjo_iweala_want_to_help_africa_do_business_here', '2007'], ['/talks/peter_eigen_how_to_expose_the_corrupt', '2010'], ['/talks/ory_okolloh_how_i_became_an_activist', '2008'], ['/talks/patrick_awuah_how_to_educate_leaders_liberal_arts', '2007'], ['/talks/bjarke_ingels_3_warp_speed_architecture_tales', '2009'], ['/talks/ngozi_okonjo_iweala_aid_versus_trade', '2007'], ['/talks/wael_ghonim_inside_the_egyptian_revolution', '2011'], ['/talks/andrew_mwenda_aid_for_africa_no_thanks', '2007']]
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=two+different+things+one+is+the+large+global+economy+the+large+globalized
found 3 videos: [['/talks/peter_eigen_how_to_expose_the_corrupt', '2010'], ['/talks/laurie_garrett_lessons_from_the_1918_flu', '2009'], ['/talks/thomas_barnett_let_s_rethink_america_s_military_strategy', '2007']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+other+one+is+the+small+and+very+limited+capacity+of+our+traditional+governments+and+their+international+institutions
found 1 videos: [['/talks/peter_eigen_how_to_expose_the_corrupt', '2010']]
selected: /talks/peter_eigen_how_to_expose_the_corrupt
sleep 1 seconds to avoid blocking
------<1721>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PeterFankhauser_2011G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+me+introduce+to+you+rezero+this+little+fellow+was+developed+by+a+group+of+ten+undergraduate+students+at+the+autonomous+systems+laboratory+at
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=instead+of+wheels+a+ballbot+is+balancing+and+moving+on+one+single+ball
found 1 videos: [['/talks/peter_fankhauser_meet_rezero_the_dancing_ballbot', '2011']]
selected: /talks/peter_fankhauser_meet_rezero_the_dancing_ballbot
sleep 2 seconds to avoid blocking
------<1722>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PeterGabriel_2006.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+love+trees++and+i+m+very+lucky+because+we+live+near+a+wonderful+arboretum++and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sundays++usually+i+d+go+there+with+my+wife+and+now+with+my+four+year+old+and+we+d+climb+in+the+trees+we+d+play+hide
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+second+school+i+was+at
found 2 videos: [['/talks/philip_rosedale_life_in_second_life', '2008'], ['/talks/gever_tulley_5_dangerous_things_you_should_let_your_kids_do', '2007']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=had+big+trees+too+had+a+fantastic+tulip+tree+i+think+it+was+the+biggest+in+the+country
found 1 videos: [['/talks/peter_gabriel_fight_injustice_with_raw_video', '2006']]
selected: /talks/peter_gabriel_fight_injustice_with_raw_video
sleep 1 seconds to avoid blocking
------<1723>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PeterGabriel_Panel_2013.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=may+think+you+re+looking+through+a+window+at+a+dolphin
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=spinning+playfully+but+what+you+re+actually+looking+through+is+a+two+way+mirror+at+a+dolphin+looking+at+itself
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+a+dolphin+that+is+self+aware+this+dolphin+has+self+awareness+it+s+a+young+dolphin+named+bayley
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+been+very+interested+in+understanding+the+nature+of+the+intelligence+of+dolphins+for+the+past+thirty+years+how+do+we+explore+intelligence+in+this+animal+that+s+so
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=different+from+us+and+what+i+ve+used+is+a+very+simple+research+tool+a+mirror+and+we+ve+gained+great+information+reflections+of+these+animal+minds
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=only+non+human+animals+to+show+mirror+self+recognition+we+used+to+think+this+was+a+uniquely+human+ability+but+we+learned+that+the+great+apes+our+closest+relatives+also+show+this+ability
found 1 videos: [['/talks/diana_reiss_peter_gabriel_neil_gershenfeld_and_vint_cerf_the_interspecies_internet_an_idea_in_progress', '2013']]
selected: /talks/diana_reiss_peter_gabriel_neil_gershenfeld_and_vint_cerf_the_interspecies_internet_an_idea_in_progress
sleep 4 seconds to avoid blocking
------<1724>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PeterHaas_2010G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+learned+about+the+haiti+earthquake+by+skype+my+wife+sent+me+a+message
found 1 videos: [['/talks/peter_haas_when_bad_engineering_makes_a_natural_disaster_even_worse', '2010']]
selected: /talks/peter_haas_when_bad_engineering_makes_a_natural_disaster_even_worse
sleep 5 seconds to avoid blocking
------<1725>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PeterHirschberg_2007P.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=good+morning+you+know++the+computer+and+television+both+recently+turned+sixty+and+today+i+d+like+to+talk+about+their+relationship
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=despite+their+middle+age+if+you+ve+been+following+the+themes+of+this+conference+or+the+entertainment+industry++it+s+pretty+clear+that+one+has+been+picking+on+the+other
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+it+s+about+time+that+we+talked+about+how+the+computer+ambushed+television+or+why+the+invention+of+the+atomic+bomb+unleashed+forces
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+lead+to+the+writers++strike++and+it+s+not+just+what+these+are+doing+to+each+other+but+it+s+what+the+audience+thinks+that+really+frames+this+matter
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+get+a+sense+of+this+and+it+s+been+a+theme+we+ve+talked+about
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=just+arrange+these+from+what+s+important+to+you+and+what+s+not++and+then+tell+me+why+let+s+listen+to+what+happens+when+they+get+to+the+portion+of+the+discussion+on+television+girl+one
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+i+think+it+s+important
found 4 videos: [['/talks/michelle_obama_a_passionate_personal_case_for_education', '2009'], ['/talks/reed_kroloff_a_tour_of_modern_architecture', '2008'], ['/talks/jacqueline_novogratz_patient_capitalism', '2007'], ['/talks/eames_demetrios_the_design_genius_of_charles_ray_eames', '2009']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+like+not+necessary+because+you+can+do+a+lot+of+other+stuff+with+your+free+time+than+watch+programs
found 3 videos: [['/talks/peter_hirshberg_the_web_is_more_than_better_tv', '2008'], ['/talks/dave_eggers_my_wish_once_upon_a_school', '2008'], ['/talks/cary_fowler_one_seed_at_a_time_protecting_the_future_of_food', '2009']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=peter+hirshberg+which+is+more+fun+internet+or+tv+girls+internet+girl+two+i+think+we+the+reasons+one+of+the+reasons+we+put+computer+before+tv+is+because
found 1 videos: [['/talks/peter_hirshberg_the_web_is_more_than_better_tv', '2008']]
selected: /talks/peter_hirshberg_the_web_is_more_than_better_tv
sleep 5 seconds to avoid blocking
------<1726>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PeterHirshberg_2007P.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+to+talk+about+their+relationship
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=despite+their+middle+age+if+you+ve+been+following+the+themes+of+this+conference+or+the+entertainment+industry+it+s+pretty+clear+that+one+has+been+picking+on+the+other
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+it+s+about+time+that+we+talked+about+how+the+computer+ambushed+television+or+why+the+invention+of+the+atomic+bomb+unleashed+forces+that+lead+to
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+writers+strike+and+it+s+not+just+what+these+are+doing+to+each+other+but+it+s+what+the+audience+thinks+that+really+frames+this+matter
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=recently+talked+to+a+bunch+of+tweeners+i+wrote+on
found 1 videos: [['/talks/peter_hirshberg_the_web_is_more_than_better_tv', '2008']]
selected: /talks/peter_hirshberg_the_web_is_more_than_better_tv
sleep 2 seconds to avoid blocking
------<1727>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PeterMolyneux_2010G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+saw+a+piece+of+technology+called+kinect+it+was+called+natal
found 1 videos: [['/talks/peter_molyneux_meet_milo_the_virtual_boy', '2010']]
selected: /talks/peter_molyneux_meet_milo_the_virtual_boy
sleep 4 seconds to avoid blocking
------<1728>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PeterNorvig_2012U.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+both+a+learner+and+a+teacher+this+is+me+being+inspired+by+my+first+tutor+my+mom
found 2 videos: [['/talks/peter_norvig_the_100_000_student_classroom', '2012'], ['/talks/cameron_herold_let_s_raise_kids_to_be_entrepreneurs', '2010']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+is+me+teaching+introduction+to+artificial
found 1 videos: [['/talks/peter_norvig_the_100_000_student_classroom', '2012']]
selected: /talks/peter_norvig_the_100_000_student_classroom
sleep 1 seconds to avoid blocking
------<1729>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PeterReinhart_2008P.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+a+wheat+bread+a+whole+wheat+bread++and
found 9 videos: [['/talks/peter_reinhart_the_art_and_craft_of_bread', '2009'], ['/talks/louise_fresco_we_need_to_feed_the_whole_world', '2009'], ['/talks/rory_sutherland_life_lessons_from_an_ad_man', '2009'], ['/talks/dennis_vanengelsdorp_a_plea_for_bees', '2008'], ['/talks/dan_buettner_how_to_live_to_be_100', '2010'], ['/talks/ed_ulbrich_how_benjamin_button_got_his_face', '2009'], ['/talks/seth_godin_how_to_get_your_ideas_to_spread', '2007'], ['/talks/jackie_tabick_the_balancing_act_of_compassion', '2008'], ['/talks/ross_lovegrove_organic_design_inspired_by_nature', '2006']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+made+with+a+new+technique+that+i+ve+been+playing+around+with+and+developing+and+writing+about+which+for+lack+of+a+better+name+we+call+the+epoxy+method+and+i+call+it+an+epoxy+method+because+it+s+not+very+appetizing+i+understand+that+but
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+if+you+think+about+epoxy+what+s+epoxy
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+two+resins+that+are+sort+of+in+and+of+themselves+neither+of+which+can+make+glue++but+when+you+put+the+two+together+something+happens+a+bond+takes+place++and+you+get+this+very+strong+powerful
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=adhesive++well++in+this+technique+what+i+ve+tried+to+do+is+kind+of+gather+all+of+the+knowledge+that+the+bread+baking+world+the+artisan+bread+baking+community
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=been+trying+to+accumulate+over+the+last+twenty+years+or+so+since+we+ve+been+engaged+in+a+bread+renaissance+in+america+and+put+it+together+to+come+up+with
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+would+help+to+take+whole+grain+breads+and+let+s+face+it+everyone+s+trying+to+move+towards+whole+grains+we+finally+after+forty+years+of+knowing+that+wholegrain+was+a+healthier+option+we+re+finally+getting+to+the+point+where+we+actually+are+tipping+over+and+attempting+to+actually+eat+them
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+a+wholegrain+baker+is+you+know+how+do+you+make+it
error: request timeout
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+easy+with+white+flour+to+make+a+good+tasting+bread++white+flour+is+sweet+it+s+mainly+starch+and+starch+when+you+break+it+down+what+is+starch++it+s+thank+you+sugar
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=yes++so+a+baker++and+a+good+baker+knows+how+to+pull+or+draw+forth+the+inherent+sugar
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=trapped+in+the+starch+with+whole+grain+bread+you+have+other+obstacles+you+ve+got+bran+which+is+probably+the+healthiest+part+of+the+bread+for+us+or+the+fiber+for+us+because+it+is+just+loaded+with+fiber+for+the+bran
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+is+fiber+it+s+got+germ+those+are+the+good+things+but+those+aren+t+the+tastiest+parts+of+the+wheat+so+whole+grain+breads
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+we+think+of+something+as+a+health+food+we+think+of+it+as+something+we+eat+out+of+obligation+not+out+of+passion
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+love+for+the+flavor+and+ultimately++the+challenge+of+the+the+baker+the+challenge+of+every+culinary+student+of+every+chef+is+to+deliver+flavor
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=flavor+is+king+flavor+rules+i+call+it+the+flavor+rule+flavor+rules+and+and+you+can+get+somebody+to+eat+something+that+s+good+for+them+once
found 1 videos: [['/talks/dan_gilbert_the_surprising_science_of_happiness', '2006']]
selected: /talks/dan_gilbert_the_surprising_science_of_happiness
sleep 4 seconds to avoid blocking
------<1730>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PeterSaul_2011X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+had+second+thoughts+really+about+whether+i+could+talk+about+this+to+such+a+vital+and+alive+audience+as+you+guys
found 1 videos: [['/talks/peter_saul_let_s_talk_about_dying', '2012']]
selected: /talks/peter_saul_let_s_talk_about_dying
sleep 4 seconds to avoid blocking
------<1731>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PeterSinger_2013.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+a+story+that+s+deeply+unsettled+millions+in+china
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=footage+of+a+two+year+old+girl+hit+by+a+van+and+left+bleeding+in+the+street+by+passersby++footage+too+graphic+to+be+shown
found 1 videos: [['/talks/peter_singer_the_why_and_how_of_effective_altruism', '2013']]
selected: /talks/peter_singer_the_why_and_how_of_effective_altruism
sleep 3 seconds to avoid blocking
------<1732>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PeterTyack_2010Z.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thank+you+so+much+i+m+going+to+try+to+take+you+on
found 8 videos: [['/talks/golan_levin_art_that_looks_back_at_you', '2009'], ['/talks/ory_okolloh_how_i_became_an_activist', '2008'], ['/talks/ben_goldacre_battling_bad_science', '2011'], ['/talks/dennis_hong_my_seven_species_of_robot_and_how_we_created_them', '2010'], ['/talks/rory_sutherland_life_lessons_from_an_ad_man', '2009'], ['/talks/keith_barry_brain_magic', '2008'], ['/talks/jason_fried_why_work_doesn_t_happen_at_work', '2010'], ['/talks/charles_hazlewood_trusting_the_ensemble', '2011']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+journey+of+the+underwater+acoustic+world+of+whales+and+dolphins+since+we+are+such+a+visual+species++it+s+hard+for+us+to+really+understand+this+so+i+ll+use+a+mixture+of+figures+and+sounds+and+hope+this+can+communicate+it+but+let+s+also+think+as+a+visual
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=species+what+it+s+like+when+we+go+snorkeling+or+diving+and+try+to+look
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=underwater+we+really+can+t+see+very+far+our+vision+which+works+so+well+in+air+all+of+a+sudden+is+very+restricted+and+claustrophobic
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+what+marine+mammals+have+evolved+over+the+last+tens+of+millions+of+years+is+ways+to+depend+on+sound+to+both+explore+their+world+and+also+to+stay+in+touch+with+one+another+dolphins+and+toothed+whales+use
found 1 videos: [['/talks/peter_tyack_the_intriguing_sound_of_marine_mammals', '2010']]
selected: /talks/peter_tyack_the_intriguing_sound_of_marine_mammals
sleep 3 seconds to avoid blocking
------<1733>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PeterVanManen_2013X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=racing+is+a+funny+old+business+we+make+a+new+car+every+year+and+then+we+spend+the+rest+of+the+season+trying+to+understand+what+it+is+we+ve+built
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+make+it+better+to+make+it+faster+and+then+the+next+year+we+start+again+now+the+car+you+see+in+front+of
error: request timeout
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+chassis+is+made+up+of+about+eleven+thousand+components+the+engine+another+six+thousand+the+electronics+about+eight+and+a+half+thousand
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+there+s+about+twenty+five+thousand+things+there+that+can+go+wrong
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+motor+racing+is+very+much+about+attention+to+detail
found 1 videos: [['/talks/peter_van_manen_better_baby_care_thanks_to_formula_1', '2013']]
selected: /talks/peter_van_manen_better_baby_care_thanks_to_formula_1
sleep 3 seconds to avoid blocking
------<1734>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PetervanUhm_2011X.stm
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+the+netherlands++with+troops+stationed+around+the+world++i+m+really+honored
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+be+here+today+when+i+look+around+this+tedxamsterdam+venue++i+see
found 1 videos: [['/talks/peter_van_uhm_why_i_chose_a_gun', '2012']]
selected: /talks/peter_van_uhm_why_i_chose_a_gun
sleep 3 seconds to avoid blocking
------<1735>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PeterWard_2008.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+beautiful+picture+from+my+childhood+i+love+the+science+fiction+movies+here+it+is+this+island+earth+and+leave+it+to+hollywood+to+get+it+just+right+two+and+a+half+years+in+the+making+i+mean
found 1 videos: [['/talks/peter_ward_a_theory_of_earth_s_mass_extinctions', '2009']]
selected: /talks/peter_ward_a_theory_of_earth_s_mass_extinctions
sleep 4 seconds to avoid blocking
------<1736>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PeterWeinstock_2016X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+if+i+told+you+there+was+a+new+technology
found 11 videos: [['/talks/poppy_crum_technology_that_knows_what_you_re_feeling', '2018'], ['/talks/dan_gross_why_gun_violence_can_t_be_our_new_normal', '2016'], ['/talks/alix_generous_how_i_learned_to_communicate_my_inner_life_with_asperger_s', '2015'], ['/talks/jia_jiang_what_i_learned_from_100_days_of_rejection', '2016'], ['/talks/nadjia_yousif_why_you_should_treat_the_tech_you_use_at_work_like_a_colleague', '2018'], ['/talks/chris_urmson_how_a_driverless_car_sees_the_road', '2015'], ['/talks/nancy_frates_meet_the_mom_who_started_the_ice_bucket_challenge', '2014'], ['/talks/christiana_figueres_the_inside_story_of_the_paris_climate_agreement', '2016'], ['/talks/rodin_lyasoff_how_autonomous_flying_taxis_could_change_the_way_you_travel', '2018'], ['/talks/sheryl_sandberg_so_we_leaned_in_now_what', '2014'], ['/talks/david_autor_will_automation_take_away_all_our_jobs', '2016']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+when+placed+in+the+hands+of+doctors+and+nurses
found 11 videos: [['/talks/rola_hallam_the_doctors_nurses_and_aid_workers_rebuilding_syria', '2018'], ['/talks/peter_weinstock_lifelike_simulations_that_make_real_life_surgery_safer', '2017'], ['/talks/rishi_manchanda_what_makes_us_get_sick_look_upstream', '2014'], ['/talks/atul_gawande_want_to_get_great_at_something_get_a_coach', '2017'], ['/talks/kristie_overstreet_what_doctors_should_know_about_gender_identity', '2018'], ['/talks/gail_reed_where_to_train_the_world_s_doctors_cuba', '2014'], ['/talks/marc_abrahams_a_science_award_that_makes_you_laugh_then_think', '2014'], ['/talks/dixon_chibanda_why_i_train_grandmothers_to_treat_depression', '2018'], ['/talks/keller_rinaudo_how_we_re_using_drones_to_deliver_blood_and_save_lives', '2017'], ['/talks/scott_williams_the_hidden_role_informal_caregivers_play_in_health_care', '2018'], ['/talks/raj_panjabi_community_health_heroes', '2018']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=improved+outcomes+for+children+and+adults+patients+of+all+ages
error: request timeout
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=reduced+time+in+the+operating+rooms++reduced+anesthetic+times
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=had+the+ultimate+dose+response+curve+that+the+more+you+did+it+the+better+it+benefitted+patients
found 1 videos: [['/talks/peter_weinstock_lifelike_simulations_that_make_real_life_surgery_safer', '2017']]
selected: /talks/peter_weinstock_lifelike_simulations_that_make_real_life_surgery_safer
sleep 1 seconds to avoid blocking
------<1737>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PhilBorges_2006.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+linguist+said+that+of+the+six+thousand+languages+spoken+on+earth
found 1 videos: [['/talks/spencer_wells_a_family_tree_for_humanity', '2008']]
selected: /talks/spencer_wells_a_family_tree_for_humanity
sleep 2 seconds to avoid blocking
------<1738>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PhilHansen_2013.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+in+art+school++i+developed+a+shake+in+my+hand+and+this+was+the+straightest+line+i+could+draw
found 1 videos: [['/talks/phil_hansen_embrace_the_shake', '2013']]
selected: /talks/phil_hansen_embrace_the_shake
sleep 1 seconds to avoid blocking
------<1739>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PhilipeStarck_2007.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+will+understand+nothing+with+my
found 6 videos: [['/talks/nathaniel_kahn_scenes_from_my_architect', '2009'], ['/talks/sylvia_earle_my_wish_protect_our_oceans', '2009'], ['/talks/james_nachtwey_my_wish_let_my_photographs_bear_witness', '2007'], ['/talks/jonathan_drori_what_we_think_we_know', '2008'], ['/talks/nicholas_negroponte_5_predictions_from_1984', '2008'], ['/talks/andrea_ghez_the_hunt_for_a_supermassive_black_hole', '2009']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=type+of+english+it+s+good+for+you+because++you+can+can+have+a+break
found 1 videos: [['/talks/juan_enriquez_the_life_code_that_will_reshape_the_future', '2007']]
selected: /talks/juan_enriquez_the_life_code_that_will_reshape_the_future
sleep 5 seconds to avoid blocking
------<1740>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PhilipEvans_2013S.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=talk+a+little+bit+about+strategy+and+its+relationship+with+technology
found 1 videos: [['/talks/philip_evans_how_data_will_transform_business', '2014']]
selected: /talks/philip_evans_how_data_will_transform_business
sleep 3 seconds to avoid blocking
------<1741>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PhilipHoward_2010.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+always+been+interested+in+the+relationship+of
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=formal+structures+and+human+behavior++if+you+build+a
found 3 videos: [['/talks/philip_k_howard_four_ways_to_fix_a_broken_legal_system', '2010'], ['/talks/stephen_wolfram_computing_a_theory_of_all_knowledge', '2010'], ['/talks/paula_scher_great_design_is_serious_not_solemn', '2009']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=wide+road+out+to+the+outskirts+of+town+people+will+move+there+well+law+is+also+a+powerful+driver+of+human+behavior++and+what+i+d+like+to+discuss
error: request timeout
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+the+need+to+overhaul+and+simplify+the+law+to+release+the+energy+and+passion+of+americans+so+that+we+can+begin+to+address+the+challenges+of+our+society
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+might+have+noticed+that+law+has+grown
found 16 videos: [['/talks/philip_k_howard_four_ways_to_fix_a_broken_legal_system', '2010'], ['/talks/james_randi_homeopathy_quackery_and_fraud', '2010'], ['/talks/bjarke_ingels_3_warp_speed_architecture_tales', '2009'], ['/talks/misha_glenny_the_real_story_of_mcmafia_how_global_crime_networks_work', '2009'], ['/talks/sarah_jayne_blakemore_the_mysterious_workings_of_the_adolescent_brain', '2012'], ['/talks/alan_kay_a_powerful_idea_about_ideas', '2008'], ['/talks/rodney_brooks_robots_will_invade_our_lives', '2008'], ['/talks/niall_ferguson_the_6_killer_apps_of_prosperity', '2011'], ['/talks/charles_anderson_dragonflies_that_fly_across_oceans', '2009'], ['/talks/steven_pinker_human_nature_and_the_blank_slate', '2008'], ['/talks/clay_shirky_institutions_vs_collaboration', '2008'], ['/talks/mustafa_akyol_faith_versus_tradition_in_islam', '2011'], ['/talks/nalini_nadkarni_conserving_the_canopy', '2009'], ['/talks/simon_berrow_how_do_you_save_a_shark_you_know_nothing_about', '2012'], ['/talks/elizabeth_murchison_fighting_a_contagious_cancer', '2011'], ['/talks/rachel_sussman_the_world_s_oldest_living_things', '2010']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=progressively+denser+in+your+lives+over+the+last+decade+or+two+if+you+run+a+business+it+s
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hard+to+do+much+of+anything+without+calling+your+general+counsel
found 1 videos: [['/talks/philip_k_howard_four_ways_to_fix_a_broken_legal_system', '2010']]
selected: /talks/philip_k_howard_four_ways_to_fix_a_broken_legal_system
sleep 4 seconds to avoid blocking
------<1742>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PhilippaNeave_2016S.stm
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+something+doesn+t+exist++there+s+no+word+for+it+and+if+there+s+no+word+for+something+that+something+doesn+t
found 1 videos: [['/talks/amit_kalra_3_creative_ways_to_fix_fashion_s_waste_problem', '2018']]
selected: /talks/amit_kalra_3_creative_ways_to_fix_fashion_s_waste_problem
sleep 2 seconds to avoid blocking
------<1743>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PhilippePetit_2012.stm
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+remind+me+of+the+campfires+of+my+childhood
found 1 videos: [['/talks/philippe_petit_the_journey_across_the_high_wire', '2012']]
selected: /talks/philippe_petit_the_journey_across_the_high_wire
sleep 1 seconds to avoid blocking
------<1744>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PhilippeStarck_2007.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+good+for+you+because+you+can+can+have+a+break+after+all+these+fantastic+people
found 1 videos: [['/talks/dan_gilbert_why_we_make_bad_decisions', '2008']]
selected: /talks/dan_gilbert_why_we_make_bad_decisions
sleep 2 seconds to avoid blocking
------<1745>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PhilipRosedale_2008P.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+at+the+same+time+we+re+going+to+look+at+just+images+from+a
found 17 videos: [['/talks/alison_jackson_an_unusual_glimpse_at_celebrity', '2008'], ['/talks/ellen_dunham_jones_retrofitting_suburbia', '2010'], ['/talks/edward_burtynsky_my_wish_manufactured_landscapes_and_green_education', '2006'], ['/talks/jonathan_harris_the_web_as_art', '2008'], ['/talks/alan_russell_the_potential_of_regenerative_medicine', '2007'], ['/talks/norman_foster_my_green_agenda_for_architecture', '2008'], ['/talks/catherine_mohr_surgery_s_past_present_and_robotic_future', '2009'], ['/talks/lawrence_lessig_laws_that_choke_creativity', '2007'], ['/talks/sam_harris_science_can_answer_moral_questions', '2010'], ['/talks/carolyn_steel_how_food_shapes_our_cities', '2009'], ['/talks/irwin_redlener_how_to_survive_a_nuclear_attack', '2008'], ['/talks/ngozi_okonjo_iweala_aid_versus_trade', '2007'], ['/talks/ed_ulbrich_how_benjamin_button_got_his_face', '2009'], ['/talks/michael_shermer_why_people_believe_weird_things', '2006'], ['/talks/louise_fresco_we_need_to_feed_the_whole_world', '2009'], ['/talks/franco_sacchi_a_tour_of_nollywood_nigeria_s_booming_film_industry', '2008'], ['/talks/frank_gehry_my_days_as_a_young_rebel', '2008']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=photo+stream+that+is+pretty+close+to+live+of+things+that+snapshots+from+second+life
found 1 videos: [['/talks/philip_rosedale_life_in_second_life', '2008']]
selected: /talks/philip_rosedale_life_in_second_life
sleep 1 seconds to avoid blocking
------<1746>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PhilipZimbardo_2011.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+today+i+want+us+to+reflect+on
found 10 videos: [['/talks/candy_chang_before_i_die_i_want_to', '2012'], ['/talks/kathryn_schulz_on_being_wrong', '2011'], ['/talks/jacqueline_novogratz_inspiring_a_life_of_immersion', '2011'], ['/talks/stephen_cave_the_4_stories_we_tell_ourselves_about_death', '2013'], ['/talks/damon_horowitz_we_need_a_moral_operating_system', '2011'], ['/talks/steven_addis_a_father_daughter_bond_one_photo_at_a_time', '2012'], ['/talks/michelle_obama_a_passionate_personal_case_for_education', '2009'], ['/talks/madeleine_albright_on_being_a_woman_and_a_diplomat', '2011'], ['/talks/gary_wolf_the_quantified_self', '2010'], ['/talks/janette_sadik_khan_new_york_s_streets_not_so_mean_any_more', '2013']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+demise+of+guys+guys+are+flaming+out+academically+they+re+wiping+out+socially+with+girls+and+sexually+with+women+other+than+that+there+s+not+much+of+a+problem
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+what+s+the+data+so+the+data+on+dropping+out+is+amazing
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=boys+are+thirty+percent+more+likely+than+girls+to+drop+out+of+school
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+canada++five+boys+drop+out+for+every+three+girls+girls+outperform+boys+now+at+every+level+from+elementary+school+to+graduate+school+there+s+a+ten+percent+differential+between
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=getting+ba+s+and+all+graduate+programs+with+guys+falling+behind+girls+two+thirds+of+all+students
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=remedial+programs+are+guys+and+as+you+all+know
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=boys+are+five+times+more+likely+than+girls+to+be+labeled+as+having+attention+deficit+disorder+and+therefore+we+drug+them+with+ritalin
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+s+the+evidence+of+wiping+out+first+it+s+a+new+fear+of+intimacy+intimacy+means+physical+emotional+connection+with+somebody+else
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+especially+with+somebody+of+the+opposite+sex+who+gives+off+ambiguous
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=every+year+there+s+research+done+on+self+reported+shyness+among+college+students++and+we+re+seeing+a+steady+increase+among+males++and+this+is+two+kinds+it+s+a+social+awkwardness+the+old+shyness+was+a+fear+of+rejection
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+a+social+awkwardness+like+you+re+a+stranger+in+a+foreign+land+they+don+t+know+what+to+say+they+don+t+know+what+to+do+especially+one+on+one+[+with
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+don+t+know+the+language+of+face+contact+the+non+verbal+and+verbal+set+of+rules+that+enable+you+to+comfortably+talk+to+somebody+else++listen+to+somebody+else
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+something+i+m+developing+here+called+social+intensity+syndrome+which+tries+to+account+for+why+guys+really+prefer+male+bonding+over+female+mating
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+turns+out+from+earliest+childhood+boys+and+then+men+prefer
found 1 videos: [['/talks/philip_zimbardo_the_demise_of_guys', '2011']]
selected: /talks/philip_zimbardo_the_demise_of_guys
sleep 2 seconds to avoid blocking
------<1747>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PhilPlait_2011X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+talk+to+you+about+something+kind+of
found 9 videos: [['/talks/peter_saul_let_s_talk_about_dying', '2012'], ['/talks/shea_hembrey_how_i_became_100_artists', '2011'], ['/talks/peter_singer_the_why_and_how_of_effective_altruism', '2013'], ['/talks/paola_antonelli_why_i_brought_pac_man_to_moma', '2013'], ['/talks/martin_villeneuve_how_i_made_an_impossible_film', '2013'], ['/talks/margaret_heffernan_the_dangers_of_willful_blindness', '2013'], ['/talks/julian_baggini_is_there_a_real_you', '2012'], ['/talks/morgan_spurlock_the_greatest_ted_talk_ever_sold', '2011'], ['/talks/jay_silver_hack_a_banana_make_a_keyboard', '2013']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+chunk+of+rock+six+miles+across++moving+something+like+fifty+times+the+speed+of+a+rifle+bullet++slammed+into+the+earth
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+released+its+energy+all+at+once++and+it+was+an+explosion+that+was+mind+numbing
found 1 videos: [['/talks/phil_plait_how_to_defend_earth_from_asteroids', '2011']]
selected: /talks/phil_plait_how_to_defend_earth_from_asteroids
sleep 5 seconds to avoid blocking
------<1748>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PhilZimbardo_2008.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=theologians+have+grappled+with+this+question+for+centuries++what+makes+people+go+wrong++interestingly++i+asked+this+question+when+i+was+a+little+kid++i+grew+up+in+the+south+bronx+inner+city+ghetto+in+new+york+and
found 1 videos: [['/talks/philip_zimbardo_the_psychology_of_evil', '2008']]
selected: /talks/philip_zimbardo_the_psychology_of_evil
sleep 5 seconds to avoid blocking
------<1749>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PhilZimbardo_2009U.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+share+with+you+some+ideas+about+the+secret+power+of+time+in+a+very+short+time
found 8 videos: [['/talks/philip_zimbardo_the_psychology_of_time', '2009'], ['/talks/saul_griffith_everyday_inventions', '2007'], ['/talks/john_hunter_teaching_with_the_world_peace_game', '2011'], ['/talks/sarah_kay_if_i_should_have_a_daughter', '2011'], ['/talks/jacqueline_novogratz_inspiring_a_life_of_immersion', '2011'], ['/talks/dan_buettner_how_to_live_to_be_100', '2010'], ['/talks/wade_davis_dreams_from_endangered_cultures', '2007'], ['/talks/romulus_whitaker_the_real_danger_lurking_in_the_water', '2010']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+s+tune+into+the+conversation+of+the+principals+in+adam+s+temptation
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=life+is+temptation++it+s+all+about+yielding+resisting+yes+no+now
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=present+focus+and+future+focus+promised+virtues+fall+prey+to+the+passions+of+the+moment+of+teenage+girls+who+pledged+sexual+abstinence+and+virginity+until+marriage+thank+you+george+bush
found 1 videos: [['/talks/philip_zimbardo_the_psychology_of_time', '2009']]
selected: /talks/philip_zimbardo_the_psychology_of_time
sleep 4 seconds to avoid blocking
------<1750>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PiaMancini_2014G.stm
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+we+can+all+agree+that+we+re+moving+towards+a+new+model+of+the+state+and+society++but+we+re+absolutely+clueless
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+to+what+this+is+or+what+it+should+be++it+seems+like+we+need+to+have+a+conversation
found 6 videos: [['/talks/stuart_firestein_the_pursuit_of_ignorance', '2013'], ['/talks/andrew_solomon_love_no_matter_what', '2013'], ['/talks/celeste_headlee_10_ways_to_have_a_better_conversation', '2016'], ['/talks/colin_camerer_when_you_re_making_a_deal_what_s_going_on_in_your_brain', '2013'], ['/talks/uri_alon_why_science_demands_a_leap_into_the_unknown', '2014'], ['/talks/edward_snowden_here_s_how_we_take_back_the_internet', '2014']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+democracy+in+our+day+and+age++let+s+think+about+it+this+way+we
found 3 videos: [['/talks/karima_bennoune_when_people_of_muslim_heritage_challenge_fundamentalism', '2014'], ['/talks/yanis_varoufakis_capitalism_will_eat_democracy_unless_we_speak_up', '2016'], ['/talks/jonathan_haidt_can_a_divided_america_heal', '2016']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=citizens+doing+our+very+very+best+to+interact+with
found 4 videos: [['/talks/glenn_greenwald_why_privacy_matters', '2014'], ['/talks/pia_mancini_how_to_upgrade_democracy_for_the_internet_era', '2014'], ['/talks/benjamin_barber_why_mayors_should_rule_the_world', '2013'], ['/talks/catherine_crump_the_small_and_surprisingly_dangerous_detail_the_police_track_about_you', '2014']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=institutions+that+are+based+on+an+information+technology
found 12 videos: [['/talks/rachel_botsman_we_ve_stopped_trusting_institutions_and_started_trusting_strangers', '2016'], ['/talks/philip_evans_how_data_will_transform_business', '2014'], ['/talks/gerard_ryle_how_the_panama_papers_journalists_broke_the_biggest_leak_in_history', '2016'], ['/talks/maria_bezaitis_why_we_need_strangeness', '2013'], ['/talks/paul_conneally_how_mobile_phones_power_disaster_relief', '2012'], ['/talks/pia_mancini_how_to_upgrade_democracy_for_the_internet_era', '2014'], ['/talks/neha_narula_the_future_of_money', '2016'], ['/talks/audrey_choi_how_to_make_a_profit_while_making_a_difference', '2016'], ['/talks/jennifer_pahlka_coding_a_better_government', '2012'], ['/talks/shyam_sankar_the_rise_of_human_computer_cooperation', '2012'], ['/talks/timothy_prestero_design_for_people_not_awards', '2012'], ['/talks/parag_khanna_how_megacities_are_changing_the_map_of_the_world', '2016']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+s+have+a+look+at+some+of+the+characteristics+of+this+system
found 1 videos: [['/talks/matthew_carter_my_life_in_typefaces', '2014']]
selected: /talks/matthew_carter_my_life_in_typefaces
sleep 5 seconds to avoid blocking
------<1751>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PicoIyer_2013G.stm
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+such+a+simple+question+but+these+days+of+course+simple+questions+bring+ever+more+complicated+answers
found 1 videos: [['/talks/danny_hillis_back_to_the_future_of_1994', '2012']]
selected: /talks/danny_hillis_back_to_the_future_of_1994
sleep 5 seconds to avoid blocking
------<1752>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PicoIyer_2014S.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+a+lifelong+traveler+even+as+a+little+kid+i+was+actually+working+out
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+it+would+be+cheaper+to+go+to+boarding+school+in+england+than+just+to+the+best+school+down+the+road+from+my+parents
found 1 videos: [['/talks/pico_iyer_the_art_of_stillness', '2014']]
selected: /talks/pico_iyer_the_art_of_stillness
sleep 3 seconds to avoid blocking
------<1753>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PicoIyer_2016T.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=out+on+the+street++i+ran+into+a+group+of+rough+men
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=standing+beside+their+bicycle+rickshaws++and+one+of+them+came+up+and+offered+to+show+me+around
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+price+he+quoted+was+outrageous
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+less+than+i+would+pay+for+a+bar+of+chocolate+at+home
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+clambered+into+his+trishaw+and+he+began+pedaling+us+slowly+between+palaces+and+pagodas
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+as+he+did+he+told+me+how+he+had+come+to+the+city+from+his+village
found 12 videos: [['/talks/pico_iyer_the_beauty_of_what_we_ll_never_know', '2016'], ['/talks/vivek_maru_how_to_put_the_power_of_law_in_people_s_hands', '2018'], ['/talks/luma_mufleh_don_t_feel_sorry_for_refugees_believe_in_them', '2017'], ['/talks/susan_pinker_the_secret_to_living_longer_may_be_your_social_life', '2017'], ['/talks/oskar_eustis_why_theater_is_essential_to_democracy', '2018'], ['/talks/raj_panjabi_no_one_should_die_because_they_live_too_far_from_a_doctor', '2017'], ['/talks/david_miliband_the_refugee_crisis_is_a_test_of_our_character', '2017'], ['/talks/zeynep_tufekci_online_social_change_easy_to_organize_hard_to_win', '2015'], ['/talks/liz_ogbu_what_if_gentrification_was_about_healing_communities_instead_of_displacing_them', '2018'], ['/talks/jeff_speck_4_ways_to_make_a_city_more_walkable', '2017'], ['/talks/hilary_cottam_social_services_are_broken_how_we_can_fix_them', '2015'], ['/talks/al_gore_the_case_for_optimism_on_climate_change', '2016']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+d+earned+a+degree+in+mathematics+his+dream+was+to+be+a+teacher
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+of+course+life+is+hard+under+a+military+dictatorship
found 1 videos: [['/talks/pico_iyer_the_beauty_of_what_we_ll_never_know', '2016']]
selected: /talks/pico_iyer_the_beauty_of_what_we_ll_never_know
sleep 5 seconds to avoid blocking
------<1754>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PranavMistry_2009I.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=grew+up+interacting+with+the+physical+objects+around+us+there+are+an+enormous+number+of+them+that+we
found 1 videos: [['/talks/pranav_mistry_the_thrilling_potential_of_sixthsense_technology', '2009']]
selected: /talks/pranav_mistry_the_thrilling_potential_of_sixthsense_technology
sleep 3 seconds to avoid blocking
------<1755>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ProsantaChakrabarty_2016U.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+study+of+fishes+it+looks+like+a+big++boring+word
found 1 videos: [['/talks/prosanta_chakrabarty_clues_to_prehistoric_times_found_in_blind_cavefish', '2016']]
selected: /talks/prosanta_chakrabarty_clues_to_prehistoric_times_found_in_blind_cavefish
sleep 3 seconds to avoid blocking
------<1756>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/PWSinger_2009.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+d+begin+with+a+scene+of+war++there+was+little+to+warn+of+the+danger+ahead+the+iraqi+insurgent+had+placed
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+ied+an+improvised+explosive+device+along+the+side+of+the+road+with+great+care+by+two
found 1 videos: [['/talks/p_w_singer_military_robots_and_the_future_of_war', '2009']]
selected: /talks/p_w_singer_military_robots_and_the_future_of_war
sleep 2 seconds to avoid blocking
------<1757>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/QuyenNguyen_2011P.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+the+biggest+myths+in+medicine+and+that+is+the+idea+that+all+we+need+are+more+medical+breakthroughs+and+then+all+of+our+problems+will+be+solved
found 1 videos: [['/talks/quyen_nguyen_color_coded_surgery', '2011']]
selected: /talks/quyen_nguyen_color_coded_surgery
sleep 4 seconds to avoid blocking
------<1758>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RachelArmstrong_2009G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+buildings+today+have+something+in+common
found 11 videos: [['/talks/william_mcdonough_cradle_to_cradle_design', '2007'], ['/talks/james_howard_kunstler_the_ghastly_tragedy_of_the_suburbs', '2007'], ['/talks/clifford_stoll_the_call_to_learn', '2008'], ['/talks/jamais_cascio_tools_for_a_better_world', '2009'], ['/talks/rodney_brooks_robots_will_invade_our_lives', '2008'], ['/talks/rachel_armstrong_architecture_that_repairs_itself', '2009'], ['/talks/beatrice_coron_stories_cut_from_paper', '2011'], ['/talks/geoff_mulgan_post_crash_investing_in_a_better_world', '2009'], ['/talks/reed_kroloff_a_tour_of_modern_architecture', '2008'], ['/talks/stewart_brand_the_long_now', '2008'], ['/talks/zach_kaplan_keith_schacht_toys_and_materials_from_the_future', '2008']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+re+made+using+victorian+technologies
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+involves+blueprints+industrial+manufacturing+and+construction+using+teams+of+workers
found 1 videos: [['/talks/rachel_armstrong_architecture_that_repairs_itself', '2009']]
selected: /talks/rachel_armstrong_architecture_that_repairs_itself
sleep 1 seconds to avoid blocking
------<1759>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RachelBotsman_2010X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+today+i+m+going+to+talk+to+you+about+the+rise+of+collaborative+consumption++i+m+going+to+explain+what+it+is+and+try+and+convince+you+in+just+fifteen+minutes+that+this+isn+t+a+flimsy+idea+or+a
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+a+powerful+cultural+and+economic+force
found 6 videos: [['/talks/rachel_botsman_the_case_for_collaborative_consumption', '2010'], ['/talks/martin_jacques_understanding_the_rise_of_china', '2011'], ['/talks/melinda_gates_let_s_put_birth_control_back_on_the_agenda', '2012'], ['/talks/liz_coleman_a_call_to_reinvent_liberal_arts_education', '2009'], ['/talks/philip_rosedale_life_in_second_life', '2008'], ['/talks/ethan_zuckerman_listening_to_global_voices', '2010']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=reinventing+not+just+what+we+consume++but+how+we+consume
found 2 videos: [['/talks/rachel_botsman_the_case_for_collaborative_consumption', '2010'], ['/talks/tim_brown_designers_think_big', '2009']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+i+m+going+to+start+with+a+deceptively+simple+example
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hands+up+how+many+of+you+have+books++cds++dvds+or+videos+lying+around+your+house+that+you+probably+won+t+use+again++but+you+can+t+quite+bring+yourself+to+throw+away
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=can+t+see+all+the+hands+but+it+looks+like+all+of+you+right+on+our+shelves+at+home
found 2 videos: [['/talks/rachel_botsman_the_case_for_collaborative_consumption', '2010'], ['/talks/mick_mountz_what_happens_inside_those_massive_warehouses', '2012']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+have+a+box+set+of+the+dvd+series+twenty+four+season+six+to+be+precise+i+think+it+was+bought+for+us+around+three+years+ago+for+a+christmas+present
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+my+husband+chris+and+i+love+this+show
found 7 videos: [['/talks/chris_bliss_comedy_is_translation', '2012'], ['/talks/neil_pasricha_the_3_a_s_of_awesome', '2011'], ['/talks/alison_jackson_an_unusual_glimpse_at_celebrity', '2008'], ['/talks/sarah_jones_a_one_woman_global_village', '2009'], ['/talks/rachel_botsman_the_currency_of_the_new_economy_is_trust', '2012'], ['/talks/rachel_botsman_the_case_for_collaborative_consumption', '2010'], ['/talks/c_k_williams_poetry_of_youth_and_age', '2009']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+let+s+face+it+when+you+ve+watched+it+once+maybe+or+twice+you+don+t+really+want+to+watch+it+again+because+you+know+how+jack+bauer+is+going+to+defeat+the+terrorists
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+there+it+sits+on+our+shelves
found 11 videos: [['/talks/rachel_botsman_the_case_for_collaborative_consumption', '2010'], ['/talks/john_wooden_the_difference_between_winning_and_succeeding', '2009'], ['/talks/tristram_stuart_the_global_food_waste_scandal', '2012'], ['/talks/moshe_safdie_building_uniqueness', '2008'], ['/talks/courtney_e_martin_this_isn_t_her_mother_s_feminism', '2011'], ['/talks/molly_crockett_beware_neuro_bunk', '2012'], ['/talks/billy_collins_everyday_moments_caught_in_time', '2012'], ['/talks/eric_sanderson_new_york_before_the_city', '2009'], ['/talks/jeff_hancock_the_future_of_lying', '2012'], ['/talks/dave_eggers_my_wish_once_upon_a_school', '2008'], ['/talks/jonathan_foley_the_other_inconvenient_truth', '2012']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=obsolete+to+us+but+with+immediate
found 1 videos: [['/talks/rachel_botsman_the_case_for_collaborative_consumption', '2010']]
selected: /talks/rachel_botsman_the_case_for_collaborative_consumption
sleep 3 seconds to avoid blocking
------<1760>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RachelBotsman_2012G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+if+someone+asked+you+for+the+three+words+that+would+sum+up
found 12 videos: [['/talks/sebastian_wernicke_1_000_ted_talks_in_six_words', '2012'], ['/talks/scott_fraser_why_eyewitnesses_get_it_wrong', '2012'], ['/talks/rachel_botsman_the_currency_of_the_new_economy_is_trust', '2012'], ['/talks/jr_my_wish_use_art_to_turn_the_world_inside_out', '2011'], ['/talks/gary_slutkin_let_s_treat_violence_like_a_contagious_disease', '2013'], ['/talks/sarah_kay_if_i_should_have_a_daughter', '2011'], ['/talks/bunker_roy_learning_from_a_barefoot_movement', '2011'], ['/talks/leana_wen_what_your_doctor_won_t_disclose', '2014'], ['/talks/jane_mcgonigal_gaming_can_make_a_better_world', '2010'], ['/talks/sheryl_sandberg_so_we_leaned_in_now_what', '2014'], ['/talks/james_flynn_why_our_iq_levels_are_higher_than_our_grandparents', '2013'], ['/talks/mitchell_besser_mothers_helping_mothers_fight_hiv', '2010']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=your+reputation+what+would+you+say
found 7 videos: [['/talks/rachel_botsman_the_currency_of_the_new_economy_is_trust', '2012'], ['/talks/juan_enriquez_your_online_life_permanent_as_a_tattoo', '2013'], ['/talks/omar_ahmad_political_change_with_pen_and_paper', '2010'], ['/talks/seth_shostak_et_is_probably_out_there_get_ready', '2012'], ['/talks/rachel_botsman_the_case_for_collaborative_consumption', '2010'], ['/talks/abraham_verghese_a_doctor_s_touch', '2011'], ['/talks/nadia_al_sakkaf_see_yemen_through_my_eyes', '2011']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+would+people+describe+your+judgment+your+knowledge+your+behaviors+in+different+situations+today+i+d+like+to+explore+with+you+why
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+answer+to+this+question+will+become+profoundly+important+in+an+age+where+reputation+will+be+your+most+valuable+asset
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+d+like+to+start+by+introducing+you+to+someone+whose+life+has+been+changed+by+a+marketplace+fueled+by+reputation
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sebastian+sandys+has+been+a+bed+and+breakfast+host+on+airbnb
error: request timeout
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+caught+up+with+him+recently++where+over+the+course+of+several+cups+of+tea+he+told+me+how+hosting+guests+from+all+over+the+world+has+enriched+his+life++more+than
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fifty+people+have+come+to+stay+in+the+18th+century+watchhouse+he+lives+in+with+his+cat++squeak
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+she+promised+that+she+would+refrain+from+leaving+a+bad+review+on+one+condition+he+got+a+cat
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+sebastian+bought+squeak+to+protect+his+reputation++now++as+many+of+you+know+airbnb+is+a+peer+to+peer+marketplace+that+matches
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+who+have+space+to+rent+with+people+who+are+looking+for+a+place+to+stay+in+over+one+hundred+and+ninety+two+countries++the+places+being+rented
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=things+that+you+might+expect+like+spare+rooms+and+holiday+homes++but+part+of+the+magic+is+the+unique+places+that+you+can+now+access
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=treehouses++teepees++airplane+hangars
found 1 videos: [['/talks/rachel_botsman_the_currency_of_the_new_economy_is_trust', '2012']]
selected: /talks/rachel_botsman_the_currency_of_the_new_economy_is_trust
sleep 5 seconds to avoid blocking
------<1761>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RachelBotsman_2016T.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+all+know+trust+is+fundamental++but+when+it+comes+to+trusting+people+something+profound+is+happening
found 1 videos: [['/talks/rachel_botsman_we_ve_stopped_trusting_institutions_and_started_trusting_strangers', '2016']]
selected: /talks/rachel_botsman_we_ve_stopped_trusting_institutions_and_started_trusting_strangers
sleep 2 seconds to avoid blocking
------<1762>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RachelPike_2009G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+d+like+to+talk+to+you+today+about+the+scale+of+the+scientific+effort+that+goes+into+making+the+headlines+you+see+in+the+paper
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=headlines+that+look+like+this+when+they+have+to+do+with+climate+change+and+like+this+when+they+have+to+do+with+air+quality+or+smog+they+re+two+branches+of+the+same+field+of+atmospheric+science
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=recently+the+headlines+looked+like+this+when+the
found 4 videos: [['/talks/rachel_pike_the_science_behind_a_climate_headline', '2009'], ['/talks/nicholas_christakis_the_hidden_influence_of_social_networks', '2010'], ['/talks/dean_ornish_healing_through_diet', '2008'], ['/talks/brian_skerry_the_ocean_s_glory_and_horror', '2010']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=intergovernmental+panel+on+climate+change++or+ipcc+put+out+their+report+on+the+state+of+understanding+of+the+atmospheric+system
found 1 videos: [['/talks/rachel_pike_the_science_behind_a_climate_headline', '2009']]
selected: /talks/rachel_pike_the_science_behind_a_climate_headline
sleep 5 seconds to avoid blocking
------<1763>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RachelSussman_2010G.stm
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+looks+like+moss+covering+rocks+is+actually+a+shrub+comprised+of+thousands+of+branches+each+containing+clusters+of+tiny+green+leaves+at+the+end+and+so+densely+packed+together+that+you+could+actually+stand+on+top+of+it
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+individual+lives+in+the+atacama+desert+in+chile++and+it+happens+to+be+three+thousand+years+old++it+also+happens+to+be+a+relative+of+parsley
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+the+past+five+years+i+ve+been+researching+working+with+biologists+and+traveling+all+over+the+world+to+find+continuously+living+organisms+that+are+two+thousand+years+old+and+older
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+project+is+part+art+and+part+science+there+s+an+environmental+component++and+i+m+also+trying+to
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+means+in+which+to+step+outside+our+quotidian+experience+of+time+and+to+start+to+consider+a+deeper+timescale
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+selected+two+thousand+years+as+my+minimum+age+because+i+wanted+to+start+at+what+we+consider+to+be+year+zero+and+work+backward+from+there
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+you+re+looking+at+now+is+a+tree+called+jomon+sugi+living+on+the+remote+island
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+tree+was+in+part+a+catalyst+for+the+project+i+d+been+traveling+in+japan+without+an+agenda+other+than+to+photograph++and+then+i+heard+about+this+tree+that+is+two+thousand+one+hundred+and+eighty+years+old+and+knew+that+i+had+to+go+visit+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+wasn+t+until+later+when+i+was+actually+back+home+in+new+york+that+i+got+the+idea+for+the+project+so+it+was+the+slow+churn+if+you+will++i+think+it+was+my+longstanding+desire+to+bring+together+my+interest+in+art+science+and+philosophy+that+allowed+me
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+be+ready+when+the+proverbial+light+bulb+went+on
found 1 videos: [['/talks/rachel_sussman_the_world_s_oldest_living_things', '2010']]
selected: /talks/rachel_sussman_the_world_s_oldest_living_things
sleep 2 seconds to avoid blocking
------<1764>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RaffaelloDAndrea_2013G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+what+does+it+mean+for+a+machine+to
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+will+demonstrate+the+concept+of+machine+athleticism+and+the+research+to+achieve+it+with+the+help+of+these+flying+machines+called+quadrocopters+or+quads+for+short
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=quads+have+been+around+for+a+long+time+they+re+so+popular+these+days+because+they+re+mechanically+simple
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+controlling+the+speeds+of+these+four+propellers++these+machines+can+roll++pitch++yaw+and+accelerate+along+their+common+orientation
found 1 videos: [['/talks/raffaello_d_andrea_the_astounding_athletic_power_of_quadcopters', '2013']]
selected: /talks/raffaello_d_andrea_the_astounding_athletic_power_of_quadcopters
sleep 4 seconds to avoid blocking
------<1765>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RaffaelloDAndrea_2016.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+started+as+a+platform+for+hobbyists+is+poised+to+become+a+multibillion+dollar+industry
found 1 videos: [['/talks/raffaello_d_andrea_meet_the_dazzling_flying_machines_of_the_future', '2016']]
selected: /talks/raffaello_d_andrea_meet_the_dazzling_flying_machines_of_the_future
sleep 3 seconds to avoid blocking
------<1766>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RaghavaKK_2010.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+it+was+in+my+second+grade+that+i+was+caught+drawing+the+bust+of+a+nude+by+michelangelo++i+was+sent+straight+away+to+my+school+principal
found 1 videos: [['/talks/raghava_kk_my_5_lives_as_an_artist', '2010']]
selected: /talks/raghava_kk_my_5_lives_as_an_artist
sleep 4 seconds to avoid blocking
------<1767>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RaghavaKK_2011G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+an+artist+and+a+dad+second+time+around
found 2 videos: [['/talks/shea_hembrey_how_i_became_100_artists', '2011'], ['/talks/golan_levin_art_that_looks_back_at_you', '2009']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thank+you++and+i+want+to+share+with+you+my+latest+art+project+it+s+a+children+s+book+for+the+ipad++it+s+a+little+quirky+and+silly+it+s+called
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=little+kids+do+with+their+parents
found 11 videos: [['/talks/kiran_sethi_kids_take_charge', '2010'], ['/talks/colin_powell_kids_need_structure', '2013'], ['/talks/rufus_griscom_alisa_volkman_let_s_talk_parenting_taboos', '2010'], ['/talks/bruce_feiler_agile_programming_for_your_family', '2013'], ['/talks/adora_svitak_what_adults_can_learn_from_kids', '2010'], ['/talks/jarrett_j_krosoczka_how_a_boy_became_an_artist', '2013'], ['/talks/cameron_herold_let_s_raise_kids_to_be_entrepreneurs', '2010'], ['/talks/kim_gorgens_protecting_the_brain_against_concussion', '2010'], ['/talks/scilla_elworthy_fighting_with_nonviolence', '2012'], ['/talks/ali_carr_chellman_gaming_to_re_engage_boys_in_learning', '2011'], ['/talks/andrew_solomon_love_no_matter_what', '2013']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+this+is+about+potty+training+as+most+of+you+i+hope+know+++you+can+tickle+the+rug++you+can+make+the+baby+poop+you+can+do
found 1 videos: [['/talks/raghava_kk_shake_up_your_story', '2011']]
selected: /talks/raghava_kk_shake_up_your_story
sleep 4 seconds to avoid blocking
------<1768>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RaghavaKK_2012S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=years+ago+my+grandfather+a+young+man+walked+into+a+tent+that+was+converted+into+a+movie+theater+like+that
found 1 videos: [['/talks/raghava_kk_what_s_your_200_year_plan', '2012']]
selected: /talks/raghava_kk_what_s_your_200_year_plan
sleep 1 seconds to avoid blocking
------<1769>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RainerStrack_2014S.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=two+thousand+and+fourteen+is+a+very+special+year+for+me+twenty+years+as+a+consultant+twenty+years+of+marriage++and+i+m+turning+fifty+in+one+month
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+means+i+was+born+in+one+thousand
found 9 videos: [['/talks/margaret_heffernan_forget_the_pecking_order_at_work', '2015'], ['/talks/anders_fjellberg_two_nameless_bodies_washed_up_on_the_beach_here_are_their_stories', '2015'], ['/talks/meera_vijayann_find_your_voice_against_gender_violence', '2014'], ['/talks/shimon_schocken_the_self_organizing_computer_course', '2012'], ['/talks/sangeeta_bhatia_this_tiny_particle_could_roam_your_body_to_find_tumors', '2016'], ['/talks/pico_iyer_where_is_home', '2013'], ['/talks/jonathan_haidt_how_common_threats_can_make_common_political_ground', '2013'], ['/talks/michael_tilson_thomas_music_and_emotion_through_time', '2012'], ['/talks/juan_enriquez_will_our_kids_be_a_different_species', '2012']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+a+small+town+in+germany
found 11 videos: [['/talks/margaret_heffernan_the_dangers_of_willful_blindness', '2013'], ['/talks/rainer_strack_the_workforce_crisis_of_2030_and_how_to_start_solving_it_now', '2014'], ['/talks/david_mackay_a_reality_check_on_renewables', '2012'], ['/talks/john_green_the_nerd_s_guide_to_learning_everything_online', '2015'], ['/talks/melissa_fleming_let_s_help_refugees_thrive_not_just_survive', '2014'], ['/talks/amory_lovins_a_40_year_plan_for_energy', '2012'], ['/talks/samantha_nutt_the_real_harm_of_the_global_arms_trade', '2016'], ['/talks/jim_al_khalili_how_quantum_biology_might_explain_life_s_biggest_questions', '2015'], ['/talks/juliana_rotich_meet_brck_internet_access_built_for_africa', '2013'], ['/talks/rose_george_inside_the_secret_shipping_industry', '2013'], ['/talks/ole_scheeren_why_great_architecture_should_tell_a_story', '2016']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+a+gray+november+day++and+i+was+overdue++the+hospital+s+maternity+ward+was+really+stressed+out+because+a+lot+of+babies+were+born+on+this+gray+november+day
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+a+matter+of+fact+one+thousand+nine+hundred+and+sixty+four+was+the+year+with+the+highest+birth+rate+ever+in+germany+more+than+one+point+three+million+last+year+we+just+hit+over+six+hundred+thousand+so+half+of+my+number
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+the+german+age+pyramid+and+there+the+small+black+point+at+the+top+that+s+me
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+red+you+can+see+the+potential+working+age+population
found 10 videos: [['/talks/jonathan_haidt_how_common_threats_can_make_common_political_ground', '2013'], ['/talks/rainer_strack_the_workforce_crisis_of_2030_and_how_to_start_solving_it_now', '2014'], ['/talks/andreas_schleicher_use_data_to_build_better_schools', '2013'], ['/talks/shawn_achor_the_happy_secret_to_better_work', '2012'], ['/talks/andrew_mcafee_are_droids_taking_our_jobs', '2012'], ['/talks/sal_khan_let_s_teach_for_mastery_not_test_scores', '2016'], ['/talks/jocelyne_bloch_the_brain_may_be_able_to_repair_itself_with_help', '2016'], ['/talks/e_o_wilson_advice_to_a_young_scientist', '2012'], ['/talks/chris_gerdes_the_future_race_car_150mph_and_no_driver', '2012'], ['/talks/dan_pallotta_the_way_we_think_about_charity_is_dead_wrong', '2013']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+people+over+fifteen+and+under
found 1 videos: [['/talks/jon_ronson_strange_answers_to_the_psychopath_test', '2012']]
selected: /talks/jon_ronson_strange_answers_to_the_psychopath_test
sleep 1 seconds to avoid blocking
------<1770>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RajeshRao_2011.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+d+like+to+begin+with+a+thought+experiment
found 6 videos: [['/talks/rajesh_rao_a_rosetta_stone_for_a_lost_language', '2011'], ['/talks/john_maeda_how_art_technology_and_design_inform_creative_leaders', '2012'], ['/talks/andrew_fitzgerald_adventures_in_twitter_fiction', '2013'], ['/talks/geoff_mulgan_post_crash_investing_in_a_better_world', '2009'], ['/talks/nicholas_christakis_the_hidden_influence_of_social_networks', '2010'], ['/talks/stephen_wolfram_computing_a_theory_of_all_knowledge', '2010']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=imagine+that+it+s+four+thousand+years+into+the+future+civilization+as+we+know+it+has+ceased+to+exist
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=no+books+no+electronic+devices+no+facebook+or+twitter
found 1 videos: [['/talks/rajesh_rao_a_rosetta_stone_for_a_lost_language', '2011']]
selected: /talks/rajesh_rao_a_rosetta_stone_for_a_lost_language
sleep 3 seconds to avoid blocking
------<1771>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RajivMaheswaran_2015.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+colleagues+and+i+are+fascinated+by+the+science+of+moving+dots
found 3 videos: [['/talks/rajiv_maheswaran_the_math_behind_basketball_s_wildest_moves', '2015'], ['/talks/emily_balcetis_why_some_people_find_exercise_harder_than_others', '2014'], ['/talks/michael_archer_how_we_ll_resurrect_the_gastric_brooding_frog_the_tasmanian_tiger', '2013']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+what+are+these+dots++well+it+s+all+of+us+and+we+re+moving+in+our+homes+in+our+offices++as+we+shop+and+travel+throughout+our+cities+and+around+the+world
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+wouldn+t+it+be+great+if+we+could+understand+all
found 9 videos: [['/talks/david_chalmers_how_do_you_explain_consciousness', '2014'], ['/talks/matthew_carter_my_life_in_typefaces', '2014'], ['/talks/skylar_tibbits_the_emergence_of_4d_printing', '2013'], ['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013'], ['/talks/kenneth_cukier_big_data_is_better_data', '2014'], ['/talks/al_gore_the_case_for_optimism_on_climate_change', '2016'], ['/talks/leila_hoteit_3_lessons_on_success_from_an_arab_businesswoman', '2016'], ['/talks/bob_mankoff_anatomy_of_a_new_yorker_cartoon', '2013'], ['/talks/t_morgan_dixon_and_vanessa_garrison_the_trauma_of_systematic_racism_is_killing_black_women_a_first_step_toward_change', '2017']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+movement+if+we+could+find+patterns+and+meaning+and+insight+in+it
found 3 videos: [['/talks/rajiv_maheswaran_the_math_behind_basketball_s_wildest_moves', '2015'], ['/talks/fei_fei_li_how_we_re_teaching_computers_to_understand_pictures', '2015'], ['/talks/george_papandreou_imagine_a_european_democracy_without_borders', '2013']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+luckily+for+us+we+live+in+a+time+where+we+re+incredibly+good+at+capturing+information+about+ourselves++so+whether+it+s+through+sensors+or+videos++or+apps++we+can+track+our+movement+with+incredibly+fine+detail
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+it+turns+out+one+of+the+places+where+we+have+the+best+data+about+movement
found 7 videos: [['/talks/rajiv_maheswaran_the_math_behind_basketball_s_wildest_moves', '2015'], ['/talks/ashton_applewhite_let_s_end_ageism', '2017'], ['/talks/andy_yen_think_your_email_s_private_think_again', '2015'], ['/talks/yvette_alberdingk_thijm_the_power_of_citizen_video_to_create_undeniable_truths', '2017'], ['/talks/astro_teller_the_unexpected_benefit_of_celebrating_failure', '2016'], ['/talks/david_eagleman_can_we_create_new_senses_for_humans', '2015'], ['/talks/andrew_mcafee_what_will_future_jobs_look_like', '2013']]
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=whether+it+s+basketball+or+baseball+or+football+or+the+other+football+we+re+instrumenting+our+stadiums+and+our+players+to+track+their+movements+every+fraction+of+a+second
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+probably+guessed+it+moving+dots++so+we+ve+got+mountains+of+moving+dots+and+like+most+raw+data++it+s+hard+to+deal+with+and
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+there+are+things+that+for+example+basketball+coaches+want+to+know
found 2 videos: [['/talks/rajiv_maheswaran_the_math_behind_basketball_s_wildest_moves', '2015'], ['/talks/david_epstein_are_athletes_really_getting_faster_better_stronger', '2014']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+problem+is+they+can+t+know+them+because+they+d+have+to+watch+every+second+of+every+game+remember+it+and+process+it+and+a+person+can+t+do+that
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+a+machine+can+the+problem+is+a+machine+can+t+see+the+game+with+the+eye+of+a+coach+at+least+they
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+have+we+taught+the+machine+to+see
found 19 videos: [['/talks/jeremy_howard_the_wonderful_and_terrifying_implications_of_computers_that_can_learn', '2014'], ['/talks/nick_bostrom_what_happens_when_our_computers_get_smarter_than_we_are', '2015'], ['/talks/suzanne_simard_how_trees_talk_to_each_other', '2016'], ['/talks/andrew_mcafee_what_will_future_jobs_look_like', '2013'], ['/talks/amit_sood_every_piece_of_art_you_ve_ever_wanted_to_see_up_close_and_searchable', '2016'], ['/talks/kevin_kelly_how_ai_can_bring_on_a_second_industrial_revolution', '2016'], ['/talks/christopher_bell_bring_on_the_female_superheroes', '2016'], ['/talks/kenneth_cukier_big_data_is_better_data', '2014'], ['/talks/rajiv_maheswaran_the_math_behind_basketball_s_wildest_moves', '2015'], ['/talks/andrew_solomon_depression_the_secret_we_share', '2013'], ['/talks/andrew_solomon_love_no_matter_what', '2013'], ['/talks/kamau_gachigi_success_stories_from_kenya_s_first_makerspace', '2017'], ['/talks/bran_ferren_to_create_for_the_ages_let_s_combine_art_and_engineering', '2014'], ['/talks/linda_liukas_a_delightful_way_to_teach_kids_about_computers', '2016'], ['/talks/alastair_parvin_architecture_for_the_people_by_the_people', '2013'], ['/talks/tony_fadell_the_first_secret_of_design_is_noticing', '2015'], ['/talks/fei_fei_li_how_we_re_teaching_computers_to_understand_pictures', '2015'], ['/talks/russ_altman_what_really_happens_when_you_mix_medications', '2016'], ['/talks/jim_simons_the_mathematician_who_cracked_wall_street', '2015']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+we+started+simply+we+taught+it+things+like+passes+shots+and+rebounds+things+that+most+casual+fans+would+know
found 1 videos: [['/talks/rajiv_maheswaran_the_math_behind_basketball_s_wildest_moves', '2015']]
selected: /talks/rajiv_maheswaran_the_math_behind_basketball_s_wildest_moves
sleep 3 seconds to avoid blocking
------<1772>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RajPanjabi_2017.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=share+with+you+something+my+father+taught+me+no+condition+is+permanent+it+s
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+lesson+he+shared+with+me+again+and+again+and
found 8 videos: [['/talks/sarah_parcak_help_discover_ancient_ruins_before_it_s_too_late', '2017'], ['/talks/travis_kalanick_uber_s_plan_to_get_more_people_into_fewer_cars', '2016'], ['/talks/jonathan_tepperman_the_risky_politics_of_progress', '2016'], ['/talks/raj_panjabi_no_one_should_die_because_they_live_too_far_from_a_doctor', '2017'], ['/talks/jimmy_nelson_gorgeous_portraits_of_the_world_s_vanishing_people', '2015'], ['/talks/alaa_murabit_what_my_religion_really_says_about_women', '2015'], ['/talks/halla_tomasdottir_it_s_time_for_women_to_run_for_office', '2016'], ['/talks/sydney_jensen_how_can_we_support_the_emotional_well_being_of_teachers', '2019']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+learned+it+to+be+true+the+hard+way
found 22 videos: [['/talks/dame_ellen_macarthur_the_surprising_thing_i_learned_sailing_solo_around_the_world', '2015'], ['/talks/a_j_jacobs_my_journey_to_thank_all_the_people_responsible_for_my_morning_coffee', '2018'], ['/talks/kate_bowler_everything_happens_for_a_reason_and_other_lies_i_ve_loved', '2019'], ['/talks/anne_lamott_12_truths_i_learned_from_life_and_writing', '2017'], ['/talks/monica_lewinsky_the_price_of_shame', '2015'], ['/talks/emilie_wapnick_why_some_of_us_don_t_have_one_true_calling', '2015'], ['/talks/eduardo_briceno_how_to_get_better_at_the_things_you_care_about', '2017'], ['/talks/halla_tomasdottir_it_s_time_for_women_to_run_for_office', '2016'], ['/talks/christopher_bell_bring_on_the_female_superheroes', '2016'], ['/talks/haley_van_dyck_how_a_start_up_in_the_white_house_is_changing_business_as_usual', '2016'], ['/talks/latif_nasser_you_have_no_idea_where_camels_really_come_from', '2016'], ['/talks/david_baron_you_owe_it_to_yourself_to_experience_a_total_solar_eclipse', '2017'], ['/talks/glen_henry_what_i_ve_learned_about_parenting_as_a_stay_at_home_dad', '2018'], ['/talks/sharon_terry_science_didn_t_understand_my_kids_rare_disease_until_i_decided_to_study_it', '2017'], ['/talks/ryan_martin_why_some_anger_can_be_good_for_you', '2018'], ['/talks/ilona_szabo_de_carvalho_4_lessons_i_learned_from_taking_a_stand_against_drugs_and_gun_violence', '2015'], ['/talks/raj_panjabi_no_one_should_die_because_they_live_too_far_from_a_doctor', '2017'], ['/talks/donald_hoffman_do_we_see_reality_as_it_is', '2015'], ['/talks/cecile_richards_the_political_progress_women_have_made_and_what_s_next', '2019'], ['/talks/chris_nowinski_can_i_have_your_brain_the_quest_for_truth_on_concussions_and_cte', '2018'], ['/talks/caitlin_quattromani_and_lauran_arledge_how_our_friendship_survives_our_opposing_politics', '2017'], ['/talks/jonathan_tepperman_the_risky_politics_of_progress', '2016']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+i+am+in+my+fourth+grade+class+this+is+my+yearbook+picture+taken+in+my+class+in+school+in+monrovia+liberia
found 1 videos: [['/talks/raj_panjabi_no_one_should_die_because_they_live_too_far_from_a_doctor', '2017']]
selected: /talks/raj_panjabi_no_one_should_die_because_they_live_too_far_from_a_doctor
sleep 3 seconds to avoid blocking
------<1773>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RalphLangner_2011.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+idea+behind+the+stuxnet+computer+worm+is+actually+quite+simple
found 1 videos: [['/talks/ralph_langner_cracking_stuxnet_a_21st_century_cyber_weapon', '2011']]
selected: /talks/ralph_langner_cracking_stuxnet_a_21st_century_cyber_weapon
sleep 3 seconds to avoid blocking
------<1774>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RamananLaxminarayan_2014P.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+first+patient+to+ever+be+treated+with+an+antibiotic
found 3 videos: [['/talks/ramanan_laxminarayan_the_coming_crisis_in_antibiotics', '2014'], ['/talks/rob_knight_how_our_microbes_make_us_who_we_are', '2015'], ['/talks/atul_gawande_how_do_we_heal_medicine', '2012']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+a+policeman+in+oxford+on+his+day+off+from+work++he+was+scratched+by+a+rose+thorn+while+working+in+the+garden
found 1 videos: [['/talks/ramanan_laxminarayan_the_coming_crisis_in_antibiotics', '2014']]
selected: /talks/ramanan_laxminarayan_the_coming_crisis_in_antibiotics
sleep 3 seconds to avoid blocking
------<1775>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RAMashelkar_2009I.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+big+residual+is+always+value+for+money++all+the+time+we+are+trying+to+get+value+for+money++what+we+don+t+look+for
found 1 videos: [['/talks/r_a_mashelkar_breakthrough_designs_for_ultra_low_cost_products', '2010']]
selected: /talks/r_a_mashelkar_breakthrough_designs_for_ultra_low_cost_products
sleep 4 seconds to avoid blocking
------<1776>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RameshRaskar_2012G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+curiosity+with+this+photo+of+a+bullet
found 1 videos: [['/talks/ramesh_raskar_imaging_at_a_trillion_frames_per_second', '2012']]
selected: /talks/ramesh_raskar_imaging_at_a_trillion_frames_per_second
sleep 4 seconds to avoid blocking
------<1777>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RamonaPierson_2011X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+actually+going+to+share+something+with+you+i+haven+t+talked+about+probably+in+more+than+ten+years++so+bear+with+me+as+i+take+you+through+this+journey
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+was+twenty+two+years+old+i+came+home+from+work
found 12 videos: [['/talks/joshua_prager_in_search_of_the_man_who_broke_my_neck', '2013'], ['/talks/paul_moller_my_dream_of_a_flying_car', '2009'], ['/talks/david_brooks_the_social_animal', '2011'], ['/talks/john_wilbanks_let_s_pool_our_medical_data', '2012'], ['/talks/kakenya_ntaiya_a_girl_who_demanded_school', '2013'], ['/talks/colin_powell_kids_need_structure', '2013'], ['/talks/bruce_feiler_the_council_of_dads', '2011'], ['/talks/paul_pholeros_how_to_reduce_poverty_fix_homes', '2013'], ['/talks/eric_topol_the_wireless_future_of_medicine', '2010'], ['/talks/felix_dennis_odes_to_vice_and_consequences', '2009'], ['/talks/sheena_iyengar_the_art_of_choosing', '2010'], ['/talks/ben_goldacre_battling_bad_science', '2011']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=put+a+leash+on+my+dog+and+went+for+my+usual+run
found 8 videos: [['/talks/ramona_pierson_an_unexpected_place_of_healing', '2011'], ['/talks/heribert_watzke_the_brain_in_your_gut', '2010'], ['/talks/nirmalya_kumar_india_s_invisible_innovation', '2012'], ['/talks/amy_webb_how_i_hacked_online_dating', '2013'], ['/talks/alberto_cairo_there_are_no_scraps_of_men', '2011'], ['/talks/nancy_etcoff_happiness_and_its_surprises', '2009'], ['/talks/esther_duflo_social_experiments_to_fight_poverty', '2010'], ['/talks/emily_levine_a_theory_of_everything', '2009']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+had+no+idea+that+at+that+moment+my+life+was+going+to+change+forever+while+i+was+preparing+my+dog+for+the+run
found 1 videos: [['/talks/ramona_pierson_an_unexpected_place_of_healing', '2011']]
selected: /talks/ramona_pierson_an_unexpected_place_of_healing
sleep 2 seconds to avoid blocking
------<1778>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RamseyMusallam_2013S.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=more+than+just+explosions+chemistry+is+everywhere+have+you+ever+found+yourself+at+a+restaurant+spacing+out+just+doing+this+over+and+over+some+people+nodding+yes
found 1 videos: [['/talks/ramsey_musallam_3_rules_to_spark_learning', '2013']]
selected: /talks/ramsey_musallam_3_rules_to_spark_learning
sleep 2 seconds to avoid blocking
------<1779>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RanaelKaliouby_2015W.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=our+emotions+influence+every+aspect+of+our+lives+from+our+health+and+how+we+learn+to+how+we+do+business+and+make+decisions+big+ones+and+small
found 1 videos: [['/talks/rana_el_kaliouby_this_app_knows_how_you_feel_from_the_look_on_your_face', '2015']]
selected: /talks/rana_el_kaliouby_this_app_knows_how_you_feel_from_the_look_on_your_face
sleep 2 seconds to avoid blocking
------<1780>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RandallMunroe_2014.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+have+a+feature+on+my+website+where+every+week+people+submit+hypothetical+questions+for+me+to+answer
found 1 videos: [['/talks/randall_munroe_comics_that_ask_what_if', '2014']]
selected: /talks/randall_munroe_comics_that_ask_what_if
sleep 3 seconds to avoid blocking
------<1781>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RaulMidonANSWERS_2007.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+really+quite+an+honor+to+be+here+tonight
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+m+really+glad+that+i+stayed+here+and+listened+because+i
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+really+been+inspired+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+play+some+songs+for+you+tonight+that+are+literally+world+premieres+i+ve+been+working+on+my+on+my+new+record+and+i+ve+never+played+these+songs+for+anybody+except+the+microphone
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+a+song+that+that+i+wrote
found 9 videos: [['/talks/nora_york_singing_what_i_want', '2007'], ['/talks/david_pogue_simplicity_sells', '2006'], ['/talks/p_w_singer_military_robots_and_the_future_of_war', '2009'], ['/talks/scott_mccloud_the_visual_magic_of_comics', '2009'], ['/talks/elizabeth_gilbert_your_elusive_creative_genius', '2009'], ['/talks/tom_honey_why_would_god_create_a_tsunami', '2007'], ['/talks/chris_abani_telling_stories_from_africa', '2007'], ['/talks/john_maeda_designing_for_simplicity', '2007'], ['/talks/jeff_hawkins_how_brain_science_will_change_computing', '2007']]
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+meaning+of+technology+which+goes
found 14 videos: [['/talks/kevin_kelly_the_next_5_000_days_of_the_web', '2008'], ['/talks/kary_mullis_play_experiment_discover', '2009'], ['/talks/liz_diller_the_blur_building_and_other_tech_empowered_architecture', '2008'], ['/talks/james_balog_time_lapse_proof_of_extreme_ice_loss', '2009'], ['/talks/eric_sanderson_new_york_before_the_city', '2009'], ['/talks/paul_moller_my_dream_of_a_flying_car', '2009'], ['/talks/p_w_singer_military_robots_and_the_future_of_war', '2009'], ['/talks/j_j_abrams_the_mystery_box', '2008'], ['/talks/jacqueline_novogratz_patient_capitalism', '2007'], ['/talks/dan_dennett_dangerous_memes', '2007'], ['/talks/raul_midon_tembererana', '2008'], ['/talks/rob_forbes_ways_of_seeing', '2009'], ['/talks/bruce_mccall_what_is_retro_futurism', '2009'], ['/talks/ross_lovegrove_organic_design_inspired_by_nature', '2006']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=perfectly+with+this+gathering+i+started+thinking+about+when+i+was+in+college+especially+as+a+blind+person
found 1 videos: [['/talks/raul_midon_tembererana', '2008']]
selected: /talks/raul_midon_tembererana
sleep 3 seconds to avoid blocking
------<1782>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RaulMidonEVERYBODY_2007.stm
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+it+s+difficult+to+be+in+the+world+and+not+be+aware+of+what+s+going+on+and+the+wars+and+so+forth
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+song+kind+of+came+out+of+all+of+that+and+and
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+wrote+a+lot+of+happy+songs+on+my+first+record
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+i+still+stand+by+but+this+has+got+something+else+in+it+it+s+called+peace
error: request timeout
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
error: no video is found.
sleep 5 seconds to avoid blocking
------<1783>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RaulMidon_Everybody_2007.stm
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+it+s+difficult+to+be+in+the+world+and+not+be+aware+of+what+s+going+on+and+the+wars+and+so+forth
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+song+kind+of+came+out+of+all+of+that+and
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+wrote+a+lot+of+happy+songs+on+my+first+record+which+i
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=still+stand+by+but+this+has+got+something+else+in+it+it+s+called
error: request timeout
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
error: no video is found.
sleep 2 seconds to avoid blocking
------<1784>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RaulMidon_Tembererana_2007.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+really+quite+an+honor+to+to+be+here+tonight+and+i+m+really+glad+that
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+i+stayed+here+and+listened+because+i
found 2 videos: [['/talks/becky_blanton_the_year_i_was_homeless', '2009'], ['/talks/raul_midon_tembererana', '2008']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+really+been+inspired++and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+play+some+songs+for+you+tonight+that+are+literally+world+premieres+i+ve+been+working+on+my+on+my+new+record+and+i+ve+never+played+these+songs+for+anybody+except+the+microphone
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+a+song+that+that+i+wrote
error: request timeout
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+meaning+of+technology+which+goes+perfectly
error: request timeout
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+was+in+college+especially+as+a+blind+person
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=doing+a+research+paper+was+a+major+undertaking
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+had+to+go+to+the+library+see+if+you+could+get+them+to+find+the+books+for+you+you+know+footnotes+and+all+that+now+you+can+just+go+on+google
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=look+it+up+i+wish+i+had+that+when+i+was+in+college
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+a+song+about+we+have+all+this+but+what+are+we+going+to+do+with+it+it+s+called+all+the+answers
error: request timeout
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+song+that+started+out+as+a+dream
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+childhood+dream+it+was+one+of+the+titles+that+i+was+sort+of+thinking+about+calling+my+record+except+there+s+a
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+song+is+based+on+what+i+think+was+my+first+childhood
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=attempts+to+to+think+about+invisible+forces
found 3 videos: [['/talks/raul_midon_tembererana', '2008'], ['/talks/rebecca_saxe_how_we_read_each_other_s_minds', '2009'], ['/talks/chris_abani_telling_stories_from_africa', '2007']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+these+dreams+in+which+i+would+be+running
found 3 videos: [['/talks/raul_midon_tembererana', '2008'], ['/talks/emmanuel_jal_the_music_of_a_war_child', '2009'], ['/talks/mike_rowe_learning_from_dirty_jobs', '2009']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=away+from+bad+feelings+is+the+only+way+i+can+put+it
found 2 videos: [['/talks/jane_goodall_what_separates_us_from_chimpanzees', '2007'], ['/talks/helen_fisher_the_brain_in_love', '2008']]
selected: /talks/jane_goodall_what_separates_us_from_chimpanzees
sleep 5 seconds to avoid blocking
------<1785>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RavinAgrawal_2009I.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=right+now+is+the+most+exciting+time+to+see+new+indian+art+contemporary+artists+in+india+are+having+a+conversation+with+the+world+like+never+before+i+thought+it+might+be+interesting+even+for+the+many
found 1 videos: [['/talks/ravin_agrawal_10_young_indian_artists_to_watch', '2010']]
selected: /talks/ravin_agrawal_10_young_indian_artists_to_watch
sleep 4 seconds to avoid blocking
------<1786>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RayAnderson_2009.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=believe+me+or+not+i+come+offering+a+solution
found 5 videos: [['/talks/ray_anderson_the_business_logic_of_sustainability', '2009'], ['/talks/peter_diamandis_our_next_giant_leap', '2008'], ['/talks/anil_gupta_india_s_hidden_hotbeds_of_invention', '2010'], ['/talks/yann_arthus_bertrand_a_wide_angle_view_of_fragile_earth', '2009'], ['/talks/rory_bremner_a_one_man_world_summit', '2009']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+a+very+important+part+of+this+larger+problem+with+the+requisite+focus+on+climate+and+the+solution+i+offer
found 1 videos: [['/talks/ray_anderson_the_business_logic_of_sustainability', '2009']]
selected: /talks/ray_anderson_the_business_logic_of_sustainability
sleep 5 seconds to avoid blocking
------<1787>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RayKurzweil_2005.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+be+here+we+ve+heard+a+lot+about+the+promise
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+technology++and+the+peril++i+ve+been+quite+interested+in+both
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+we+could+convert+zero+point+zero+three+percent+of+the+sunlight+that+falls+on+the+earth+into+energy+we+could+meet
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+of+our+projected+needs+for
found 6 videos: [['/talks/eleni_gabre_madhin_a_commodities_exchange_for_ethiopia', '2007'], ['/talks/ray_kurzweil_the_accelerating_power_of_technology', '2006'], ['/talks/amory_lovins_winning_the_oil_endgame', '2007'], ['/talks/ngozi_okonjo_iweala_aid_versus_trade', '2007'], ['/talks/al_gore_averting_the_climate_crisis', '2006'], ['/talks/lawrence_lessig_laws_that_choke_creativity', '2007']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+can+t+do+that+today+because+solar+panels+are+heavy+expensive+and+very+inefficient+there+are+nano+engineered+designs
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+at+least+have+been+analyzed+theoretically+that+show+the+potential+to+be+very+lightweight+very+inexpensive+very
found 1 videos: [['/talks/ray_kurzweil_the_accelerating_power_of_technology', '2006']]
selected: /talks/ray_kurzweil_the_accelerating_power_of_technology
sleep 3 seconds to avoid blocking
------<1788>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RayKurzweil_2009U.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=information+technology+grows+in+an+exponential+manner
found 1 videos: [['/talks/ray_kurzweil_a_university_for_the_coming_singularity', '2009']]
selected: /talks/ray_kurzweil_a_university_for_the_coming_singularity
sleep 4 seconds to avoid blocking
------<1789>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RayKurzweil_2014.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+me+tell+you+a+story+it+goes+back+two+hundred+million+years+it+s+a+story+of+the+neocortex++which+means+new+rind+so+in+these
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=early+mammals+because+only+mammals+have+a
found 15 videos: [['/talks/frans_de_waal_moral_behavior_in_animals', '2012'], ['/talks/patricia_medici_the_coolest_animal_you_know_nothing_about_and_how_we_can_save_it', '2015'], ['/talks/christopher_ryan_are_we_designed_to_be_sexual_omnivores', '2014'], ['/talks/asha_de_vos_why_you_should_care_about_whale_poo', '2015'], ['/talks/ray_kurzweil_get_ready_for_hybrid_thinking', '2014'], ['/talks/john_cameron_why_do_we_hiccup', '2016'], ['/talks/bernie_krause_the_voice_of_the_natural_world', '2013'], ['/talks/paul_snelgrove_a_census_of_the_ocean', '2012'], ['/talks/denise_herzing_could_we_speak_the_language_of_dolphins', '2013'], ['/talks/sophie_scott_why_we_laugh', '2015'], ['/talks/dan_reisel_the_neuroscience_of_restorative_justice', '2014'], ['/talks/paul_greenberg_the_four_fish_we_re_overeating_and_what_to_eat_instead', '2015'], ['/talks/latif_nasser_you_have_no_idea_where_camels_really_come_from', '2016'], ['/talks/siddharthan_chandran_can_the_damaged_brain_repair_itself', '2014'], ['/talks/rob_knight_how_our_microbes_make_us_who_we_are', '2015']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+the+size+of+a+postage+stamp+and+just+as+thin+and+was+a+thin+covering+around+their+walnut+sized+brain
found 1 videos: [['/talks/ray_kurzweil_get_ready_for_hybrid_thinking', '2014']]
selected: /talks/ray_kurzweil_get_ready_for_hybrid_thinking
sleep 1 seconds to avoid blocking
------<1790>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RaymondWang_2015Y.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+get+a+show+of+hands+how+many+of+you+in+this+room+have+been+on+a+plane+in+this+past+year
found 13 videos: [['/talks/raymond_wang_how_germs_travel_on_planes_and_how_we_can_stop_them', '2015'], ['/talks/thordis_elva_and_tom_stranger_our_story_of_rape_and_reconciliation', '2017'], ['/talks/noy_thrupkaew_human_trafficking_is_all_around_you_this_is_how_it_works', '2015'], ['/talks/elon_musk_the_future_we_re_building_and_boring', '2017'], ['/talks/thomas_hellum_the_world_s_most_boring_television_and_why_it_s_hilariously_addictive', '2014'], ['/talks/anne_curzan_what_makes_a_word_real', '2014'], ['/talks/norman_lear_an_entertainment_icon_on_living_a_life_of_meaning', '2016'], ['/talks/hector_garcia_we_train_soldiers_for_war_let_s_train_them_to_come_home_too', '2016'], ['/talks/peter_weinstock_lifelike_simulations_that_make_real_life_surgery_safer', '2017'], ['/talks/rishi_manchanda_what_makes_us_get_sick_look_upstream', '2014'], ['/talks/sting_how_i_started_writing_songs_again', '2014'], ['/talks/elizabeth_lev_the_unheard_story_of_the_sistine_chapel', '2016'], ['/talks/boyd_varty_what_i_learned_from_nelson_mandela', '2013']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+pretty+good+well+it+turns+out+that+you+share+that+experience+with+more+than
found 2 videos: [['/talks/elon_musk_the_future_we_re_building_and_boring', '2017'], ['/talks/gary_haugen_the_hidden_reason_for_poverty_the_world_needs_to_address_now', '2015']]
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+when+we+put+so+many+people+in+all+these+metal+tubes+that+fly+all+over+the+world+sometimes+things+like+this+can+happen+and+you+get+a+disease+epidemic
found 1 videos: [['/talks/raymond_wang_how_germs_travel_on_planes_and_how_we_can_stop_them', '2015']]
selected: /talks/raymond_wang_how_germs_travel_on_planes_and_how_we_can_stop_them
sleep 5 seconds to avoid blocking
------<1791>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RayZahab_2009.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+month+ago+today+i+stood+there
found 15 videos: [['/talks/ray_zahab_my_trek_to_the_south_pole', '2009'], ['/talks/jill_tarter_join_the_seti_search', '2009'], ['/talks/ellen_gustafson_obesity_hunger_1_global_food_issue', '2010'], ['/talks/shashi_tharoor_why_nations_should_pursue_soft_power', '2009'], ['/talks/mitchell_besser_mothers_helping_mothers_fight_hiv', '2010'], ['/talks/kevin_bales_how_to_combat_modern_slavery', '2010'], ['/talks/jane_mcgonigal_gaming_can_make_a_better_world', '2010'], ['/talks/william_ury_the_walk_from_no_to_yes', '2010'], ['/talks/r_a_mashelkar_breakthrough_designs_for_ultra_low_cost_products', '2010'], ['/talks/wade_davis_dreams_from_endangered_cultures', '2007'], ['/talks/jacqueline_novogratz_patient_capitalism', '2007'], ['/talks/david_pogue_cool_tricks_your_phone_can_do', '2009'], ['/talks/roger_ebert_remaking_my_voice', '2011'], ['/talks/amy_purdy_living_beyond_limits', '2011'], ['/talks/william_kamkwamba_how_i_harnessed_the_wind', '2009']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ninety+degrees+south+the+top+of+the+bottom+of+the+world+the+geographic+south+pole+and+i+stood+there+beside+two+very+good+friends+of+mine+richard+weber+and+kevin+vallely++together+we+had+just+broken+the+world+speed+record+for+a+trek+to+the+south+pole
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=took+us++thirty+three+days+twenty+three+hours+and+fifty+five+minutes+to+get+there
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+shaved+five+days+off+the+previous+best+time+and+in+the+process+i+became+the+first+person+in+history+to+make+the+entire
found 1 videos: [['/talks/ray_zahab_my_trek_to_the_south_pole', '2009']]
selected: /talks/ray_zahab_my_trek_to_the_south_pole
sleep 1 seconds to avoid blocking
------<1792>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ReadMontague_2012G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=everyone+is+interested+in+other+people+everyone+has+relationships+with+other+people+and+they+re+interested+in+these+relationships+for+a+variety+of+reasons++good+relationships+bad+relationships++annoying+relationships
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+what+i+m+going+to+do+is+focus+on+the+central+piece+of+an+interaction+that+goes+on+in+a+relationship++so+i+m+going+to+take+as+inspiration+the+fact+that+we+re+all+interested+in+interacting+with+other+people
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+completely+strip+it+of+all+its+complicating+features++and+i+m+going+to+turn+that+object+that+simplified+object+into+a+scientific+probe
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+provide+the+early+stages+embryonic+stages+of+new+insights+into+what+happens+in+two+brains+while+they+simultaneously+interact
found 1 videos: [['/talks/read_montague_what_we_re_learning_from_5_000_brains', '2012']]
selected: /talks/read_montague_what_we_re_learning_from_5_000_brains
sleep 4 seconds to avoid blocking
------<1793>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RebeccaBrachman_2016X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+a+tuberculosis+ward+and+at+the+time+this+picture+was+taken+in+the+late+1800s
found 1 videos: [['/talks/rebecca_brachman_could_a_drug_prevent_depression_and_ptsd', '2016']]
selected: /talks/rebecca_brachman_could_a_drug_prevent_depression_and_ptsd
sleep 2 seconds to avoid blocking
------<1794>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RebeccaMacKinnon_2011G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+begin+with+an+advertisement+inspired+by+george+orwell+that+apple+ran+in
found 1 videos: [['/talks/rebecca_mackinnon_let_s_take_back_the_internet', '2011']]
selected: /talks/rebecca_mackinnon_let_s_take_back_the_internet
sleep 2 seconds to avoid blocking
------<1795>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RebeccaMacKinnon_2016T.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+a+big+question+at+the+center+of+life+in+our+democracies+today
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+do+we+fight+terror+without+destroying+democracies+without+trampling+human+rights
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+spent+much+of+my+career+working+with+journalists+with+bloggers+with+activists
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=activists+with+human+rights+researchers+all+around+the+world++and+i+ve+come+to+the+conclusion
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+if+our+democratic+societies+do+not+double+down
found 1 videos: [['/talks/rebecca_mackinnon_we_can_fight_terror_without_sacrificing_our_rights', '2016']]
selected: /talks/rebecca_mackinnon_we_can_fight_terror_without_sacrificing_our_rights
sleep 3 seconds to avoid blocking
------<1796>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RebeccaOnie_2012P.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+my+freshman+year+of+college+i+signed+up+for+an+internship+in+the+housing+unit+at+greater+boston+legal+services
found 1 videos: [['/talks/rebecca_onie_what_if_our_health_care_system_kept_us_healthy', '2012']]
selected: /talks/rebecca_onie_what_if_our_health_care_system_kept_us_healthy
sleep 1 seconds to avoid blocking
------<1797>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RebeccaSaxe_2009G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=today+i+m+going+to+talk+to+you+about+the+problem+of+other+minds
found 6 videos: [['/talks/ben_goldacre_battling_bad_science', '2011'], ['/talks/maira_kalman_the_illustrated_woman', '2007'], ['/talks/james_randi_homeopathy_quackery_and_fraud', '2010'], ['/talks/eric_topol_the_wireless_future_of_medicine', '2010'], ['/talks/emily_levine_a_theory_of_everything', '2009'], ['/talks/harsha_bhogle_the_rise_of_cricket_the_rise_of_india', '2010']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+problem+i+m+going+to+talk+about+is+not+the+familiar+one+from+philosophy+which+is+how+can+we+know+whether+other+people+have+minds
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+is+maybe+you+have+a+mind++and+everyone+else+is+just+a+really+convincing+robot
found 1 videos: [['/talks/rebecca_saxe_how_we_read_each_other_s_minds', '2009']]
selected: /talks/rebecca_saxe_how_we_read_each_other_s_minds
sleep 3 seconds to avoid blocking
------<1798>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ReedKroloff_2003.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know+that+all+of+the+cool+people+are+they+re+doing+it++and+you+re+on+the+outside+you+re+at+home+you+re+like+the+raspyni+brothers+where+you+ve+got+your
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=got+your+balls+in+cold+water++and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+just+play+with+your+fingers+all+day+and+then+you+get+invited+and+you+re+on+the+inside++and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+everything+you+hoped+it+would+be+it+s+exciting+and+there+s+music+playing+all+of+the+time+and+then+suddenly+it+s+over
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+s+only+taken+five+minutes++and+you+want+to+go+back+and+do+it+again
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+really+appreciate+being+here+and++thank+you+chris+and+also+thank+you+deborah+patton+for+making+this+possible++so
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=anyway+today+we+ll+talk+about+architecture+a+little+bit++within+the+subject+of+creation
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+optimism+and+if+you+put+creation+and+optimism+together+you+ve+got+two+choices+that+you+can+talk+about+you+can+talk+about+creationism
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+i+think+wouldn+t+go+down
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+with+this+audience+at+least+not+from+a+view+where+you+were+a+proponent+of+it+or+you+can+talk+about+optimisations+spelled+the+british+way+with+an+s
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=instead+of+a+z+and+i+think+that+s+what+i+d+like+to+talk+about+today+but
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=any+kind+of+conversation+about+architecture+which+is+in+fact+what+you+were+just+talking+about+what+was+going+on+here+setting+up
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+the+present+time+can+t+really+happen
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+world+trade+center++and+what+s+been+going+on+there+what+it+means+to+us++because
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+architecture+is+what+i+believe+it+to+be+which+is+the+built+form+of+our+cultural+ambitions
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+do+you+do+when+presented+with+an+opportunity+to
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=rectify+a+situation+that+represents+somebody+else+s+cultural+ambitions+relative+to+us++and+our+own+opportunity
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+make+something+new+there+this+has+been+a+really+galvanizing+issue+for+a+long+time+i+think+that+the+world+trade+center+in++rather+an
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=brought+architecture+into+focus+in+a+way+that+i+don+t+think+people+had+thought+of+in+a+long+time
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+made+it+a+subject+for+common+conversation+i+don+t+remember+in+my+20+year+career+of+practicing+and+writing+about+architecture+a+time+when+five+people+sat+me+down+at+a+table+and+asked+me+very+serious+questions+about+zoning
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fire+exiting+safety+concerns+and+whether+carpet+burns++these+are+just+not+things+we+talked+about+very+often
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+yet+now++it+s+talked+about+all+the+time+at+the+point+where+you
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+have+to+suddenly+think+about+architecture+in+a+very+different+way++and+so+now+we+re+going+to+think+about+architecture+in+a+very+different+way
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+re+going+to+think+about+it+like+this+how+many+of+you+saw+usa+today++today
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+it+is+looks+like+that+there+s+the+world+trade
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=center+site+on+the+front+cover+they+ve+made+a+selection+they+ve+chosen+a+project+by+daniel+libeskind+the+enfant+terrible+of+the+moment+of+architecture
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=piano+player+he+started+on+the+squeezebox+and+moved+to+a+little+more+serious+issue+a+bigger+instrument+and+now+to+an+even+larger+instrument++upon+which+to+work+his+particular+brand+of+deconstructivist+magic+as+you+see+here
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+was+one+of+six+people+who+were+invited+to+participate+in+this+competition+after+six+previous
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=struck+out+with+things+that+were+so+stupid+and+banal+that+even+the+city+of+new+york+was+forced+to+go+oh+i+m+really+sorry+we+screwed+up
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=right+can+we+do+this+again+from+the+top+except+use+some+people+with+a+vague+hint+of+talent++instead+of+just+six
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=utter+boobs+like+we+brought+in+last+time+real+estate+hacks+of+the+kind+who+usually+plan+our+cities+let+s+bring+in
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=real+architects+for+a+change++and+so+we+got+this+or+we+had+a+choice+of
error: request timeout
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+too+late+that+is+gone+this+was+a+scheme+by+a+team+called+think+a+new+york+based+team++and+then+there+was+that+one+which+was+the+libeskind+scheme+this+one
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+going+to+be+the+new+world+trade+center++a+giant+hole+in+the+ground+with+big
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=buildings+falling+into+it+now+i+don+t+know+what+you+think+but+i+think+this+is+a+pretty+stupid+decision
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+what+you+ve+done+is+just+made+a+permanent+memorial+to+destruction+by+making+it+look+like+the+destruction+is+going+to+continue+forever
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+that+s+what+we+re+going+to+do+but+i+want+you+to+think+about+these+things
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+terms+of+a+kind+of+ongoing+struggle+that+american+architecture+represents+and+that+these+two+things+talk
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+very+specifically++and+that+is+the+wild+divergence+in+how+we+choose+our+architects+in+trying+to+decide+whether+we+want+architecture+from+the+kind+of+technocratic
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=solution+to+everything+that+there+is+a+large+technical+answer+that+can+solve+all+problems+be+they+social+be+they+physical+be+they
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+something+that+s+more+of+a+romantic+solution+now+i+don+t+mean+romantic+as+in+this+is+a+nice+place+to+take+someone+on+a+date
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+mean+romantic+in+the+sense+of+there+are+things+larger+and+grander+than+us+so+in+the+american+tradition+the+difference+between+the+technocratic+and+the+romantic+would+be+the+difference+between
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thomas+jefferson+s+cartesian+grids+spreading+across+the+united+states+that+gives+us+basically+the+whole+shape+of+every+western+state+in+the+united+states+as+a
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=really+truly+technocratic+solution++a+bowing+to+the+in+jefferson+s+time+current+popular+philosophy+of
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+way+we+went+to+describe+that+later+manifest+destiny++now+which+would+you+rather+be+a+grid
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+sounds+big+it+sounds+important+it+sounds+solid+it+sounds+american+ballsy+serious++male
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+kind+of+fight+has+gone+on+back+and+forth+in+architecture+all+the+time+i+mean+it+goes+on+in+our+private+lives+too+every+single+day+we+all+want+to+go+out+and+buy+an
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=an+audi+tt+don+t+we+everyone+here+must+own+one+or+at+least+they+craved+one+the+moment+they+saw+one++and+then+they+hopped+in+it+turned+the+little+electronic+key++rather+than+the+real
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=key++zipped+home+on+their+new+superhighway+and+drove+straight+into+a+garage+that+looks+like+a+tudor+castle
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=why++why++why+do+you+want+to+do+that+why+do+we+all+want+to+do+that+i+even
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+our+nature+to+go+ricocheting+back+and+forth+between
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+technocratic+solution+and+a+larger+sort+of+more+romantic+image+of+where+we+are+so+we+re+going+to+go+straight+into+this+can+i+have+the+lights+off+for+a+moment
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+talk+about+two+architects+very+very+briefly+that+represent+the+the+current+split+architecturally
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=between+these+two+traditions+of+a+technocratic+or+technological+solution
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+a+romantic+solution+and+these+are+two+of+the+top+architectural+practices+in+the+united+states+today+one+very+young+one+a+little+more+mature
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+the+work+of+a+firm+called+shop+and+what+you+re+seeing+here
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=their+isometric+drawings+of+what+will+be+a+large+scale+camera+obscura+in+a+public+park+does+everybody+know+what+a+camera+obscura+is++yeah++it+s+one+of+those
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=giant+camera+lenses+that+takes+a+picture+of+the+outside+world+it+s+sort+of+a+little+movie
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=without+any+moving+parts+and+projects+it+on+a+page+and+you+can+see+the+world+outside+you+as+you+walk+around+it++this+is+just+the+outline+of+it+and+you+can+see+does+it+look+like+a+regular+building+no+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+actually+non+orthogonal+it+s+not+up+and+down+square+rectangular+anything+like+that+that+you+d+see+in+a+normal+shape+of+a+building+the+computer+revolution+the+technocratic+technological+revolution+has+allowed+us+to
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=traditionally+shaped+buildings+in+favor+of+non+orthogonal+buildings+such+as+this++what+s+interesting+about+it+is+not+the+shape+what+s+interesting+about+it+is+how+it+s+made
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+it+s+made+a+brand+new+way+to+put+buildings+together+something+called+mass+customization+no+it+is+not+an+oxymoron+what+makes+the+building+expensive+in+the+traditional+sense+is+making
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=individual+parts+custom+that+you+can+t+do+over+and+over+again+that+s+why+we+all+live+in+developer+houses++they+all+want+to+save+money+by+building+the+same+thing+five+hundred+times
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=mass+customization+works+by+an+architect
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=feeding+into+a+computer+a+program+that+says++manufacture+these+parts+the+computer+then+talks+to+a+machine
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+computer+operated+machine+a+cad+cam+machine+that+can+make+a+zillion+different+changes+at+a+moment+s+notice+because+the+computer+is+just+a+machine+it+doesn+t+care
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+manufacturing+the+parts++it+doesn+t+see+any+excess+cost+it+doesn+t+spend+any+extra+time++it+s+not+a+laborer+it+s+simply+an+electronic+lathe+so+the+parts+can+all+be+cut+at+the+same+time+meanwhile
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=instead+of+sending+someone+working+drawings+which+are+those+huge+sets+of+blueprints+that+you+ve+seen+your+whole+life+what+the+architect+can+do+is+send+a+set+of+assembly+instructions+like+you+used+to+get+when+you+were+a+child+when+you+bought+little+models+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+what+the+builder+will+get+is+every+single+individual+part+that+has+been+custom+manufactured+off+site+and+delivered+on+a+truck+to+the+site+to+that+builder+and+a+set+of+these+instruction
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=manuals+just+simple+bolt+a+to+b+and+they+will+be+able+to+put+them+together+here+s+the+little+drawing+that+tells+them+how+that+works
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+same+architects+were+asked+to+produce+something+for+the+central+courtyard+of+ps1+which+is+a+museum+in+brooklyn+new+york+as+part+of+their+young+architects+summer+series+and+they+said+well+it+s+summer+what+do+you+do+in+the+summer+you+go+to+the+beach
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+when+you+go+to+the+beach++what+do+you+get+you+get+sand+dunes+so+let+s+make+architectural+sand+dunes+and+a+beach+cabana
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=out+and+they+modeled+a+computer+model+of+a+sand+dune+they+took+photographs+they+fed+the+photographs+into+their+computer+program+and+that+computer+program+shaped+a+sand+dune+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=then+took+that+sand+dune+shape+and+turned+it+into+at+their+instructions+using+standard+software+with+slight+modifications
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=piece+of+wood+to+be+cut+all+of+which+were+delivered+by+flat+bed+on+a+truck+and+hand+assembled+in+forty+eight+hours+by+a+team+of+eight+people+only+one+of+whom+had+ever+seen+the+plans+before
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=only+one+of+whom+had+ever+seen+the+plans+before++and+here+comes+dune+scape+coming+up+out+of+the+courtyard
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+there+it+is+fully+built+there+are+only+sixteen+different+pieces+of+wood
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=only+sixteen+different+assembly+parts+here
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=looks+like+a+beautiful+piano+sounding+board+on+the+inside++it+has+its+own+built+in+swimming+pool
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+a+great+place+for+parties+it+was+it+was+only+up+for+six+weeks
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+got+little+dressing+rooms+and+cabanas+where+lots+of+interesting+things+went+on+all+summer+long
error: request timeout
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+light+at+heart+or+just+temporary+installations+this+is+the+same+firm+working+at+the+world+trade+center++replacing+the+bridge+that+used+to+go+across+west+street+that+very+important+pedestrian+connection+between
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+redevelopment+of+the+west+side+they+were+asked+to+design
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=replace+that+bridge+in+six+weeks+building+it+including+all+of+the+parts+manufactured
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+were+able+to+do+it+that+was+their+design++using+that+same+computer+modeling+system+and+only+five+or+six+really+different+kinds+of+parts+a+couple+of+struts+like+this+some+exterior+cladding
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=material+and+a+very+simple+framing+system+that+was+all+manufactured+off+site+and+delivered+by+truck++they+were+able+to+create+that
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+the+side+of+new+york++using+the+same+technology+here+we+re+going+to+walk+across+the+bridge+at+night+it+s+self+lit+you+don+t+need+any+overhead+lighting+so+the+neighbors+don+t+complain+about+metal+halide+lighting+in+their+face+here+it+is+going+across
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+there+down+the+other+side+and+you+get+the+same+kind+of+grandeur+now+let+me+show+you+quickly+the+opposite+if+i+may
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=woo+pretty+huh+this+is+the+other+side+of+the+coin++this+is+the+work+of+david+rockwell
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=from+new+york+city+whose+work+you+can+see+out+here+today
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+current+king+of+the+romantics++who+approaches+his+work+in+a+very+different+fashion++it+s+not+to+create+a+technological+solution++it+s+to+seduce+you+into+something+that+you+can+do
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=into+something+that+will+please+you+something+that+will+lift+your+spirits+something+that+will+make+you+feel+as+if+are+in+another+world+such+as+his+nobu+restaurant+in+new+york+which+is+supposed+to+take+you+from+the+clutter+of+new+york+city
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=simplicity+of+japan+and+the+elegance+of+japanese+tradition+when+it+s+all+said+and+done++it+s+got+to+look+like+seaweed+said+the+owner
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+his+restaurant+pod+in+philadelphia+pennsylvania+i+want+you+to+know+the+room+you+re+looking+at+is+stark+white++every+single+surface+of+this+restaurant+is+white
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+reason+it+has+so+much+color+is+that+it+changes+using+lighting++it+s+all
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+sensuality++it+s+all+about+transforming+watch+this+i+m+not+touching+any+buttons+ladies+and+gentlemen++this+is+happening+by+itself
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+transforms+through+the+magic+of+lighting++it+s+all+about+sensuality+it+s+all+about+touch+rosa+mexicano+restaurant+where+he+transports+us+to+the+shores+of+acapulco
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=up+on+the+upper+west+side+with+this+wall+of+cliff+divers
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+that+let+s+see+it+one+more+time++okay+just+to+make+sure+that+you+ve+enjoyed+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+finally+it+s+about+comfort++it+s+about+making+you+feel+good+in+places+that+you+wouldn+t+have+felt+good+before+it+s+about+bringing+nature+to+the+inside
found 0 videos: []
error: no video is found.
sleep 2 seconds to avoid blocking
------<1799>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ReggieWatts_2012.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+one+of+the+things+that+i+enjoy+most+about+this+convention
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+not+so+much+as+so+little+has+to+do+with+what+everything+is
found 12 videos: [['/talks/john_mcwhorter_a_brief_history_of_plural_word_s', '2013'], ['/talks/roger_stein_a_bold_new_way_to_fund_drug_research', '2014'], ['/talks/bruce_feiler_the_council_of_dads', '2011'], ['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013'], ['/talks/jean_baptiste_michel_erez_lieberman_aiden_what_we_learned_from_5_million_books', '2011'], ['/talks/elon_musk_the_mind_behind_tesla_spacex_solarcity', '2013'], ['/talks/morgan_spurlock_the_greatest_ted_talk_ever_sold', '2011'], ['/talks/sandra_fisher_martins_the_right_to_understand', '2011'], ['/talks/harsha_bhogle_the_rise_of_cricket_the_rise_of_india', '2010'], ['/talks/stephen_burt_why_people_need_poetry', '2014'], ['/talks/freeman_hrabowski_4_pillars_of_college_success_in_science', '2013'], ['/talks/simon_lewis_don_t_take_consciousness_for_granted', '2011']]
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+understand+the+topography+of+our+lives+unto+ourselves
found 1 videos: [['/talks/reggie_watts_beats_that_defy_boxes', '2012']]
selected: /talks/reggie_watts_beats_that_defy_boxes
sleep 4 seconds to avoid blocking
------<1800>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ReginaDugan_2012.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+should+be+nice+to+nerds++in+fact++i+d+go+so+far+as+to+say+if+you+don+t+already+have+a+nerd+in+your+life+you+should+get+one
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+just+saying++scientists+and+engineers+change+the+world
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+d+like+to+tell+you+about+a+magical+place+called+darpa+where+scientists+and+engineers+defy+the+impossible+and+refuse+to+fear+failure
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+these+two+ideas+are+connected+more+than+you+may+realize++because+when+you+remove+the+fear+of
found 2 videos: [['/talks/regina_dugan_from_mach_20_glider_to_hummingbird_drone', '2012'], ['/talks/chris_downey_design_with_the_blind_in_mind', '2013']]
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+want+to+know+how+ask+yourself+this+question
found 7 videos: [['/talks/peter_singer_the_why_and_how_of_effective_altruism', '2013'], ['/talks/julian_baggini_is_there_a_real_you', '2012'], ['/talks/peter_saul_let_s_talk_about_dying', '2012'], ['/talks/shereen_el_feki_a_little_told_tale_of_sex_and_sensuality', '2014'], ['/talks/simon_anholt_which_country_does_the_most_good_for_the_world', '2014'], ['/talks/glenn_greenwald_why_privacy_matters', '2014'], ['/talks/roselinde_torres_what_it_takes_to_be_a_great_leader', '2014']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+would+you+attempt+to+do+if+you+knew+you+could+not+fail
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+really+ask+yourself+this+question++you+can+t+help+but+feel+uncomfortable
error: request timeout
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+when+you+ask+it+you+begin+to
found 5 videos: [['/talks/bill_davenhall_your_health_depends_on_where_you_live', '2010'], ['/talks/ryan_holladay_to_hear_this_music_you_have_to_be_there_literally', '2014'], ['/talks/leana_wen_what_your_doctor_won_t_disclose', '2014'], ['/talks/paul_piff_does_money_make_you_mean', '2013'], ['/talks/terisa_folaron_comma_story', '2013']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=understand+how+the+fear+of+failure+constrains+you++how+it+keeps+us+from+attempting+great+things
found 1 videos: [['/talks/regina_dugan_from_mach_20_glider_to_hummingbird_drone', '2012']]
selected: /talks/regina_dugan_from_mach_20_glider_to_hummingbird_drone
sleep 5 seconds to avoid blocking
------<1801>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ReginaHartley_2015S.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=your+company+launches+a+search+for+an+open+position+the+applications+start+rolling+in+and+the+qualified+candidates+are+identified
found 1 videos: [['/talks/regina_hartley_why_the_best_hire_might_not_have_the_perfect_resume', '2015']]
selected: /talks/regina_hartley_why_the_best_hire_might_not_have_the_perfect_resume
sleep 1 seconds to avoid blocking
------<1802>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RenataSalecl_2013G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+was+preparing+for+this+talk+i+went+to+search+for+a+couple+of+quotes+that+i+can+share+with+you
found 1 videos: [['/talks/renata_salecl_our_unhealthy_obsession_with_choice', '2014']]
selected: /talks/renata_salecl_our_unhealthy_obsession_with_choice
sleep 1 seconds to avoid blocking
------<1803>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RennyGleeson_2009.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+i+wanted+to+talk+to+you
found 2 videos: [['/talks/david_blaine_how_i_held_my_breath_for_17_minutes', '2010'], ['/talks/shea_hembrey_how_i_became_100_artists', '2011']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+today+is+two+things+one
found 9 videos: [['/talks/nicholas_negroponte_one_laptop_per_child_two_years_on', '2008'], ['/talks/devdutt_pattanaik_east_vs_west_the_myths_that_mystify', '2009'], ['/talks/paul_moller_my_dream_of_a_flying_car', '2009'], ['/talks/katherine_fulton_you_are_the_future_of_philanthropy', '2009'], ['/talks/diana_laufenberg_how_to_learn_from_mistakes', '2010'], ['/talks/michael_shermer_the_pattern_behind_self_deception', '2010'], ['/talks/cary_fowler_one_seed_at_a_time_protecting_the_future_of_food', '2009'], ['/talks/jeremy_jackson_how_we_wrecked_the_ocean', '2010'], ['/talks/martin_seligman_the_new_era_of_positive_psychology', '2008']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+rise+of+a+culture+of+availability+and+two+a+request+so+we+re+seeing+a+rise+of+this+availability+being+driven+by+mobile+device
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+re+seeing+along+with+that+proliferation+of+mobile+devices+an+expectation+of+availability+and+with+that+comes+the+third+point+which+is+obligation+and+an+obligation+to+that+availability+and+the+problem+is+we+re+still+working+through+from+a+societal+standpoint
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+we+allow+people+to+be+available
found 9 videos: [['/talks/penelope_boston_there_might_just_be_life_on_mars', '2008'], ['/talks/deborah_rhodes_a_test_that_finds_3x_more_breast_tumors_and_why_it_s_not_available_to_you', '2011'], ['/talks/david_cameron_the_next_age_of_government', '2010'], ['/talks/nicholas_christakis_how_social_networks_predict_epidemics', '2010'], ['/talks/clay_shirky_how_cognitive_surplus_will_change_the_world', '2010'], ['/talks/lisa_gansky_the_future_of_business_is_the_mesh', '2011'], ['/talks/jamais_cascio_tools_for_a_better_world', '2009'], ['/talks/stephen_hawking_questioning_the_universe', '2008'], ['/talks/william_li_can_we_eat_to_starve_cancer', '2010']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+a+significant+delta+in+fact+between+what+we+re+willing+to+accept+apologies+to+hans+rosling
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+said+anything+that+s+not+using+real+stats+is+a+lie+but+the+big+delta
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+we+deal+with+this+from+a+public+standpoint++so+we+ve+developed+certain+tactics+and+strategies+to+to+cover+up
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+first+one+s+called+the+lean+and+if+you+ve+ever+been+in+a+meeting+where+you+play+sort+of+meeting+chicken+you+re+sitting+there+looking+at+the+person+waiting+for+them+to+look+away+and+then+quickly+checking+the+device
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=although+you+can+see+the+gentleman+up+on+the+right
found 12 videos: [['/talks/renny_gleeson_our_antisocial_phone_tricks', '2009'], ['/talks/benjamin_wallace_the_price_of_happiness', '2008'], ['/talks/abraham_verghese_a_doctor_s_touch', '2011'], ['/talks/rory_sutherland_life_lessons_from_an_ad_man', '2009'], ['/talks/jeff_hawkins_how_brain_science_will_change_computing', '2007'], ['/talks/elizabeth_pisani_sex_drugs_and_hiv_let_s_get_rational', '2010'], ['/talks/charles_fleischer_all_things_are_moleeds', '2010'], ['/talks/jean_baptiste_michel_erez_lieberman_aiden_what_we_learned_from_5_million_books', '2011'], ['/talks/tim_harford_trial_error_and_the_god_complex', '2011'], ['/talks/andrew_mwenda_aid_for_africa_no_thanks', '2007'], ['/talks/steve_truglia_a_leap_from_the_edge_of_space', '2009'], ['/talks/david_pogue_cool_tricks_your_phone_can_do', '2009']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=going+to+check+my+device+but+the+guy++here+on+the+right+he+s+doing+the+stretch+it+s+that
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=reeeee+e+e+each+out+the+physical+contortion+to+get+that+device+just+below+the+the+tabletop++or+my+favorite+the+love+you+mean+it
found 1 videos: [['/talks/renny_gleeson_our_antisocial_phone_tricks', '2009']]
selected: /talks/renny_gleeson_our_antisocial_phone_tricks
sleep 2 seconds to avoid blocking
------<1804>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RennyGleeson_2012U.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+i+want+to+try+to+do+is+tell+a+quick+story+about+a+four+hundred+and+four+page+and+a+lesson+that+was+learned+as+a+result+of+it
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+to+start+it+probably+helps+to+have+an+understanding+of+what+a+four+hundred+and+four+page+actually+is
error: request timeout
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+that+it+s+that+broken+experience+on+the+web+it+s+effectively+the+default+page+when+you+ask+a+website+for+something+and+it+can+t+find+it+and
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+serves+you+the+four+hundred+and+four+page+it+s+inherently+a+feeling+of+being+broken+when+you+go+through+it++and+i+just+want+you+to+think+a+little+bit+about+remember+for+yourself+it+s+annoying
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=four+hundred+and+four+come+from+it+s+from+a+family+of+errors+actually+a+whole+set+of+relationship+errors+which+when+i+started+digging+into+them+it+looks+almost+like+a+checklist+for
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+sex+therapist+or+a+couples+counselor+you+sort+of+get+down+there+to+the+bottom+and+things+get+really+dicey
found 1 videos: [['/talks/renny_gleeson_404_the_story_of_a_page_not_found', '2012']]
selected: /talks/renny_gleeson_404_the_story_of_a_page_not_found
sleep 4 seconds to avoid blocking
------<1805>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ReshmaSaujani_2016.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+a+few+years+ago++i+did+something+really+brave
found 19 videos: [['/talks/shah_rukh_khan_thoughts_on_humanity_fame_and_love', '2017'], ['/talks/reshma_saujani_teach_girls_bravery_not_perfection', '2016'], ['/talks/justin_baldoni_why_i_m_done_trying_to_be_man_enough', '2017'], ['/talks/leila_seth_why_i_defend_women_s_inheritance_rights', '2018'], ['/talks/jennifer_senior_for_parents_happiness_is_a_very_high_bar', '2014'], ['/talks/christian_picciolini_my_descent_into_america_s_neo_nazi_movement_and_how_i_got_out', '2018'], ['/talks/the_ted_interview_sir_ken_robinson_still_wants_an_education_revolution', '2018'], ['/talks/genevieve_von_petzinger_why_are_these_32_symbols_found_in_ancient_caves_all_over_europe', '2015'], ['/talks/leana_wen_what_your_doctor_won_t_disclose', '2014'], ['/talks/stephen_burt_why_people_need_poetry', '2014'], ['/talks/casey_gerald_the_gospel_of_doubt', '2016'], ['/talks/fei_fei_li_how_we_re_teaching_computers_to_understand_pictures', '2015'], ['/talks/david_lang_let_s_protect_the_oceans_like_national_parks', '2018'], ['/talks/kai_fu_lee_how_ai_can_save_our_humanity', '2018'], ['/talks/lucy_kalanithi_what_makes_life_worth_living_in_the_face_of_death', '2017'], ['/talks/travis_kalanick_uber_s_plan_to_get_more_people_into_fewer_cars', '2016'], ['/talks/nikki_clifton_3_ways_businesses_can_fight_sex_trafficking', '2018'], ['/talks/sana_amanat_the_importance_of_diversity_in_the_comic_book_universe', '2018'], ['/talks/jonathan_tepperman_the_risky_politics_of_progress', '2016']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+some+would+say+really+stupid+i+ran+for+congress
found 1 videos: [['/talks/reshma_saujani_teach_girls_bravery_not_perfection', '2016']]
selected: /talks/reshma_saujani_teach_girls_bravery_not_perfection
sleep 4 seconds to avoid blocking
------<1806>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ReubenMargolin_2012.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=usually+i+like+working+in+my+shop++but+when+it+s+raining+and+the+driveway+outside+turns+into+a+river
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=then+i+just+love+it+and+i+ll+cut+some+wood+and+drill+some+holes+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=watch+the+water+and+maybe+i+ll+have+to+walk+around+and+look+for+washers+you+have+no+idea+how+much+time+i+spend
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+the+double+raindrop+of+all+my+sculptures+it+s+the+most+talkative
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+adds+together+the+interference+pattern+from+two+raindrops
found 1 videos: [['/talks/reuben_margolin_sculpting_waves_in_wood_and_time', '2012']]
selected: /talks/reuben_margolin_sculpting_waves_in_wood_and_time
sleep 5 seconds to avoid blocking
------<1807>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RhiannonGiddens_2016.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+don+t+come+right+here
found 9 videos: [['/talks/david_chalmers_how_do_you_explain_consciousness', '2014'], ['/talks/geena_rocero_why_i_must_come_out', '2014'], ['/talks/keren_elazari_hackers_the_internet_s_immune_system', '2014'], ['/talks/frances_frei_how_to_build_and_rebuild_trust', '2018'], ['/talks/graham_shaw_why_people_believe_they_can_t_draw', '2018'], ['/talks/matthew_carter_my_life_in_typefaces', '2014'], ['/talks/mike_kinney_a_pro_wrestler_s_guide_to_confidence', '2017'], ['/talks/sana_amanat_the_importance_of_diversity_in_the_comic_book_universe', '2018'], ['/talks/jakob_magolan_a_crash_course_in_organic_chemistry', '2018']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=from+here+to+macon+all+the+way+to+the+jail
found 1 videos: [['/talks/rhiannon_giddens_songs_that_bring_history_to_life', '2017']]
selected: /talks/rhiannon_giddens_songs_that_bring_history_to_life
sleep 3 seconds to avoid blocking
------<1808>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RicardoSemler_2014G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+mondays+and+thursdays++i+learn+how+to+die++i+call+them+my+terminal+days+my+wife+fernanda+doesn+t+like+the+term+but
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+lot+of+people+in+my+family+died+of+melanoma+cancer+and+my+parents+and+grandparents+had+it+and+i
found 1 videos: [['/talks/ricardo_semler_how_to_run_a_company_with_almost_no_rules', '2015']]
selected: /talks/ricardo_semler_how_to_run_a_company_with_almost_no_rules
sleep 5 seconds to avoid blocking
------<1809>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RiccardoSabatini_2016.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+next+sixteen+minutes++i+m+going+to+take+you+on+a+journey+that+is+probably+the+biggest+dream+of+humanity+to
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=understand+the+code+of+life++so+for+me+everything+started+many+many+years+ago+when+i+met
found 14 videos: [['/talks/riccardo_sabatini_how_to_read_the_genome_and_build_a_human_being', '2016'], ['/talks/adam_driver_my_journey_from_marine_to_actor', '2016'], ['/talks/miguel_nicolelis_brain_to_brain_communication_has_arrived_how_we_did_it', '2015'], ['/talks/jun_wang_how_digital_dna_could_help_you_make_better_health_choices', '2017'], ['/talks/dave_isay_everyone_around_you_has_a_story_the_world_needs_to_hear', '2015'], ['/talks/leah_chase_and_pat_mitchell_an_interview_with_the_queen_of_creole_cuisine', '2017'], ['/talks/shaka_senghor_why_your_worst_deeds_don_t_define_you', '2014'], ['/talks/mariana_atencio_what_makes_you_special', '2018'], ['/talks/norman_lear_an_entertainment_icon_on_living_a_life_of_meaning', '2016'], ['/talks/kristen_marhaver_how_we_re_growing_baby_corals_to_rebuild_reefs', '2015'], ['/talks/dame_ellen_macarthur_the_surprising_thing_i_learned_sailing_solo_around_the_world', '2015'], ['/talks/shah_rukh_khan_thoughts_on_humanity_fame_and_love', '2017'], ['/talks/melvin_russell_i_love_being_a_police_officer_but_we_need_reform', '2016'], ['/talks/naomi_mcdougall_jones_what_it_s_like_to_be_a_woman_in_hollywood', '2017']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=printer+needs+three+elements++a+bit+of+information+some+raw+material+some+energy+and+it+can+produce+any+object+that+was+not+there+before
found 1 videos: [['/talks/riccardo_sabatini_how_to_read_the_genome_and_build_a_human_being', '2016']]
selected: /talks/riccardo_sabatini_how_to_read_the_genome_and_build_a_human_being
sleep 4 seconds to avoid blocking
------<1810>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RicElias_2011U.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+big+explosion+as+you+climb+through+three+thousand+ft++imagine+a+plane+full+of+smoke++imagine+an+engine+going+clack
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+sitting+in+1d+i+was+the+only+one+who+could+talk+to+the+flight+attendants
found 1 videos: [['/talks/ric_elias_3_things_i_learned_while_my_plane_crashed', '2011']]
selected: /talks/ric_elias_3_things_i_learned_while_my_plane_crashed
sleep 5 seconds to avoid blocking
------<1811>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RichardBaraniuk_2006.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+rich+baraniuk+and+what+i+d+like+to+talk+a+little+bit+about+today+are+some+ideas+that+i+think+have+just+tremendous+resonance+with+all+the+things+that+have+been+talked+about+the+last+two
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=days+so+many+different+points+of+resonance+that+it+s+going+to+be+difficult+to+bring+them+all+up+but+i+ll+try+to+do+my+best
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=lp+records+and+they+ve+been+replaced+right+they+ve+been+swept+away+over+the+last+two+decades+by+these+types+of+world+flattening+digitization+technologies++right+and+i+think+it+was+best
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=witnessed+when+thomas+was+playing+the+music+as+we+came+in+the+room+today++what+s+happened+in+the+music+world+is+there+s+a+culture+or+an+ecosystem
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+been+created+that+if+you+take+some+words+from+apple++the+catchphrase+that+we+create
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=rip++mix+and+burn+what+i+mean+by+that+is+that+anyone+in+the+world+is+free+and+allowed+to+create+new+music+and+musical+ideas+anyone+in+the+world+is+allowed+to+rip+or+copy+musical
found 1 videos: [['/talks/richard_baraniuk_the_birth_of_the_open_source_learning_revolution', '2006']]
selected: /talks/richard_baraniuk_the_birth_of_the_open_source_learning_revolution
sleep 4 seconds to avoid blocking
------<1812>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RichardBranson_2007.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+very+glad+to+see+goldie+hawn+because+i+had
found 1 videos: [['/talks/richard_branson_life_at_30_000_feet', '2007']]
selected: /talks/richard_branson_life_at_30_000_feet
sleep 4 seconds to avoid blocking
------<1813>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RichardBrowning_2017.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+inspiring+father+he+had+a+passion+for+flight+as+you+can+kind+of+sense+from+that
found 1 videos: [['/talks/richard_browning_how_i_built_a_jet_suit', '2017']]
selected: /talks/richard_browning_how_i_built_a_jet_suit
sleep 2 seconds to avoid blocking
------<1814>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RichardDawkins_2002.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+the+music+i+ve+chosen+for+my+funeral+and+you
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+i+could+i+would+feel+triumphal+at+having+lived+at+all+and+at+having+lived+on+this+splendid+planet++and+having+been+given+the+opportunity
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+understand+something+about+why+i+was+here
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+first+place+before+not+being+here+can
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+everybody+else+i+was+entranced+yesterday+by+the+animal+session++robert+full+and
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+beauty+of+the+things+that+they+showed+the+only+slight+jarring+note+was+when+jeffrey+katzenberg+said+of
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+mustang+the+most+splendid+creatures+that+god+put+on+this+earth
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+he+didn+t+really+mean+that++but+in+this+country+at+the+moment+you+can+t+be+too+careful
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=laughter+i+m+a+biologist+and+the+central+theorem+of+our+subject
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+theory+of+design+darwin+s+theory+of+evolution+by+natural+selection
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+in+non+professional+circles+within+america++it+arouses+so+much+hostility
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+fair+to+say+that+american+biologists+are+in+a+state+of+war
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+war+is+so+worrying+at+present+with+court+cases+coming+up+in+one+state+after+another+that+i+felt+i+had+to+say+something+about+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+want+to+know+what+i+have+to+say+about+darwinism+itself++i+m+afraid+you+re+going+to+have+to+look+at+my+books++which+you+won+t+find+in+the+bookstore+outside
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=contemporary+court+cases+often+concern+an+allegedly+new+version+of+creationism+called+intelligent
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+nothing+new+about+id++it+s+just+creationism+under+another+name+rechristened+i+choose+the+word+advisedly
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+tactical+political+reasons+the+arguments+of+so+called+id+theorists+are+the+same+old+arguments+that+had+been+refuted+again+and+again+since+darwin+down+to+the+present+day
error: request timeout
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+behalf+of+science+and+i+try+to+do+all+i+can+to+help+them
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+they+get+quite+upset+when+people+like+me+dare+to+mention+that+we+happen+to+be+atheists+as+well+as+evolutionists
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+see+us+as+rocking+the+boat+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+understand+why+creationists+lacking+any+coherent+scientific+argument+for+their+case++fall+back+on+the+popular+phobia
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=teach+your+children+evolution+in+biology+class+and+they+ll+soon+move+on+to+drugs+grand+larceny+and+sexual
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+fact+of+course++educated+theologians+from+the+pope+down+are+firm+in+their+support
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=finding+darwin+s+god+by+kenneth+miller+is+one+of+the+most+effective+attacks+on+intelligent+design+that+i+know
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+s+all+the+more+effective+because+it+s+written+by+a+devout+christian+people+like+kenneth+miller+could+be+called+a+godsend+to+the+evolution+lobby
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+they+expose+the+lie+that+evolutionism+is+as+a+matter+of+fact+tantamount+to+atheism+people+like+me+on+the+other+hand+rock+the+boat
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+here+i+want+to+say+something+nice+about+creationists+it+s+not+a+thing+i+often+do+so+listen+carefully
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+they+re+right+about+one+thing+i+think+they+re+right+that+evolution+is+fundamentally+hostile+to+religion
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+already+said+that+many+individual+evolutionists+like+the+pope+are+also+religious+but+i+think+they+re+deluding+themselves++i+believe+a+true+understanding+of+darwinism
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+deeply+corrosive+to+religious+faith
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+it+may+sound+as+though+i+m+about+to+preach+atheism
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+want+to+reassure+you+that+that+s+not+what+i+m+going+to+do
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+an+audience+as+sophisticated+as+this+one+that+would+be+preaching+to+the+choir
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=no+what+i+want+to+urge+upon+you
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=instead+what+i+want+to+urge+upon+you+is+militant+atheism
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+that+s+putting+it+too+negatively
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+i+was+a+person+who+were+interested+in+preserving+religious+faith++i+would+be+very+afraid+of+the+positive+power+of+evolutionary+science
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=science+generally+but+evolution+in+particular+to+inspire+and+enthrall++precisely+because+it+is+atheistic
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now++the+difficult+problem+for+any+theory+of+biological+design+is+to+explain+the+massive+statistical+improbability+of+living+things
error: request timeout
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=complexity+is+another+word+for+this+the+standard+creationist+argument+there+is+only+one+they+re+all+reduced+to+this+one
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=takes+off+from+a+statistical+improbability+living+creatures+are+too+complex+to+have+come+about+by+chance+therefore+they+must+have+had+a+designer
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+argument+of+course+shoots+itself+in+the+foot+any+designer+capable+of+designing+something+really+complex+has+to+be+even+more+complex+himself+and+that+s+before+we+even
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=start+on+the+other+things+he+s+expected+to+do
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+forgive+sins+bless+marriages+listen+to+prayers+favor+our+side+in+a+war
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=disapprove+of+our+sex+lives+and+so+on+complexity+is+the+problem+that+any+theory+of+biology+has+to
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+can+t+solve+it+by+postulating+an+agent+that+is+even+more+complex+thereby+simply+compounding+the+problem+darwinian+natural+selection
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+explaining+complexity+in+terms+of+nothing+but+simplicity
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=essentially+it+does+it+by+providing+a+smooth+ramp+of+gradual
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=point+that+the+elegance+of+darwinism+is+corrosive+to+religion++precisely+because+it+is+so+elegant+so+parsimonious+so+powerful
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+has+the+sinewy+economy+of+a+beautiful+suspension+bridge
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+god+theory+is+not+just+a+bad+theory+it+turns+out+to+be+in+principle+incapable
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+doing+the+job+required+of+it++so+returning+to+tactics+and+the+evolution+lobby+i+want+to+argue+that+rocking+the+boat
error: request timeout
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=just+the+right+thing+to+do+my+approach+to+attacking+creationism+is+unlike
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+evolution+lobby+my+approach+to+attacking+creationism+is+to+attack+religion+as+a+whole
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+at+this+point+i+need+to+acknowledge+the+remarkable+taboo+against+speaking+ill+of+religion
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+m+going+to+do+so+in+the+words+of+the+late+douglas+adams+a+dear+friend+who+if+he+never+came+to+ted++certainly+should+have+been+invited+richard+saul+wurman
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+was+richard+dawkins+he+was+good++i+thought+he+must+have+been
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+begins+this+speech+which+was+tape+recorded+in+cambridge+shortly+before+he+died
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+begins+by+explaining+how+science+works+through+the+testing+of+hypotheses+that+are+framed+to+be+vulnerable+to+disproof+and+then+he+goes+on+i+quote
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=religion+doesn+t+seem+to+work+like+that+it+has+certain+ideas+at+the+heart+of+it+which+we+call++sacred++or++holy
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+it+means+is+here+is+an+idea+or+a+notion+that+you+re+not+allowed+to+say+anything+bad+about
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+re+just+not+why+not
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=why+should+it+be+that+it+s+perfectly+legitimate+to+support+the+republicans+or+democrats+this+model+of+economics+versus+that+versus+that+macintosh+instead+of+windows
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+to+have+an+opinion+about+how+the+universe+began+about+who+created+the+universe+no+that+s+holy
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+we+re+used+to+not+challenging+religious+ideas
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+very+interesting+how+much+of+a+furor+richard+creates+when+he+does+it+he+meant+me+not+that+one
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=everybody+gets+absolutely+frantic+about+it++because+you+re+not+allowed+to+say+these+things
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=yet+when+you+look+at+it+rationally+there+s+no+reason+why+those+ideas+shouldn+t+be+as+open+to+debate+as+any+other+except
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+we+ve+agreed+somehow+between+us+that+they+shouldn+t+be+and+that+s+the+end+of+the+quote+from+douglas
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+my+view+not+only+is+science+corrosive+to+religion+religion+is+corrosive
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+science++it+teaches+people+to+be+satisfied+with+trivial+supernatural
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+the+wonderful+real+explanations+that+we+have+within+our+grasp+it+teaches+them+to+accept+authority++revelation
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+faith++instead+of+always+insisting+on+evidence
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+douglas+adams++magnificent+picture+from+his+book+last+chance+to+see+now+there+s+a+typical
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=scientific+journal+the+quarterly+review+of+biology+and+i+m+going+to+put+together+as+guest+editor
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+special+issue+on+the+question+did+an+asteroid+kill+the+dinosaurs+and+the+first+paper
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+a+standard+scientific+paper+presenting+evidence+iridium+layer+at+the+k+t+boundary+and+potassium+argon+dated+crater+in+yucatan++indicate+that+an+asteroid+killed+the+dinosaurs+perfectly+ordinary+scientific+paper
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+president+of+the+royal+society+has+been+vouchsafed+a+strong+inner+conviction
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+an+asteroid+killed+the+dinosaurs
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+has+been+privately+revealed+to+professor+huxtane+that+an+asteroid+killed+the+dinosaurs
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+unquestioning+faith+that+an+asteroid+killed+the+dinosaurs
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=has+promulgated+an+official+dogma+binding+on+all+loyal+hawkinsians
error: request timeout
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+reporter+asked+george+bush+sr+whether+he+recognized+the+equal+citizenship+and+patriotism+of+americans+who+are+atheists+mr+bush+s+reply
error: request timeout
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=no+i+don+t+know+that+atheists+should+be+considered+citizens++nor+should+they+be+considered+patriots++this+is+one+nation+under+god
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=bush+s+bigotry+was+not+an+isolated+mistake+blurted+out+in+the+heat+of+the+moment+and+later+retracted+he+stood+by+it+in+the+face+of+repeated+calls+for+clarification+or+withdrawal+he+really+meant+it+more+to+the+point
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+knew+it+posed+no+threat+to+his+election
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=quite+the+contrary++democrats+as+well+as+republicans+parade+their+religiousness+if+they+want+to+get+elected
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=both+parties+invoke+one+nation+under+god
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+would+thomas+jefferson+have+said
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+t+help+making+the+comparison
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+is+an+atheist+an+atheist+is+just+somebody+who+feels+about+yahweh
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=been+said+before+we+are+all+atheists+about+most+of+the+gods+that+humanity+has+ever+believed+in
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+of+us+just+go+one+god+further
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+surely+the+kind+of+academic+belief+that+a+person+is+entitled+to+hold+without+being+vilified+as+an+unpatriotic+unelectable
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=an+undeniable+fact+that+to+own+up+to+being+an+atheist+is+tantamount+to+introducing+yourself+as+mr+hitler+or+miss+beelzebub
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+all+stems+from+the+perception+of+atheists+as
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=natalie+angier+wrote+a+rather+sad+piece+in+the+new+yorker+saying+how+lonely+she+felt+as+an+atheist++she+clearly+feels+in+a+beleaguered+minority++but+actually+how+do
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+latest+survey+makes+surprisingly+encouraging+reading++christianity+of+course+takes+a+massive+lion+s+share+of+the+population+with+nearly+one+hundred+and+sixty+million
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+would+you+think+was+the+second+largest+group
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+two+point+eight+million+muslims+at+one+point+one+million+hindus+buddhists+and+all+other+religions+put+together
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+second+largest+group+with+nearly+thirty+million++is+the+one+described+as
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+t+help+wondering+why+vote+seeking+politicians+are+so+proverbially+overawed+by+the+power+of+for+example+the+jewish+lobby
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=seems+to+owe+its+very+existence+to+the+american+jewish+vote+while+at+the+same+time+consigning+the
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+secular+non+religious+vote++if+properly+mobilized+is+nine+times+as+numerous+as+the+jewish+vote
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=why+does+this+far+more+substantial+minority+not+make+a+move+to+exercise+its+political+muscle
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+much+for+quantity++how+about+quality++is+there+any+correlation+positive+or+negative+between+intelligence
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+tendency+to+be+religious+[+them+folks+misunderestimated+me+]
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+survey+that+i+quoted+which+is
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+a+recent+article+by+paul++g+bell+in+the+mensa+magazine+provides+some+straws+in+the+wind++mensa+as+you+know+is+an+international+organization+for+people+with+very+high
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=belief+and+one+s+intelligence+or+educational+level+all+but+four+found+an+inverse+connection
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+is+the+higher+one+s+intelligence+or+educational+level++the+less+one+is+likely+to+be+religious+well+i+haven+t+seen+the+original+forty+two+studies+and+i+can+t+comment+on
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+that+meta+analysis+but+i+would+like+to+see+more+studies+done+along+those+lines++and+i+know+that+there+are+if+i+could+put+a+little+plug+here+there+are+people+in+this
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+massive+research+survey+to+settle+the+question
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+put+the+suggestion+up+for+what+it+s+worth
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+let+me+know+show+you+some+data+that+have+been+properly+published+and+analyzed+on+one+special+group+namely+top+scientists
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+election+to+the+national+academy+of+sciences+and+among+this+select+group++belief+in+a+personal+god
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=dropped+to+a+shattering+seven+percent
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+twenty+percent+are+agnostic+the+rest+could+fairly+be+called+atheists+similar+figures+obtained+for+belief+in+personal+immortality+among+biological+scientists+the+figure+is+even+lower
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=only+believe+in+god++physical+scientists+it+s+seven+point+five+percent
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+not+seen+corresponding+figures+for+elite+scholars+in+other+fields+such+as+history+or+philosophy++but+i+d+be+surprised+if+they+were+different
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+we+ve+reached+a+truly+remarkable+situation+a+grotesque+mismatch+between+the+american+intelligentsia
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+philosophical+opinion+about+the+nature+of+the+universe+which+is+held+by+the+vast+majority+of+top+american+scientists+and+probably+the+majority+of+the+intelligentsia+generally
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+so+abhorrent+to+the+american+electorate
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+no+candidate+for+popular+election+dare+affirm+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+public+if+i+m+right+this+means+that+high+office+in+the+greatest+country+in+the+world
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+barred+to+the+very+people+best+qualified+to+hold+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+intelligentsia+unless+they+are+prepared+to+lie+about+their+beliefs+to+put+it+bluntly+american+political+opportunities+are+heavily+loaded+against+those+who+are+simultaneously+intelligent+and+honest
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+not+a+citizen+of+this+country+so+i+hope+it+won+t+be+thought+unbecoming+if+i+suggest+that+something+needs+to+be+done+and+i
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ve+already+hinted+what+that+something+is+from+what+i+ve+seen+of+ted+i+think+this+may+be+the+ideal+place+to+launch+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=again+i+fear+it+will+cost+money++we+need+a
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+could+be+similar+to+the+campaign+organized+by+homosexuals+a+few+years+ago++although+heaven+forbid+that+we+should+stoop+to+public+outing+of+people+against+their+will
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+most+cases+people+who+out+themselves+will+help+to+destroy+the+myth+that+there+is+something+wrong+with+atheists+on+the+contrary++they+ll+demonstrate+that+atheists+are+often+the+kinds+of+people+who+could+serve+as+decent+role+models+for
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=your+children++the+kinds+of+people+an+advertising+agent+could+use+to+recommend+a+product++the+kinds+of+people+who+are+sitting+in+this+room
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+should+be+a+snowball+effect+a+positive+feedback+such+that+the+more+names+we+we+have+the+more+we+get
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+could+be+non+linearities+threshold+effects+when+a+critical
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=mass+has+been+obtained+there+s+an+abrupt+acceleration+in+recruitment+and+again+it+will+need+money
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+suspect+that+the+word+atheist+itself
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=contains+or+remains+a+stumbling+block
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=far+out+of+proportion+to+what+it+actually+means++and+a+stumbling+block+to+people+who+otherwise+might+be+happy+to+out+themselves
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+what+other+words+might+be+used+to+smooth+the+path+oil+the
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=darwin+himself+preferred+agnostic+and+not+only+out+of+loyalty+to+his+friend+huxley+who+coined+the+term
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=darwin+said+i+have+never+been+an+atheist+in+the+same+sense+of+denying+the+existence+of+a+god
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+that+generally+an++agnostic+++would+be+the+most+correct+description+of+my+state+of+mind
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+even+became+uncharacteristically+tetchy+with+edward+aveling
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=militant+atheist+who+failed+to+persuade+darwin+to+accept+the+dedication+of+his+book+on+atheism+incidentally+giving+rise+to+a+fascinating+myth+that+karl+marx+tried+to+dedicate+das+kapital+to+darwin+which+he+didn+t+it+was+actually+edward+aveling
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+happened+was+that+aveling+s+mistress+was+marx+s+daughter
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=both+darwin+and+marx+were+dead+marx+s+papers+became+muddled+up
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+aveling+s+papers+and+a+letter+from+darwin+saying+my+dear+sir++thank+you+very+much+but+i+don+t+want+you+to+dedicate+your+book+to+me+was+mistakenly
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=supposed+to+be+addressed+to+marx++and+that+that+gave+rise+to+this+whole+myth+which+you+ve+probably+heard+it+s+a+sort+of+urban+myth+that+marx+tried+to+dedicate
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+why+should+you+be+so+aggressive
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=darwin+thought+that+atheism+might+be+well+and+good+for+the+intelligentsia++but+that+ordinary+people+were+not+quote+ripe+for+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+is+of+course+our+old+friend+the+don+t+rock+the+boat+argument
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+not+recorded+whether+aveling+told+darwin+to+come+down+off+his+high+horse
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=laughter+but+in+any+case+that+was+more+than+one+hundred+years+ago+you+d+think+we+might+have+grown+up+since+then
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+friend+an+intelligent+lapsed+jew+who+incidentally+observes+the+sabbath+for+reasons+of+cultural+solidarity++describes+himself+as+a
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=agnostic+he+won+t+call+himself+an+atheist+because+it+s+in+principle+impossible+to
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=prove+a+negative+but+agnostic+on+its+own+might+suggest+that+god+s+existence+was+therefore+on+equal+terms+of+likelihood
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+friend+is+strictly+agnostic+about+the+tooth+fairy++but
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+isn+t+very+likely+is+it
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hence+the+phrase+tooth+fairy+agnostic+bertrand+russell+made+the+same+point+using+a+hypothetical+teapot+in+orbit+about+mars
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+would+strictly+have+to+be+agnostic+about+whether+there+is+a+teapot+in+orbit+about+mars++but+that+doesn+t+mean+you+treat+the
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=likelihood+of+its+existence+as+on+all+fours+with+its+non+existence+the+list+of+things+which+we+strictly+have+to+be+agnostic+about+doesn+t+stop+at+tooth+fairies+and+teapots+it+s+infinite
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+want+to+believe+one+particular+one+of+them+unicorns+or+tooth+fairies+or+teapots+or+yahweh
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+onus+is+on+you+to+say+why+the+onus+is+not+on+the+rest+of+us+to+say+why+not
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+we+don+t+bother+to+say+so+and+this+is+why+my+friend+uses
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=tooth+fairy+agnostic+as+a+label+for+what+most+people+would+call+atheist
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=nonetheless+if+we+want+to+attract+deep+down+atheists+to+come+out+publicly+we+re+going+to+have+find+something+better+to+stick+on+our+banner+than
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+has+the+advantage+of+a+worldwide+network+of+well+organized+associations+and+journals+and+things+already+in+place+my+problem+with+it+is+only+its+apparent+anthropocentrism+one+of+the+things
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+ve+learned+from+darwin+is+that+the+human+species+is+only+one+among+millions+of+cousins+some+close+some+distant+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+that+also+has+problems+of+confusion+because+darwin+would+have+thought+naturalist+naturalist+means+of+course+as+opposed+to+supernaturalist+and+it+is+used+sometimes
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=darwin+would+have+been+confused+by+the
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=other+sense+of+naturalist+which+he+was+of+course++and+i+suppose
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+might+be+others+who+would+confuse+it+with+nudism+such+people
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=might+be+those+belonging+to+the+british+lynch+mob++which+last+year
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=attacked+a+pediatrician+in+mistake+for+a+pedophile
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=laughter+i+think+the+best+of+the+available+alternatives+for+atheist+is+simply+non+theist+it+lacks+the+strong+connotation+that+there+s+definitely+no+god++and+it+could+therefore+easily+be+embraced+by
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+atheists+like+stephen+hawking+and+albert+einstein
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=use+the+word+god+they+use+it+of+course+as+a+metaphorical+shorthand+for+that+deep+mysterious+part+of+physics+which+we+don+t+yet+understand
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+think+actually+the+alternative+is+to+grasp+the+nettle+of+the+word+atheism+itself++precisely+because+it+is+a+taboo+word
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+we+did+achieve+it+with+that+dread+word+atheist+itself+the+political+impact+would+be+even+greater+now
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+said+that+if+i+were+religious+i+d+be+very+afraid+of+evolution+i+d+go+further+i+would+fear+science+in+general+if+properly+understood
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+is+because+the+scientific+worldview
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=than+anything+in+the++poverty+stricken+arsenals+of+the+religious+imagination
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+carl+sagan+another+recently+dead+hero+put+it
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+is+it+that+hardly+any+major+religion+has+looked+at+science+and+concluded++this+is+better+than+we+thought
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+universe+is+much+bigger+than+our+prophet+said+grander+more+subtle+more+elegant
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=instead+they+say++no+no+no+my+god+is+a+little+god++and+i+want+him+to+stay+that+way
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+religion+old+or+new+that+stressed+the+magnificence+of+the+universe+as+revealed+by+modern+science+might+be+able+to+draw+forth+reserves+of+reverence+and+awe+hardly+tapped
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=elite+audience++and+i+would+therefore+expect+about+ten+percent+of+you+to+be+religious
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=many+of+you+probably+subscribe+to+our+polite+cultural+belief
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+also+suspect+that+a+fair+number+of+those+secretly+despise+religion+as+much+as+i+do
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+re+one+of+them
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+of+course+many+of+you+may+not+be+but+if+you+are+one+of+them++i+m+asking+you+to+stop+being+polite+come+out+and+say+so
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+if+you+happen+to+be+rich++give+some+thought+to+ways+in+which+you+might+make+a+difference
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+religious+lobby+in+this+country+is+massively+financed
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+foundations+to+say+nothing+of+all+the+tax+benefits
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+foundations+such+as+the+templeton+foundation
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+discovery+institute+we+need+an
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+my+books+sold+as+well+as+stephen+hawking+s+books++instead+of+only+as+well+as+richard+dawkins++books
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+changed+me++let+s+all+stop+being+so+damned+respectful+thank+you+very+much
found 0 videos: []
error: no video is found.
sleep 4 seconds to avoid blocking
------<1815>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RichardDawkins_2005G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+famous+biologist+who+said+now+my+own+suspicion+is+that+the+universe+is+not+only+queerer+than+we+suppose++but+queerer+than
found 1 videos: [['/talks/richard_dawkins_why_the_universe_seems_so_strange', '2006']]
selected: /talks/richard_dawkins_why_the_universe_seems_so_strange
sleep 4 seconds to avoid blocking
------<1816>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RichardLedgett_2014.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=had+edward+snowden+here+a+couple+days+ago++and
found 4 videos: [['/talks/richard_ledgett_the_nsa_responds_to_edward_snowden_s_ted_talk', '2014'], ['/talks/larry_page_where_s_google_going_next', '2014'], ['/talks/edward_snowden_here_s_how_we_take_back_the_internet', '2014'], ['/talks/hubertus_knabe_the_dark_secrets_of_a_surveillance_state', '2014']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+response+time+and+several+of+you+have+written+to+me+with+with+questions+to+ask+our+guest+here+from+the
found 2 videos: [['/talks/richard_ledgett_the_nsa_responds_to_edward_snowden_s_ted_talk', '2014'], ['/talks/celeste_headlee_10_ways_to_have_a_better_conversation', '2016']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=deputy+director+of+the+national+security+agency
found 1 videos: [['/talks/richard_ledgett_the_nsa_responds_to_edward_snowden_s_ted_talk', '2014']]
selected: /talks/richard_ledgett_the_nsa_responds_to_edward_snowden_s_ted_talk
sleep 4 seconds to avoid blocking
------<1817>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RichardPreston_2008.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=rainforests+temperate+rainforests+where+it+can+rain+more+than+one+hundred+inches+a+year++this+is+the+realm+of+the+coast+redwood+tree
found 1 videos: [['/talks/richard_preston_the_mysterious_lives_of_giant_trees', '2008']]
selected: /talks/richard_preston_the_mysterious_lives_of_giant_trees
sleep 4 seconds to avoid blocking
------<1818>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RichardPyle_2004.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+the+first+of+two+rather+extraordinary+photographs+i+m+going+to+show+you+today+it+was+taken+eighteen+years+ago++i+was+nineteen+years+old+at+the+time+i+had+just+returned+from+one+of+the+deepest+dives+i+d+ever+made+at+that+time+a+little+over+two+hundred+feet
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+had+caught+this+little+fish+it+turns+out+that+that+particular+one+was+the+first
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=taken+alive+i+m+not+just+an+ichthyologist+i+m+a+bona+fide+fish+nerd+and+to+a+fish+nerd+this+is+some+pretty+exciting+stuff+more+exciting+was+the+fact+that+the+person+who+took+this+photo+is+a+guy+named+jack+randall+the+greatest+living+ichthyologist+on+earth
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+grand+poobah+of+fish+nerds+if+you+will+and+so+it+was+really+exciting+to+me+to+have+this+moment+in+time
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+set+the+course+for+the+rest+of+my+life+but+really+the+most+significant
found 1 videos: [['/talks/dan_gilbert_the_surprising_science_of_happiness', '2006']]
selected: /talks/dan_gilbert_the_surprising_science_of_happiness
sleep 5 seconds to avoid blocking
------<1819>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RichardResnick_2011X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+present+to+you+the+human+genome
found 17 videos: [['/talks/richard_resnick_welcome_to_the_genomic_revolution', '2011'], ['/talks/sebastian_seung_i_am_my_connectome', '2010'], ['/talks/christina_warinner_tracking_ancient_diseases_using_plaque', '2012'], ['/talks/gregory_stock_to_upgrade_is_human', '2009'], ['/talks/svante_paabo_dna_clues_to_our_inner_neanderthal', '2011'], ['/talks/jean_baptiste_michel_erez_lieberman_aiden_what_we_learned_from_5_million_books', '2011'], ['/talks/ray_kurzweil_a_university_for_the_coming_singularity', '2009'], ['/talks/michael_nielsen_open_science_now', '2011'], ['/talks/michelle_borkin_can_astronomers_help_doctors', '2012'], ['/talks/seth_berkley_hiv_and_flu_the_vaccine_strategy', '2010'], ['/talks/bruce_feiler_the_council_of_dads', '2011'], ['/talks/rajesh_rao_a_rosetta_stone_for_a_lost_language', '2011'], ['/talks/francis_collins_we_need_better_drugs_now', '2013'], ['/talks/john_delaney_wiring_an_interactive_ocean', '2010'], ['/talks/harvey_fineberg_are_we_ready_for_neo_evolution', '2011'], ['/talks/rick_guidotti_from_stigma_to_supermodel', '2012'], ['/talks/martin_hanczyc_the_line_between_life_and_not_life', '2011']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=chromosome+one+top+left++bottom+right+are+the+sex+chromosomes
found 3 videos: [['/talks/richard_resnick_welcome_to_the_genomic_revolution', '2011'], ['/talks/drew_berry_animations_of_unseeable_biology', '2012'], ['/talks/elaine_morgan_i_believe_we_evolved_from_aquatic_apes', '2009']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=women+have+two+copies+of+that+big+x+chromosome+men+have+the+x+and+of+course+that+small+copy+of+the
found 1 videos: [['/talks/richard_resnick_welcome_to_the_genomic_revolution', '2011']]
selected: /talks/richard_resnick_welcome_to_the_genomic_revolution
sleep 5 seconds to avoid blocking
------<1820>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RichardSears_2010U.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+the+next+few+minutes+we+re+going+to+talk+about+energy+and+it+s+going+to+be+a+bit+of+a+varied+talk+i+ll+try+to+spin+a+story+about+energy+and+oil+s+a+convenient+starting+place+the+talk+will+be+broadly+about+energy+but+oil+s+a+good+place+to+start
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+one+of+the+reasons+is+this+is+remarkable+stuff+you+take+about+eight
found 8 videos: [['/talks/john_wilbanks_let_s_pool_our_medical_data', '2012'], ['/talks/dan_gilbert_why_we_make_bad_decisions', '2008'], ['/talks/richard_sears_planning_for_the_end_of_oil', '2010'], ['/talks/christopher_mcdougall_are_we_born_to_run', '2011'], ['/talks/brenda_laurel_why_not_make_video_games_for_girls', '2009'], ['/talks/paul_maccready_nature_vs_humans', '2008'], ['/talks/deb_roy_the_birth_of_a_word', '2011'], ['/talks/nicholas_negroponte_5_predictions_from_1984', '2008']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=eight+or+so+carbon+atoms+about+twenty+hydrogen+atoms+you+put+them+together+in+exactly+the+right+way+and+you+get+this+marvelous+liquid+very
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+very+easy+to+refine+into+a+number+of+very+useful+products+and+fuels+it+s+great+stuff++now++as+far+as+it+goes
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+a+lot+of+oil+out+there+in+the+world++here+s+my+little+pocket+map+of+where+it+s+all+located
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+bigger+one+for+you+to+look+at+but+this+is+it+this+is+the
found 6 videos: [['/talks/shlomo_benartzi_saving_for_tomorrow_tomorrow', '2012'], ['/talks/daniel_dulek_how_big_is_a_mole_not_the_animal_the_other_one', '2012'], ['/talks/katherine_fulton_you_are_the_future_of_philanthropy', '2009'], ['/talks/bruce_aylward_how_we_ll_stop_polio_for_good', '2011'], ['/talks/don_tapscott_four_principles_for_the_open_world', '2012'], ['/talks/juan_enriquez_the_next_species_of_human', '2009']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=oil+in+the+world+geologists+have+a+pretty+good+idea+of+where+the+oil+is+this+is+about+one+hundred+trillion+gallons+of+crude+oil+still+to+be+developed+and+produced+in+the+world+today
found 1 videos: [['/talks/richard_sears_planning_for_the_end_of_oil', '2010']]
selected: /talks/richard_sears_planning_for_the_end_of_oil
sleep 1 seconds to avoid blocking
------<1821>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RichardSeymour_2011S.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+father+told+me+a+story+about+an+18th+century+watchmaker+and+what+this+guy+had+done+he+used+to+produce+these+fabulously+beautiful+watches+and
found 1 videos: [['/talks/richard_seymour_how_beauty_feels', '2011']]
selected: /talks/richard_seymour_how_beauty_feels
sleep 5 seconds to avoid blocking
------<1822>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RichardSt.John_2005.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+a+high+school+student+a+teenager+and+she+came+from+a+really+poor+family+and+she+wanted+to+make+something+of+her+life
found 1 videos: [['/talks/richard_st_john_8_secrets_of_success', '2006']]
selected: /talks/richard_st_john_8_secrets_of_success
sleep 1 seconds to avoid blocking
------<1823>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RichardStJohn_2005.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+really+a+two+hour+presentation+i+give+to+high+school+students+cut+down+to+three+minutes+and+it+all+started+one+day+on+a+plane+on+my+way+to+ted+seven+years+ago
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+in+the+seat+next+to+me+was+a
error: request timeout
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+she+came+from+a+really+poor+family++and+she
found 2 videos: [['/talks/iqbal_quadir_how_mobile_phones_can_fight_poverty', '2006'], ['/talks/jane_goodall_what_separates_us_from_chimpanzees', '2007']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=wanted+to+make+something+of+her+life+and+she+asked+me+a+simple+little+question+she+said+what+leads+to+success
found 1 videos: [['/talks/richard_st_john_8_secrets_of_success', '2006']]
selected: /talks/richard_st_john_8_secrets_of_success
sleep 4 seconds to avoid blocking
------<1824>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RichardStJohn_2009U.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=why+do+so+many+people+reach+success+and+then+fail+one
found 10 videos: [['/talks/richard_st_john_success_is_a_continuous_journey', '2009'], ['/talks/bertrand_piccard_my_solar_powered_adventure', '2010'], ['/talks/elizabeth_gilbert_your_elusive_creative_genius', '2009'], ['/talks/doris_kearns_goodwin_lessons_from_past_presidents', '2008'], ['/talks/freeman_dyson_let_s_look_for_life_in_the_outer_solar_system', '2008'], ['/talks/spencer_wells_a_family_tree_for_humanity', '2008'], ['/talks/carl_honore_in_praise_of_slowness', '2007'], ['/talks/shashi_tharoor_why_nations_should_pursue_soft_power', '2009'], ['/talks/john_gerzema_the_post_crisis_consumer', '2009'], ['/talks/michael_merzenich_growing_evidence_of_brain_plasticity', '2009']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+the+big+reasons+is+we+think+success+is+a+one+way+street+so+we+do+everything+that+leads+up+to+success++but+then+we+get+there+we+figure+we+ve+made
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+sit+back+in+our+comfort+zone+and+we+actually+stop+doing+everything+that+made+us+successful++and+it+doesn+t+take+long+to+go+downhill
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+can+tell+you+this+happens++because+it+happened+to+me
found 2 videos: [['/talks/morgan_spurlock_the_greatest_ted_talk_ever_sold', '2011'], ['/talks/richard_seymour_how_beauty_feels', '2011']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=reaching+success+i+worked+hard+i+pushed+myself++but+then+i+stopped+because+i+figured+oh+you+know+i+made+it+i+can+just+sit+back+and+relax
found 1 videos: [['/talks/richard_st_john_success_is_a_continuous_journey', '2009']]
selected: /talks/richard_st_john_success_is_a_continuous_journey
sleep 5 seconds to avoid blocking
------<1825>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RichardTurere_2013.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+nairobi+national+park+those+are+my+dad+s+cows+at+the+back++and+behind+the+cows+that+s+the+nairobi+national+park
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=nairobi+national+park+is+not+fenced+in+the+south+widely+which
found 1 videos: [['/talks/richard_turere_my_invention_that_made_peace_with_lions', '2013']]
selected: /talks/richard_turere_my_invention_that_made_peace_with_lions
sleep 1 seconds to avoid blocking
------<1826>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RichardWeller_2012X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=before+i+became+a+dermatologist++i+started+in+general+medicine+as+most+dermatologists+do+in+britain
found 1 videos: [['/talks/richard_weller_could_the_sun_be_good_for_your_heart', '2013']]
selected: /talks/richard_weller_could_the_sun_be_good_for_your_heart
sleep 1 seconds to avoid blocking
------<1827>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RichardWilkinson_2011G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+truth+of+what+i+m+going+to+say++i+think+the+intuition+that+inequality+is+divisive+and+socially+corrosive+has+been
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=around+since+before+the+french+revolution++what+s+changed+is
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+now+can+look+at+the+evidence+we+can+compare+societies+more+and+less+equal+societies++and+see+what+inequality+does+i
found 1 videos: [['/talks/richard_wilkinson_how_economic_inequality_harms_societies', '2011']]
selected: /talks/richard_wilkinson_how_economic_inequality_harms_societies
sleep 1 seconds to avoid blocking
------<1828>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RichBenjamin_2015W.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=imagine+a+place+where+your+neighbors+greet+your+children+by+name
found 6 videos: [['/talks/rich_benjamin_my_road_trip_through_the_whitest_towns_in_america', '2015'], ['/talks/raj_panjabi_no_one_should_die_because_they_live_too_far_from_a_doctor', '2017'], ['/talks/t_morgan_dixon_and_vanessa_garrison_the_trauma_of_systematic_racism_is_killing_black_women_a_first_step_toward_change', '2017'], ['/talks/anna_heringer_the_warmth_and_wisdom_of_mud_buildings', '2017'], ['/talks/verna_myers_how_to_overcome_our_biases_walk_boldly_toward_them', '2014'], ['/talks/alice_goffman_how_we_re_priming_some_kids_for_college_and_others_for_prison', '2015']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+place+with+splendid+vistas+a+place+where+you+can+drive+just+twenty+minutes+and+put+your+sailboat+on+the+water+it
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=place+isn+t+it+i+don+t+live+there
found 9 videos: [['/talks/nizar_ibrahim_how_we_unearthed_the_spinosaurus', '2015'], ['/talks/matthew_o_reilly_am_i_dying_the_honest_answer', '2014'], ['/talks/kenneth_lacovara_hunting_for_dinosaurs_showed_me_our_place_in_the_universe', '2016'], ['/talks/geena_rocero_why_i_must_come_out', '2014'], ['/talks/iwan_baan_ingenious_homes_in_unexpected_places', '2013'], ['/talks/elizabeth_wayne_we_can_hack_our_immune_cells_to_fight_cancer', '2017'], ['/talks/may_el_khalil_making_peace_is_a_marathon', '2013'], ['/talks/clint_smith_how_to_raise_a_black_son_in_america', '2015'], ['/talks/ashton_applewhite_let_s_end_ageism', '2017']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=has+posted+at+least+six+percent
found 8 videos: [['/talks/rich_benjamin_my_road_trip_through_the_whitest_towns_in_america', '2015'], ['/talks/ann_morgan_my_year_reading_a_book_from_every_country_in_the_world', '2015'], ['/talks/david_rothkopf_how_fear_drives_american_politics', '2015'], ['/talks/meg_jay_why_30_is_not_the_new_20', '2013'], ['/talks/dave_brain_what_a_planet_needs_to_sustain_life', '2016'], ['/talks/scott_galloway_how_amazon_apple_facebook_and_google_manipulate_our_emotions', '2017'], ['/talks/sara_seager_the_search_for_planets_beyond_our_solar_system', '2015'], ['/talks/sebastian_thrun_and_chris_anderson_what_ai_is_and_isn_t', '2017']]
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=secondly++the+majority+of+that+growth+comes+from+white+migrants
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+third+the+whitopia+has+an+ineffable+charm+a+pleasant+look+and+feel
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+ticking+i+immersed+myself+for+several+months+apiece+in+three+of+them
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=1850s+brigham+young+dispatched+families+to+st+george+to+grow+cotton+because+of+the+hot+arid+climate++and+so+they+called+it+utah+s+dixie
found 1 videos: [['/talks/rich_benjamin_my_road_trip_through_the_whitest_towns_in_america', '2015']]
selected: /talks/rich_benjamin_my_road_trip_through_the_whitest_towns_in_america
sleep 1 seconds to avoid blocking
------<1829>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RickFalkvinge_2013X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+going+to+be+a+motivational+speech+because+imagine+my+motivation+standing+between+this+strong
found 1 videos: [['/talks/rick_falkvinge_i_am_a_pirate', '2012']]
selected: /talks/rick_falkvinge_i_am_a_pirate
sleep 3 seconds to avoid blocking
------<1830>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RickSmolan_2007P.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+of+you+have+heard+the+story+before+but+in+fact+there+s+somebody+in+the+audience+who+s+never+heard+this+story+in+front+of+an+audience+before+so+i+m+a
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=little+more+nervous+than+i+normally+am+telling+this+story++i+used+to+be+a+photographer+for+many+years
found 1 videos: [['/talks/rick_smolan_the_story_of_a_girl', '2008']]
selected: /talks/rick_smolan_the_story_of_a_girl
sleep 1 seconds to avoid blocking
------<1831>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RickWarren_2006.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+i+got+to+write+it+i+would+have+never+imagined+that+not+in+my+wildest+dreams+did+i+think+i+don+t+even+consider+myself+to+be+an+author
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+often+asked+why+do+you+think+so+many+people+have+read+this+this+thing+s+selling
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=still+about+a+million+copies+a+month+and
found 6 videos: [['/talks/spencer_wells_a_family_tree_for_humanity', '2008'], ['/talks/rick_warren_a_life_of_purpose', '2006'], ['/talks/george_dyson_the_birth_of_the_computer', '2008'], ['/talks/jennifer_8_lee_the_hunt_for_general_tso', '2008'], ['/talks/larry_brilliant_my_wish_help_me_stop_pandemics', '2006'], ['/talks/jeff_hawkins_how_brain_science_will_change_computing', '2007']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+it+s+because+spiritual+emptiness+is
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+universal+disease+i+think+inside+at+some+point+we+put+our+heads+down+on+the+pillow+and+we
found 1 videos: [['/talks/rick_warren_a_life_of_purpose', '2006']]
selected: /talks/rick_warren_a_life_of_purpose
sleep 4 seconds to avoid blocking
------<1832>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RishiManchanda_2014S.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+over+a+decade+as+a+doctor++i+ve+cared+for+homeless+veterans+for+working+class+families
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+cared+for+people+who+live+and+work+in+conditions
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=where+we+live+and+where+we+work
found 12 videos: [['/talks/taiye_selasi_don_t_ask_where_i_m_from_ask_where_i_m_a_local', '2015'], ['/talks/ruth_chang_how_to_make_hard_choices', '2014'], ['/talks/andreas_schleicher_use_data_to_build_better_schools', '2013'], ['/talks/danny_dorling_maps_that_show_us_who_we_are_not_just_where_we_are', '2016'], ['/talks/dan_pallotta_the_dream_we_haven_t_dared_to_dream', '2016'], ['/talks/amanda_burden_how_public_spaces_make_cities_work', '2014'], ['/talks/sean_follmer_shape_shifting_tech_will_change_work_as_we_know_it', '2016'], ['/talks/j_d_vance_america_s_forgotten_working_class', '2016'], ['/talks/david_sedlak_4_ways_we_can_avoid_a_catastrophic_drought', '2016'], ['/talks/dame_ellen_macarthur_the_surprising_thing_i_learned_sailing_solo_around_the_world', '2015'], ['/talks/angelo_vermeulen_how_to_go_to_space_without_having_to_go_to_space', '2015'], ['/talks/pico_iyer_where_is_home', '2013']]
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+what+does+this+different+approach+to+healthcare+look+like+an+approach+that+can+improve+health+where+it+begins
found 1 videos: [['/talks/rishi_manchanda_what_makes_us_get_sick_look_upstream', '2014']]
selected: /talks/rishi_manchanda_what_makes_us_get_sick_look_upstream
sleep 2 seconds to avoid blocking
------<1833>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RitaPierson_2013S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+have+spent+my+entire+life
found 16 videos: [['/talks/martin_pistorius_how_my_mind_came_back_to_life_and_no_one_knew', '2015'], ['/talks/chelsea_shields_how_i_m_working_for_change_inside_my_church', '2015'], ['/talks/amy_webb_how_i_hacked_online_dating', '2013'], ['/talks/sarah_kay_if_i_should_have_a_daughter', '2011'], ['/talks/hyeonseo_lee_my_escape_from_north_korea', '2013'], ['/talks/jane_fonda_life_s_third_act', '2012'], ['/talks/hasan_elahi_fbi_here_i_am', '2011'], ['/talks/mike_degruy_hooked_by_an_octopus', '2012'], ['/talks/jer_thorp_make_data_more_human', '2012'], ['/talks/zak_ebrahim_i_am_the_son_of_a_terrorist_here_s_how_i_chose_peace', '2014'], ['/talks/mac_stone_stunning_photos_of_the_endangered_everglades', '2015'], ['/talks/pearl_arredondo_my_story_from_gangland_daughter_to_star_teacher', '2013'], ['/talks/alice_goffman_how_we_re_priming_some_kids_for_college_and_others_for_prison', '2015'], ['/talks/andrew_solomon_how_the_worst_moments_in_our_lives_make_us_who_we_are', '2014'], ['/talks/navi_radjou_creative_problem_solving_in_the_face_of_extreme_limits', '2015'], ['/talks/dame_ellen_macarthur_the_surprising_thing_i_learned_sailing_solo_around_the_world', '2015']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=either+at+the+schoolhouse+on+the+way+to+the+schoolhouse++or+talking+about+what+happens+in+the+schoolhouse
found 1 videos: [['/talks/rita_pierson_every_kid_needs_a_champion', '2013']]
selected: /talks/rita_pierson_every_kid_needs_a_champion
sleep 1 seconds to avoid blocking
------<1834>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/Rives4AM_2007.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+recent+comic+strip+from+the+los+angeles+times+the+punch+line
found 1 videos: [['/talks/rives_the_4_a_m_mystery', '2007']]
selected: /talks/rives_the_4_a_m_mystery
sleep 2 seconds to avoid blocking
------<1835>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RivesINTERNET_2006S.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+wrote+this+poem+after+hearing+a
found 1 videos: [['/talks/rives_if_i_controlled_the_internet', '2006']]
selected: /talks/rives_if_i_controlled_the_internet
sleep 2 seconds to avoid blocking
------<1836>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RivesMOCKINGBIRD_2006.stm
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=mockingbirds+that+s+mimus+polyglottos+are+the+emcees+of+the+animal+kingdom+they+listen+and+mimic+and+remix+what+they+like+they
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=rock+the+mic+outside+my+window+every+morning+i+can+hear+them+sing+the+sounds+of+the+car+alarms+like+they+were+songs+of+spring+i+mean+if+you+can+talk+it+a+mockingbird+can+squawk+it+so+check+it+i+m+going+to+catch+mockingbirds
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+trap+mockingbirds+all+across+the+nation+and+put+them+gently+into+mason+jars+like+mockingbird+molotov+cocktails
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=oh+i+m+going+to+be+the+johnny+appleseed+of+sound
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=cruising+random+city+streets+rocking+a+drop+top+cadillac+with+a+big+backseat+packing+like+thirteen+brown+paper+walmart+bags+full+of+loaded+mockingbirds+and+i+ll+get+everybody
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ll+get+the+nitwit+on+the+network+news+saying+we+ll+be+back+in+a+moment+with+more+on+the+crisis+i+ll+get+some+asshole+at+a+watering+hole+asking+what+brand+the+ice
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=get+that+lady+at+the+laundromat+who+always+seems+to+know+what+being+nice+is
found 1 videos: [['/talks/rives_a_mockingbird_remix_of_ted2006', '2007']]
selected: /talks/rives_a_mockingbird_remix_of_ted2006
sleep 4 seconds to avoid blocking
------<1837>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RivesTTYL_2008.stm
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+does+that+this+means+mouse
found 7 videos: [['/talks/dan_dennett_let_s_teach_religion_all_religion_in_schools', '2006'], ['/talks/william_li_can_we_eat_to_starve_cancer', '2010'], ['/talks/rob_hopkins_transition_to_a_world_without_oil', '2009'], ['/talks/aubrey_de_grey_a_roadmap_to_end_aging', '2006'], ['/talks/barry_schuler_genomics_101', '2009'], ['/talks/john_underkoffler_pointing_to_the_future_of_ui', '2010'], ['/talks/david_pogue_simplicity_sells', '2006']]
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+start+of+the+story+where+this
found 6 videos: [['/talks/kevin_kelly_technology_s_epic_story', '2010'], ['/talks/newton_aduaka_the_story_of_ezra', '2008'], ['/talks/steven_johnson_where_good_ideas_come_from', '2010'], ['/talks/ngozi_okonjo_iweala_aid_versus_trade', '2007'], ['/talks/chimamanda_ngozi_adichie_the_danger_of_a_single_story', '2009'], ['/talks/katherine_fulton_you_are_the_future_of_philanthropy', '2009']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=means+guy+and+that+is+a+ponytail+on+a+passer+by
found 1 videos: [['/talks/rives_a_story_of_mixed_emoticons', '2008']]
selected: /talks/rives_a_story_of_mixed_emoticons
sleep 1 seconds to avoid blocking
------<1838>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/Rives_2012S.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=last+month+the+encyclopaedia+britannica+announced+that+it+is+going+out+of+print+after+two+hundred+and+forty+four+years++which+made+me+nostalgic+because+i+remember+playing+a+game
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+the+colossal+encyclopedia+set+in+my+hometown+library+back+when+i+was+a+kid+maybe+twelve+years+old
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+wondered+if+i+could+update+that+game+not+just+for+modern+methods++but+for+the+modern+me
found 1 videos: [['/talks/rives_reinventing_the_encyclopedia_game', '2012']]
selected: /talks/rives_reinventing_the_encyclopedia_game
sleep 1 seconds to avoid blocking
------<1839>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/Rives_2014A.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=most+romantic+thing+to+ever+happen+to+me+online
found 4 videos: [['/talks/rives_the_museum_of_four_in_the_morning', '2014'], ['/talks/sophie_scott_why_we_laugh', '2015'], ['/talks/mandy_len_catron_falling_in_love_is_the_easy_part', '2015'], ['/talks/hannah_fry_the_mathematics_of_love', '2015']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=started+out+the+way+most+things+do+without+me+and+not+online+on+december+ten+one+thousand+eight+hundred+and+ninety+six+the+man+on+the+medal+alfred
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+charming+lady+wislawa+szymborska+won+the+nobel+prize+for+literature
found 1 videos: [['/talks/rives_the_museum_of_four_in_the_morning', '2014']]
selected: /talks/rives_the_museum_of_four_in_the_morning
sleep 1 seconds to avoid blocking
------<1840>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/Rives_4AM_2007.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+a+recent+comic+strip+from+the+los+angeles+times+the+punch+line+on+the+other+hand+i+don+t+have+to+get+up+at+four+every+single+morning+to+milk+my+labrador+this
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+a+recent+cover+of+new+york+magazine
found 2 videos: [['/talks/rives_the_4_a_m_mystery', '2007'], ['/talks/stuart_brown_play_is_more_than_just_fun', '2009']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=best+hospitals+where+doctors+say+they+would+go+for+cancer+treatment+births+strokes+heart+disease+hip+replacements
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=four+a+m+emergencies+and+this+is+a+song+medley+i+put+together
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ever+notice+that+four+in+the+morning+has+become+some+sort+of+meme+or+shorthand+it+means+something+like+you+are+awake+at+the+worst+possible+hour+a
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=time+for+inconveniences++mishaps+yearnings+a+time
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+plotting+to+whack+the+chief+of+police+like+in+this+classic+scene
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=coppola+s+script+describes+these+guys+as+exhausted+in+shirt+sleeves+it+is+four+in+the+morning+a
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=time+for+even+grimmer+stuff+than+that+like+autopsies+and+embalmings+in+isabel+allende+s+the+house+of+the+spirits+after+the+breathtaking+green+haired+rosa+is+murdered
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+doctors+preserve+her+with+unguents+and+morticians++paste+they+worked+until+four+o+clock+in+the+morning++a+time+for+even+grimmer+stuff+than+that+like+in+last+april+s+new+yorker+magazine+this+short+fiction+piece+by+martin+amis
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+september+eleven+two+thousand+and+one+he+opened+his+eyes+at+four+a+m+in+portland+maine+and+mohamed+atta+s+last+day+began+for+a+time
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+i+find+to+be+the+most+placid+and+uneventful+hour+of+the+day+four+in+the+morning+sure+gets+an+awful+lot+of+bad+press
found 1 videos: [['/talks/rives_the_4_a_m_mystery', '2007']]
selected: /talks/rives_the_4_a_m_mystery
sleep 1 seconds to avoid blocking
------<1841>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/Rives_IfIControlledtheInternet_2006S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+wrote+this+poem+after+hearing+a
found 1 videos: [['/talks/rives_if_i_controlled_the_internet', '2006']]
selected: /talks/rives_if_i_controlled_the_internet
sleep 5 seconds to avoid blocking
------<1842>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/Rives_Mockingbird_2006.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+mimus+polyglottos+are+the+emcees+of+the+animal+kingdom+they+listen+and+mimic+and+remix+what+they+like+they+rock+the+mic+outside+my+window+every+morning+i+can+hear+them+sing+the+sounds+of+the+car+alarms+like+they+were+songs
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+spring+i+mean+if+you+can+talk+it+a+mockingbird+can+squawk+it+so+check+it+i+m+gonna+to+catch+mockingbirds+i+m+going+to+trap+mockingbirds+all+across+the+nation+and+put+them+gently+into+mason+jars+like+mockingbird+molotov+cocktails
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=yeah+and+as+i+drive+through+a+neighborhood+say+where+people+got+a+lotta+i+ll+take+a+mockingbird+i+caught+in+a+neighborhood+where+folks+ain+t+got+nada+and+just+let+it+go+you+know+up+goes+the+bird+out+come+the+words
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+be+the+johnny+appleseed+of+sound
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=cruising+random+city+streets+rocking+a+drop+top+cadillac+with+a+big+backseat+packing+like+thirteen+brown+paper+walmart+bags+full+of+loaded+mockingbirds+and+i+ll+get+everybody
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ll+get+the+nitwit+on+the+network+news+saying+we+ll+be+back+in+a+moment+with+more+on+the+crisis+i+ll+get+some+asshole+at+a+watering+hole+asking+what+brand+the+ice+is+i+ll+get+that+lady+at+the+laundromat+who+always+seems+to+know+what+being+nice+is+i
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=dinner+plans+i+ll+get+the+last+time+you+lied+i+ll+get+baby+just+give+me+the+frickin++tv+guide+i+ll+get+a+lonely+little+sentence+with+real+error+in+it+yeah+i+guess+i+could+come+inside+but+only+for+a+minute+i+ll
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=get+an+esl+class+in+chinatown+learning+it+s+raining+it+s+pouring+i+ll+put+a+mockingbird+on+a+late+night+train+just+to+get+an+old+man+snoring+i+ll+get+your+ex+lover+telling+someone+else+good+morning
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=get+everyone+s+good+mornings++i+don+t+care+how+you+make++em+aloha++konichiwa+shalom+ah+salam+alaikum+everybody+means+everybody+means+everybody+here+and+so+maybe+i+ll+build+a+gilded+cage
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ll+line+the+bottom+with+old+notebook+pages+inside+it+i+will+place+a+mockingbird+for+short+explanation+hippie+parents
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=gold+bars+on+the+other+an+entire+planet
found 6 videos: [['/talks/rives_a_mockingbird_remix_of_ted2006', '2007'], ['/talks/ann_cooper_what_s_wrong_with_school_lunches', '2008'], ['/talks/richard_dawkins_why_the_universe_seems_so_strange', '2006'], ['/talks/ben_saunders_why_did_i_ski_to_the_north_pole', '2006'], ['/talks/dan_gilbert_the_surprising_science_of_happiness', '2006'], ['/talks/steven_johnson_how_the_ghost_map_helped_end_a_killer_disease', '2007']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+are+twelve+billion+light+years+from+the+edge+that+s+a+guess+space+is+length+and+breadth+continued+indefinitely+but+you+cannot+buy+a+ticket+to+travel+commercially+to+space+in+america+because+countries
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+beginning+to+eat+like+us+live+like+us+and+die+like+us+you+might+wanna+avert+your+gaze+because+that+is+a+newt+about+to+regenerate+its+limb+and+shaking+hands+spreads+more+germs+than+kissing
found 1 videos: [['/talks/rives_a_mockingbird_remix_of_ted2006', '2007']]
selected: /talks/rives_a_mockingbird_remix_of_ted2006
sleep 4 seconds to avoid blocking
------<1843>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/Rives_TTYL_2008.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+we+have+a+story+the+start+of+the+story+where+this
found 7 videos: [['/talks/newton_aduaka_the_story_of_ezra', '2008'], ['/talks/ngozi_okonjo_iweala_want_to_help_africa_do_business_here', '2007'], ['/talks/chimamanda_ngozi_adichie_the_danger_of_a_single_story', '2009'], ['/talks/kevin_kelly_technology_s_epic_story', '2010'], ['/talks/ngozi_okonjo_iweala_aid_versus_trade', '2007'], ['/talks/stephen_palumbi_hidden_toxins_in_the_fish_we_eat', '2010'], ['/talks/steven_johnson_where_good_ideas_come_from', '2010']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=means+guy++and+that+is+a+ponytail+on+a+passer+by
found 1 videos: [['/talks/rives_a_story_of_mixed_emoticons', '2008']]
selected: /talks/rives_a_story_of_mixed_emoticons
sleep 4 seconds to avoid blocking
------<1844>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RLukeDuBois_2016.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+m+an+artist++but+a+little+bit+of+a+peculiar+one+i+don+t+paint++i+can+t+draw
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+shop+teacher+in+high+school+wrote+that+i+was+a+menace
found 1 videos: [['/talks/r_luke_dubois_insightful_human_portraits_made_from_data', '2016']]
selected: /talks/r_luke_dubois_insightful_human_portraits_made_from_data
sleep 3 seconds to avoid blocking
------<1845>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RobbWiller_2016X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+you+probably+have+the+sense+as+most+people+do+that+polarization+is+getting+worse+in+our+country
found 2 videos: [['/talks/robb_willer_how_to_have_better_political_conversations', '2017'], ['/talks/gretchen_carlson_david_brooks_political_common_ground_in_a_polarized_united_states', '2017']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+the+divide+between+the+left+and+the+right+is+as+bad+as+it+s+been+in
found 3 videos: [['/talks/gretchen_carlson_david_brooks_political_common_ground_in_a_polarized_united_states', '2017'], ['/talks/jonathan_haidt_can_a_divided_america_heal', '2016'], ['/talks/tasos_frantzolas_everything_you_hear_on_film_is_a_lie', '2016']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=really+any+of+our+lifetimes+but+you+might+also+reasonably+wonder+if+research+backs+up+your+intuition+and
found 1 videos: [['/talks/robb_willer_how_to_have_better_political_conversations', '2017']]
selected: /talks/robb_willer_how_to_have_better_political_conversations
sleep 4 seconds to avoid blocking
------<1846>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RobDunbar_2010Z.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=really+want+to+understand+the+problem+that+we+re+facing
found 3 videos: [['/talks/david_perry_are_games_better_than_life', '2008'], ['/talks/catherine_mohr_surgery_s_past_present_and_robotic_future', '2009'], ['/talks/kate_orff_reviving_new_york_s_rivers_with_oysters', '2011']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+the+oceans+you+have+to+think+about+the+biology+at+the+same+time+you+think+about+the+physics+we+can+t+solve+the+problems+unless+we+start
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=studying+the+ocean+in+a+very+much+more+interdisciplinary+way
found 1 videos: [['/talks/rob_dunbar_discovering_ancient_climates_in_oceans_and_ice', '2010']]
selected: /talks/rob_dunbar_discovering_ancient_climates_in_oceans_and_ice
sleep 3 seconds to avoid blocking
------<1847>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RobertBallard_2008.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+first+question+is+this+our+country
found 4 videos: [['/talks/chimamanda_ngozi_adichie_the_danger_of_a_single_story', '2009'], ['/talks/louise_leakey_a_dig_for_humanity_s_origins', '2008'], ['/talks/rob_hopkins_transition_to_a_world_without_oil', '2009'], ['/talks/robert_wright_progress_is_not_a_zero_sum_game', '2007']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=has+two+exploration+programs+one+is
found 11 videos: [['/talks/robert_ballard_the_astonishing_hidden_world_of_the_deep_ocean', '2008'], ['/talks/brian_cox_why_we_need_the_explorers', '2010'], ['/talks/shukla_bose_teaching_one_child_at_a_time', '2010'], ['/talks/stephen_wolfram_computing_a_theory_of_all_knowledge', '2010'], ['/talks/jonathan_harris_the_web_s_secret_stories', '2007'], ['/talks/stuart_brown_play_is_more_than_just_fun', '2009'], ['/talks/tim_brown_tales_of_creativity_and_play', '2008'], ['/talks/paul_sereno_digging_up_dinosaurs', '2009'], ['/talks/john_delaney_wiring_an_interactive_ocean', '2010'], ['/talks/robert_lang_the_math_and_magic_of_origami', '2008'], ['/talks/burt_rutan_the_real_future_of_space_exploration', '2006']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=nasa+with+a+mission+to+explore+the+the+great+beyond+to+explore+the+heavens+which+we+all+want+to+go+to+if+we+re+lucky++and+you+can+see+we+have+sputnik+and+we+have
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=manifestations+of+space+exploration+well+there+s+also+another+program+in+another+agency+within+our+government+in+ocean+exploration++it+s+in+noaa++the+national+oceanic+and+atmospheric+administration
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+my+question+is+this+why+are+we+ignoring+the+oceans
found 1 videos: [['/talks/robert_ballard_the_astonishing_hidden_world_of_the_deep_ocean', '2008']]
selected: /talks/robert_ballard_the_astonishing_hidden_world_of_the_deep_ocean
sleep 2 seconds to avoid blocking
------<1848>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RobertFischell_2005.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+discuss+with+you
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=three+of+my+inventions+that+can+have+an+effect+on+ten+to+a+one+hundred+million+people+which+we+will+hope+to+see+happen++we
found 1 videos: [['/talks/robert_fischell_my_wish_three_unusual_medical_inventions', '2006']]
selected: /talks/robert_fischell_my_wish_three_unusual_medical_inventions
sleep 4 seconds to avoid blocking
------<1849>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RobertFull_2002.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+i+could+have+the+first+slide+please
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=contrary+to+calculations+made+by+some+engineers
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=bees+can+fly+dolphins+can+swim+and+geckos+can+even+climb
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=up+the+smoothest+surfaces+now+what+i+want+to+do+in+the+short+time+i+have+is+to+try+to+allow+each+of+you+to
error: request timeout
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+get+to+do+this+all+the+time+and+it+s+just+incredible+i+want+to+try+to+share+just+a+little+bit+of+that+with+you
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+this+presentation++the+challenge+of+looking+at+nature+s+designs+and+i+ll+tell+you+the+way+that+we+perceive+it+and+the+way+we+ve+used+it
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+challenge+of+course+is+to+answer+this+question+what+permits+this+extraordinary+performance+of+animals+that+allows+them+basically+to+go+anywhere
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+if+we+could+figure+that+out+how+can+we+implement
error: request timeout
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well++many+biologists+will+tell+engineers+and+others
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=organisms+have+millions+of+years+to+get+it+right+they+re+spectacular+they+can+do+everything+wonderfully+well++so+the+answer+is+bio+mimicry+just+copy+nature+directly
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+know+from+working+on+animals
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+the+truth+is+that+s+exactly+what+you+don+t+want+to+do
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+evolution+works+on+the+just+good+enough+principle+not+on+a+perfecting+principle
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+constraints+in+building+any+organism+when+you+look+at+it+are+really+severe
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=natural+technologies+have+incredible+constraints+think+about+it+if+you+were+an+engineer+and+i+told+you
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+you+had+to+build+an+automobile++but+it+had+to+start+off+to+be+this+big+then+it+had+to+grow+to+be+full+size+and+had+to+work+every+step+along+the+way
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+think+about+the+fact+that+if+you+build+an+automobile+i+ll+tell+you+that+you+also+inside+it+have+to+put+a+factory
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+allows+you+to+make+another+automobile
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+can+absolutely+never++absolutely+never++because+of+history+and+the+inherited+plan+start+with+a+clean+slate+so
error: request timeout
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=evolution+works+more+like+a+tinkerer+than+an+engineer+and+this+is+really+important+when+you+begin+to+look+at+animals+instead+we+believe
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+need+to+be+inspired+by+biology
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+need+to+discover+the+general+principles+of+nature+and+then+use+these+analogies+when+they+re+advantageous
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+a+real+challenge+to+do+this+because+animals+when+you+start+to+really
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=look+inside+them+how+they+work
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=appear+hopelessly+complex+there+s+no+detailed+history+of+the+design+plans+you+can+t+go+look+it+up+anywhere
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+have+way+too+many+motions+for+their+joints
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=too+many+muscles+even+the+simplest+animal+we+think+of+something+like+an+insect++and+they+have+more+neurons+and+connections+than+you+can+imagine
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+can+you+make+sense+of+this++well++we+believed+and+we+hypothesized
error: request timeout
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+way+animals+could+work+simply+is+if+the+control+of+their+movements
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=tended+to+be+built+into+their+bodies+themselves
error: request timeout
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+eight+legged+animals+all+produce+the+same+forces+on+the+ground+when+they+move++they+all+work+like+this+kangaroo
error: request timeout
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+can+be+modeled+by+a+spring+mass+system+that+we+call+the+the+spring+mass+system+because+we+re+biomechanists+it+s+actually+a+pogo+stick
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+all+produce+the+pattern+of+a+pogo+stick+how+is+that+true++well+a+human+one+of+your+legs
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=works+like+two+legs+of+a+trotting+dog++or+works+like+three+legs+together+as+one+of+a+trotting+insect++or+four+legs+as+one+of+a+trotting+crab
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=then+they+alternate+in+their+propulsion++but+the+patterns+are+all+the+same++almost+every+organism+we+ve+looked+at+this+way
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=be+an+article+coming+out+that+says+that+really+big+things
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+t+rex+probably+couldn+t+do+this+but+you+ll+see+that+next+week+now+what+s+interesting+is+the+animals+then+we+said+bounce+along+the+vertical+plane+this+way+and+in+our+collaborations+with+pixar+in+a+bug+s+life
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+bipedal+nature+of+the+characters+of+the+ants+and+we+told+them+of+course+they+move+in+another+plane+as+well++and+they+asked+us+this+question+they+say+why+model+just+in+the+sagittal+plane+or+the+vertical+plane+when+you+re+telling+us+these+animals+are+moving+in+the+horizontal+plane
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+a+good+question++nobody+in+biology+ever+modeled+it+this+way+we+took+their+advice
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+modeled+the+animals+moving+in+the+horizontal+plane+as+well+we+took+their+three+legs
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=collapsed+them+down+as+one+we+got+some+of+the+best+mathematicians+in+the+world+from+princeton+to+work+on+this+problem
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+were+able+to+create+a+model+where+animals+are+not+only+bouncing+up+and+down+but+they+re+also+bouncing+side+to+side
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+the+same+time+and+many+organisms+fit+this+kind+of+pattern+now+why+is+this+important+to+have+this+model+because+it+s+very+interesting+when+you+take+this+model
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+perturb+it+you+give+it+a+push+as+it+bumps+into
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+no+brain+or+no+reflexes+just+by+the+structure+alone++it+s+a+beautiful+model
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+s+look+at+the+mathematics
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=laughter+the+animals+when+you+look
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=using+basically+springy+legs+that+is+the+legs+can+do+computations+on+their+own+the+control+algorithms+in+a+sense+are+embedded+in+the+form+of+the+animal+itself
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=why+haven+t+we+been+more+inspired+by+nature+and+these+kinds+of+discoveries
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well++i+would+argue+that+human+technologies+are+really+different+from+natural+technologies
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+least+they+have+been+so++so+far+think+about+the+typical+kind+of+robot+that+you+see
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=human+technologies+have+tended+to+be+large
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=flat+with+right+angles+stiff++made+of+metal++they+have+rolling+devices+and+axles+there+are+very+few+motors+very+few+sensors
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=whereas+nature+tends+to+be+small
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+curved+and+it+bends+and+twists+and+has+legs+instead+and+appendages++and+has+many+muscles+and+many+many+sensors
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=different+design+however+what+s+changing+what+s+really+exciting+and+i+ll+show+you+some+of+that+next+is
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+as+human+technology+takes+on+more+of+the+characteristics+of+nature+then+nature+really+can+become+a+much+more+useful+teacher+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+s+one+example+that+s+really+exciting+this+is+a+collaboration+we+have+with+stanford++and+they+developed+this+new+technique+called+shape
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+a+technique+where+they+can+mix+materials+together+and+mold+any+shape+that+they+like
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+put+in+the+material+properties+they+can+embed+sensors+and+actuators+right+in+the+form+itself
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+example+here+s+a+leg+the+clear+part+is+stiff
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+white+part+is+compliant+and+you+don+t+need+any+axles+there+or+anything++it+just+bends+by+itself+beautifully+so+you+can+put+those+properties
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+inspired+them+to+show+off+this+design+by+producing+a+little+robot+they+named+sprawl
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=our+work+has+also+inspired+another+robot+a+biologically+inspired+bouncing+robot+from+the+university+of+michigan+and+mcgill
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=named+rhex+for+robot+hexapod+and+this+one+s+autonomous
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+s+go+to+the+video+and+let+me+show+you+some+of+these+animals+moving+and+then+some+of+the+simple+robots+that+have+been+inspired+by+our+discoveries
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+s+what+some+of+you+did+this+morning+although+you+did+it+outside+not+on+a+treadmill++here+s+what+we+do
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+a+death+s+head+cockroach++this+is+an+american+cockroach+you+think+you+don+t+have+in+your+kitchen
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=said+all+these+animals+are+sort+of+working+like+pogo+sticks+they+re+bouncing+along+as+they+move++and+you+can+see+that+in+this+ghost+crab+from+the+beaches+of+panama+and+north+carolina
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+goes+up+to+four+meters+per+second+when+it+runs
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+actually+leaps+into+the+air+and+has+aerial+phases+when+it+does+it+like+a+horse++and+you+ll+see+it+s+bouncing+here
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=discovered+is+whether+you+look+at+the+leg+of+a+human+like+richard++or+a+cockroach++or+a+crab
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+a+kangaroo+the+relative+leg+stiffness+of+that+spring+is+the+same+for+everything+we+ve+seen+so+far
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+what+good+are+springy+legs+then+what+can+they+do+well+we+wanted+to+see+if+they+allowed+the+animals+to+have+greater+stability+and+maneuverability+so+we+built+a+terrain+that+had+obstacles+three+times+the+hip+height+of+the+animals+that+we+re+looking+at
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+were+certain+they+couldn+t+do+this+and+here+s+what+they+did
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+animal+ran+over+it+and+it+didn+t+even+slow+down
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+didn+t+decrease+its+preferred+speed+at+all+we+couldn+t+believe+that+it+could+do+this++it+said+to+us+that+if+you+could+build+a+robot+with+very+simple+springy+legs++you+could
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=make+it+as+maneuverable+as+any+that+s+ever+been+built
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+s+the+first+example+of+that+this+is+the+stanford+shape+deposition+manufactured+robot+named+sprawl++it+has+six+legs+there+are+the+tuned
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=springy+legs++it+moves+in+a+gait
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+an+insect+uses+and+here+it+is+going+on+the+treadmill
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+what+s+important+about+this+robot++compared+to+other+robots+is+that+it+can+t+see+anything++it+can+t+feel+anything
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+can+maneuver+over+these+obstacles+without+any+difficulty+whatsoever++it+s+this+technique+of+building
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+properties+into+the+form+this+is+a+graduate+student++this+is+what+he+s+doing+to+his+thesis+project
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=very+robust+if+a+graduate+student+does+that+to+his+thesis+project+this+is+from+mcgill+and+university+of+michigan+this+is+the+rhex
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+only+has+six+moving+parts++six+motors+but+it+has+springy+tuned
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=legs++it+moves+in+the+gait+of+the+insect+it+has+the+middle+leg+moving+in+synchrony+with+the+front+and+the+hind+leg+on+the+other+side+sort+of+an
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=go+on+different+surfaces+here+s+sand+although+we+haven+t+perfected+the+feet+yet+but+i+ll+talk+about+that+later++here+s+rhex
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+robot+can+t+see+anything++it+can+t+feel+anything++it+has+no+brain++it+s+just+working+with+a+tuned+mechanical
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=going+down+a+pathway+i+presented+this+to+the+jet+propulsion+lab+at+nasa++and+they+said+that+they+had+no+ability+to+go+down+craters+to+look+for+ice+and+life+ultimately+on+mars
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+he+said+especially+with+legged+robots+because+they+re+way+too+complicated++nothing+can+do+that+and+i+talk+next+i+showed+them+this+video
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+the+simple+design+of+rhex+here+and+just+to+convince+them+we+should+go+to+mars+in+two+thousand+and+eleven+i+tinted+the+video+orange+just+to+give+them+the+sense
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=another+reason+why+animals+have+extraordinary+performance+and+can+go+anywhere+is+because+they+have+an+effective+interaction+with+the+environment
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+animal+i+m+going+to+show+you+that+we+studied+to+look+at+this+is+the+gecko+we+have+one+here
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+notice+its+position++it+s+holding+on+now+i+m+going+to+challenge+you+i+m+going+show+you+a+video
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+the+animals+is+going+to+be+running+on+the+level++and+the+other+one+s+going+to+be+running+up+a+wall++which+one+s+which+they
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=re+going+at+a+meter+a+second
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+many+think+the+one+on+the+left+is+running+up+the+wall+applause
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=okay++the+point+is+it+s+really+hard+to+tell
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+looked+at+students+do+this+and+they+couldn+t+tell+they+can+run+up+a+wall+at+a+meter+a+second+fifteen+steps+per+second++and+they+look+like+they+re+running+on+the+level++how+do+they+do+this
error: request timeout
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+one+on+the+right+was+going+up+the+hill++how+do+they+do+this+they+have+bizarre+toes++they+have+toes
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+uncurl+like+party+favors+when+you+blow+them+out
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+peel+off+the+surface+like+tape+like+if+we+had+a+piece+of+tape+now+we+d+peel+it+this+way+they+do+this+with+their+toes++it+s+bizarre
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+peeling+inspired+irobot+that+we+work+with+to+build
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+s+a+legged+version+and+a+tractor+version+or+a+bulldozer+version
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+s+see+some+of+the+geckos+move+with+some+video+and+then+i+ll+show+you+a+little+bit+of+a+clip+of+the+of+the+robots++here+s+the+gecko+running+up+a+vertical+surface+there+it+goes
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+real+time+there+it+goes+again
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=obviously+we+have+to+slow+this+down+a+little+bit
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+t+use+regular+cameras+you+have+to+take+one+thousand+pictures+per+second+to+see+this
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+here+s+some+video+at+one+thousand+frames+per+second+now+i+want+you+to+look+at+the+animal+s+back+do
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+see+how+much+it+s+bending+like+that+we+can+t+figure+that+out+that+s+an+unsolved+mystery+we+don+t+know+how+it+works+if+you+have+a+son+or+a+daughter+that
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+come+to+berkeley++come+to+my+lab+and+we+ll+figure+this+out++okay+send+them+to+berkeley+because+that+s+the+next+thing+i+want+to+do++here+s+the+gecko+mill
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+a+see+through+treadmill+with+a+see+through+treadmill+belt++so+we+can+watch+the+animal+s+feet+and+videotape+them+through+the+treadmill+belt
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+see+how+they+move++here+s+the+animal+that+we+have
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=running+on+a+vertical+surface++pick+a+foot+and+try+to+watch+a+toe+and+see+if+you+can+see+what+the+animal+s+doing
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=see+it+uncurl+and+then+peel+these+toes++it+can+do+this+in+fourteen+milliseconds
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=adhesive+to+do+it++peeling+in+the+animal++peeling+in+the
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=climb+autonomously+can+go+on+the+flat+surface++transition+to+a+wall+and+then+go+onto+a+ceiling+there+s+the+bulldozer+version
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now++it+doesn+t+use+pressure+sensitive+glue+the+animal+does+not+use+that
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=re+limited+to+at+the+moment+what+does+the+animal+do+the+animal+has+weird+toes++and+if+you+look+at+the+toes+they+have+these+little+leaves+there
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+if+you+blow+them+up+and+zoom+in+you+ll+see+that+s+there+s+little+striations+in+these+leaves
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+if+you+zoom+in+two+hundred+and+seventy+times+you+ll+see+it+looks+like+a+rug
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+if+you+blow+that+up+and+zoom+in+nine+hundred+times+you+see+there+are+hairs+there+tiny+hairs
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+if+you+look+carefully+those+tiny+hairs+have+striations
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+if+you+zoom+in+on+those+thirty+thousand+times++you+ll+see+each+hair+has+split+ends
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+if+you+blow+those+up++they+have+these+little+structures+on+the+end
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+smallest+branch+of+the+hairs+looks+like+spatulae+and+an+animal+like+that+has+one+billion
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+get+very+close+to+the+surface++in+fact+there+s+the+diameter+of+your+hair+a+gecko+has+two+million+of+these+and+each+hair+has+one+hundred+to+one+thousand+split+ends
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=think+of+the+contact+of+that+that+s+possible
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+were+fortunate+to+work+with+another+group+at+stanford+that+built+us+a+special+manned+sensor+that+we+were+able+to+measure+the+force+of+an+individual+hair
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+s+an+individual+hair+with+a+little+split
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+measured+the+forces+they+were+enormous++they+were+so+large+that+a+patch+of+hairs+about+this+size+the+gecko+s+foot+could+support+the+weight+of+a+small+child+about+forty+pounds+easily
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now++how+do+they+do+it
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+ve+recently+discovered+this+do+they+do+it+by+friction+no+force+is+too+low+do+they+do+it+by+electrostatics+no
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+change+the+charge+they+still+hold+on+do+they+do+it+by+interlocking+that+s+kind+of+a+like+a+velcro+like+thing+no++you+can+put+them+on+molecular+smooth+surfaces+they+don+t+do+it++how+about+suction
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+stick+on+in+a+vacuum
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+about+wet+adhesion+or+capillary+adhesion+they+don+t+have+any+glue++and+they+even+stick+under+water+just+fine+if+you+put+their+foot+under+water+they+grab+on+how+do+they+do+it+then
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=believe+it+or+not+they+grab+on+by+intermolecular
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+van+der+waals+forces+you+know+you+probably+had+this+a+long+time+ago+in+chemistry+where+you+had+these+two+atoms+they+re+close+together+and+the+electrons+are+moving+around+that+tiny+force+is+sufficient+to+allow+them+to+do+that+because+it+s+added+up+so+many+times+with+these+small+structures
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+we+re+taking+that+inspiration+of+the+hairs
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+with+another+colleague+at+berkeley+we+re+manufacturing+them+and+just+recently+we+ve+made+a+breakthrough+where+we+now+believe
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=going+to+be+able+to+create+the+first+synthetic
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=many+companies+are+interested+in+this
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+also+presented+to+nike+even
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=excited+about+this+that+we+realized+that+that+small+size+scale+and+where+everything+gets+sticky+and+gravity+doesn+t+matter+anymore
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+needed+to+look+at+ants+and+their+feet+because+one+of+my+other+colleagues+at+berkeley
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=has+built+a+six+millimeter+silicone+robot+with+legs++but+it+gets+stuck+it+doesn+t+move+very+well
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+the+ants+do+and+we+ll+figure+out+why+so+that+ultimately+we+ll+make+this+move
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+imagine+you+re+going+to+be+able+to+have+swarms+of
error: request timeout
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=where+s+this+going+i+think+you+can+see+it+already+clearly
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+internet+is+already+having+eyes+and+ears+you+have+web+cams+and+so+forth
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+it+s+going+to+also+have+legs+and+hands+you+re+going+to+be+able+to+do+programmable+work+through+these+kinds+of+robots+so+that+you+can
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+saw+david+kelly+is+at+the+beginning+of+that+with+his
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+in+conclusion+i+think+the+message+is+clear+if+you+need+a+message++if+nature+s+not+enough
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+care+about+search+and+rescue+or+mine+clearance+or+medicine+or+the+various+things+we+re+working+on
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=nature+s+designs+otherwise+these+secrets+will+be+lost+forever+thank+you
found 0 videos: []
error: no video is found.
sleep 4 seconds to avoid blocking
------<1850>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RobertFull_2005.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=do+is+to+create+a+biologically+inspired+design++and+so+here+s+the+challenge+i+want+you+to+help+me+create+a+fully+3d+dynamic+parameterized+contact+model
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=translation+of+that+is+could+you+help+me+build+a+foot++and+it+is+a+true+challenge+and+i+do+want+you+to+help+me+of+course+in+the+challenge+there+is+a+prize+it
found 1 videos: [['/talks/robert_full_the_sticky_wonder_of_gecko_feet', '2007']]
selected: /talks/robert_full_the_sticky_wonder_of_gecko_feet
sleep 5 seconds to avoid blocking
------<1851>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RobertFull_2009.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+me+share+with+you+today
found 5 videos: [['/talks/chris_abani_on_humanity', '2008'], ['/talks/ariel_garten_know_thyself_with_a_brain_scanner', '2011'], ['/talks/jamie_heywood_the_big_idea_my_brother_inspired', '2010'], ['/talks/ali_carr_chellman_gaming_to_re_engage_boys_in_learning', '2011'], ['/talks/jessica_jackley_poverty_money_and_love', '2010']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=an+original+discovery++but+i+want+to+tell+it+to+you+the+way+it+really+happened+not+the+way+i+present+it+in+a+scientific+meeting+or+the+way+you+d+read+it+in+a+scientific+paper
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=story+about+beyond+biomimetics+to+something+i+m+calling+biomutualism
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+define+that+as+an+association+between+biology+and+another+discipline+where+each+discipline+reciprocally+advances+the+other+but+where+the+collective+discoveries+that+emerge+are+beyond+any+single+field
found 1 videos: [['/talks/robert_full_learning_from_the_gecko_s_tail', '2009']]
selected: /talks/robert_full_learning_from_the_gecko_s_tail
sleep 4 seconds to avoid blocking
------<1852>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RobertFull_2014U.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=even+nature+s+most+disgusting+creatures+have+important+secrets
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+who+would+want+a+swarm+of+cockroaches+coming+towards+them+yet+one+of+the+greatest+differences+between+natural+and+human+technologies+relates
found 1 videos: [['/talks/robert_full_the_secrets_of_nature_s_grossest_creatures_channeled_into_robots', '2014']]
selected: /talks/robert_full_the_secrets_of_nature_s_grossest_creatures_channeled_into_robots
sleep 3 seconds to avoid blocking
------<1853>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RobertGordon_2013.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+how+we+traveled+in+the+year+one+thousand+nine+hundred
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+an+open+buggy++it+doesn+t+have+heating+it+doesn+t+have+air+conditioning++that+horse+is+pulling+it+along+at+one+percent+of+the+speed+of+sound
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=turns+into+a+quagmire+of+mud+anytime+it+rains
found 1 videos: [['/talks/robert_gordon_the_death_of_innovation_the_end_of_growth', '2013']]
selected: /talks/robert_gordon_the_death_of_innovation_the_end_of_growth
sleep 3 seconds to avoid blocking
------<1854>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RobertGupta_2012P.stm
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+a+distinct+privilege+to+be+here
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+few+weeks+ago+i+saw+a+video+on+youtube+of+congresswoman+gabrielle+giffords+at+the+early+stages+of+her+recovery+from+one+of+those+awful
found 1 videos: [['/talks/robert_gupta_between_music_and_medicine', '2012']]
selected: /talks/robert_gupta_between_music_and_medicine
sleep 4 seconds to avoid blocking
------<1855>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RobertHammond_2011U.stm
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+an+old+elevated+rail+line+that+runs+for+a+mile+and+a+half+right+through+manhattan
found 1 videos: [['/talks/robert_hammond_building_a_park_in_the_sky', '2011']]
selected: /talks/robert_hammond_building_a_park_in_the_sky
sleep 4 seconds to avoid blocking
------<1856>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RobertLang_2008.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+talk+is+flapping+birds+and+space+telescopes+and+you+would+think+that+should+have+nothing+to+do+with+one+another+but+i+hope+by+the+end+of+these+eighteen+minutes+you+ll+see+a+little+bit+of+a+relation+it+ties+to+origami++so+let+me+start+what+is+origami
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=most+people+think+they+know+what+origami+is+it+s+this+flapping+birds+toys
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=cootie+catchers+that+sort+of+thing+and+that+is+what+origami+used+to+be
found 1 videos: [['/talks/robert_lang_the_math_and_magic_of_origami', '2008']]
selected: /talks/robert_lang_the_math_and_magic_of_origami
sleep 4 seconds to avoid blocking
------<1857>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RobertMuggah_2014G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+can+cut+violent+deaths+around+the+world
found 6 videos: [['/talks/dan_gross_why_gun_violence_can_t_be_our_new_normal', '2016'], ['/talks/robert_muggah_how_to_protect_fast_growing_cities_from_failing', '2015'], ['/talks/ilona_szabo_de_carvalho_4_lessons_i_learned_from_taking_a_stand_against_drugs_and_gun_violence', '2015'], ['/talks/juno_mac_the_laws_that_sex_workers_really_want', '2016'], ['/talks/gary_haugen_the_hidden_reason_for_poverty_the_world_needs_to_address_now', '2015'], ['/talks/hannah_fry_is_life_really_that_complex', '2012']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+fifty+percent+in+the+next+three+decades+all+we+have+to+do
found 13 videos: [['/talks/lord_nicholas_stern_the_state_of_the_climate_and_what_we_might_do_about_it', '2014'], ['/talks/thomas_insel_toward_a_new_understanding_of_mental_illness', '2013'], ['/talks/ray_kurzweil_get_ready_for_hybrid_thinking', '2014'], ['/talks/hans_and_ola_rosling_how_not_to_be_ignorant_about_the_world', '2014'], ['/talks/eric_x_li_a_tale_of_two_political_systems', '2013'], ['/talks/james_hansen_why_i_must_speak_out_about_climate_change', '2012'], ['/talks/tasso_azevedo_hopeful_lessons_from_the_battle_to_save_rainforests', '2015'], ['/talks/thomas_piketty_new_thoughts_on_capital_in_the_twenty_first_century', '2014'], ['/talks/melinda_gates_let_s_put_birth_control_back_on_the_agenda', '2012'], ['/talks/ngozi_okonjo_iweala_how_africa_can_keep_rising', '2016'], ['/talks/patricia_medici_the_coolest_animal_you_know_nothing_about_and_how_we_can_save_it', '2015'], ['/talks/courtney_e_martin_the_new_american_dream', '2016'], ['/talks/travis_kalanick_uber_s_plan_to_get_more_people_into_fewer_cars', '2016']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+drop+killing+by+two+point+three+percent+a+year+and+we+ll+hit+that+target++you+don+t+believe+me
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+leading+epidemiologists+and+criminologists+around+the+world+seem+to+think+we+can+and+so+do+i+but+only+if+we+focus+on+our+cities++especially+the+most+fragile+ones
found 1 videos: [['/talks/robert_muggah_how_to_protect_fast_growing_cities_from_failing', '2015']]
selected: /talks/robert_muggah_how_to_protect_fast_growing_cities_from_failing
sleep 1 seconds to avoid blocking
------<1858>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RobertNeuwirth_2005.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+i+consider+to+be+the+cities+of+tomorrow
found 1 videos: [['/talks/robert_neuwirth_the_hidden_world_of_shadow_cities', '2007']]
selected: /talks/robert_neuwirth_the_hidden_world_of_shadow_cities
sleep 4 seconds to avoid blocking
------<1859>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RobertNeuwirth_2005G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+me+show+you+some+images+of+what+i+consider+to+be+the+cities+of+tomorrow++so++that+s+kibera++the
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+the+squatter+community+in+sanjay+gandhi
found 1 videos: [['/talks/robert_neuwirth_the_hidden_world_of_shadow_cities', '2007']]
selected: /talks/robert_neuwirth_the_hidden_world_of_shadow_cities
sleep 5 seconds to avoid blocking
------<1860>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RobertNeuwirth_2012G.stm
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+what+i+mean+by+that+is+that+this+is+a+photograph+i+took+in+makoko++shantytown+in+lagos+nigeria++it+s+built+over+the
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+there+are+no+streets+where+there+can+be+stores+to+shop++and+so+the+store+comes+to+you
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+in+the+same+community++this+is+business+synergy
found 1 videos: [['/talks/robert_neuwirth_the_power_of_the_informal_economy', '2012']]
selected: /talks/robert_neuwirth_the_power_of_the_informal_economy
sleep 5 seconds to avoid blocking
------<1861>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RobertoDAngelo_2013G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+s+our+son+he+was+born+two+and+a+half+years+ago+and+i+had+a+pretty+tough+pregnancy
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=had+to+stay+still+in+a+bed+for+like+eight+months
found 8 videos: [['/talks/roberto_d_angelo_francesca_fedeli_in_our_baby_s_illness_a_life_lesson', '2013'], ['/talks/simon_lewis_don_t_take_consciousness_for_granted', '2011'], ['/talks/daphne_bavelier_your_brain_on_video_games', '2012'], ['/talks/dilip_ratha_the_hidden_force_in_global_economics_sending_money_home', '2014'], ['/talks/bunker_roy_learning_from_a_barefoot_movement', '2011'], ['/talks/khalida_brohi_how_i_work_to_protect_women_from_honor_killings', '2015'], ['/talks/seth_shostak_et_is_probably_out_there_get_ready', '2012'], ['/talks/amanda_burden_how_public_spaces_make_cities_work', '2014']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+in+the+end+everything+seemed+to+be+under+control+so+he+got+the+right+weight+at+birth+he+got+the+right+apgar+index+so+we+were+pretty+reassured+by
found 1 videos: [['/talks/roberto_d_angelo_francesca_fedeli_in_our_baby_s_illness_a_life_lesson', '2013']]
selected: /talks/roberto_d_angelo_francesca_fedeli_in_our_baby_s_illness_a_life_lesson
sleep 2 seconds to avoid blocking
------<1862>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RobertPalmer_PanamaPapers_2016V.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+whole+slew+and+deluge+of+stories+coming+out+from+the+leak+of+eleven+million+documents+from+a+panamanian+based+law+firm+called+mossack+fonseca
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+release+of+these+papers+from+panama+lifts+the+veil+on+a+tiny+piece+of+the+secretive+offshore+world+we+get+an+insight
found 1 videos: [['/talks/robert_palmer_the_panama_papers_exposed_a_huge_global_problem_what_s_next', '2016']]
selected: /talks/robert_palmer_the_panama_papers_exposed_a_huge_global_problem_what_s_next
sleep 5 seconds to avoid blocking
------<1863>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RobertSapolsky_2017.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=robert+spent+the+last+few+years+think+about+how+weird+human+behavior+is+and+how+inadequate+most+of+our+language+trying+to+explain+it+is+and+it+s
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=very+exciting+to+hear+him+explain+some+of+the+thinking+behind+it+in+public+for+the+first+time
error: request timeout
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fantasy+always+runs+something+like+this
found 6 videos: [['/talks/robert_sapolsky_the_biology_of_our_best_and_worst_selves', '2017'], ['/talks/martina_flor_the_secret_language_of_letter_design', '2017'], ['/talks/simone_bianco_and_tom_zimmerman_the_wonderful_world_of_life_in_a_drop_of_water', '2018'], ['/talks/anne_lamott_12_truths_i_learned_from_life_and_writing', '2017'], ['/talks/peter_beck_small_rockets_are_the_next_space_revolution', '2019'], ['/talks/dan_bricklin_meet_the_inventor_of_the_electronic_spreadsheet', '2017']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+overpowered+his+elite+guard++burst+into+his+secret+bunker+with+my+machine+gun+ready
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+lunges+for+his+luger+i+knock+it+out+of+his+hand+he+lunges+for+his+cyanide+pill+i+knock+that+out+of+his+hand++he+snarls
found 1 videos: [['/talks/robert_sapolsky_the_biology_of_our_best_and_worst_selves', '2017']]
selected: /talks/robert_sapolsky_the_biology_of_our_best_and_worst_selves
sleep 3 seconds to avoid blocking
------<1864>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RobertSwan_2014G.stm
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+of+you+are+actually+going+south++this+is+the+direction+of
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+if+you+go+eight+thousand+kilometers
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=out+of+the+back+of+this+room+you+will+come+to+as+far+south+as+you+can+go+anywhere+on+earth++the+pole+itself
error: request timeout
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=an+explorer+i+m+not+an+environmentalist+i+m+actually+just+a
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+these+photographs+that+i+m+showing+you+here
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+dangerous+they+are+the+ice+melt+of+the+south
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+north+poles++and+ladies+and+gentlemen+we+need+to+listen
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+what+these+places+are+telling+us
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+if+we+don+t++we+will+end+up+with+our+own+survival+situation+here+on+planet
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+places+and+to+walk+across+a+melting+ocean+of+ice+is+without+doubt+the+most+frightening+thing
found 1 videos: [['/talks/robert_swan_let_s_save_the_last_pristine_continent', '2015']]
selected: /talks/robert_swan_let_s_save_the_last_pristine_continent
sleep 1 seconds to avoid blocking
------<1865>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RobertThurman_2006S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+feel+like+this+whole+evening+has+been+very+amazing
found 10 videos: [['/talks/robert_thurman_we_can_be_buddhas', '2007'], ['/talks/thomas_barnett_let_s_rethink_america_s_military_strategy', '2007'], ['/talks/jane_goodall_how_humans_and_animals_can_live_together', '2008'], ['/talks/eve_ensler_happiness_in_body_and_soul', '2006'], ['/talks/tim_brown_tales_of_creativity_and_play', '2008'], ['/talks/david_macaulay_an_illustrated_journey_through_rome', '2008'], ['/talks/jane_goodall_what_separates_us_from_chimpanzees', '2007'], ['/talks/jehane_noujaim_my_wish_a_global_day_of_film', '2006'], ['/talks/chris_abani_telling_stories_from_africa', '2007'], ['/talks/david_rockwell_a_memorial_at_ground_zero', '2007']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+sort+of+like+the+vimalakirti+sutra+an+ancient+work+from+ancient+india
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+the+beginning+and+a+whole+bunch+of+people
found 7 videos: [['/talks/david_keith_a_critical_look_at_geoengineering_against_climate_change', '2007'], ['/talks/juan_enriquez_using_biology_to_rethink_the_energy_challenge', '2007'], ['/talks/robert_ballard_the_astonishing_hidden_world_of_the_deep_ocean', '2008'], ['/talks/george_smoot_the_design_of_the_universe', '2008'], ['/talks/tim_brown_tales_of_creativity_and_play', '2008'], ['/talks/jane_goodall_how_humans_and_animals_can_live_together', '2008'], ['/talks/frank_gehry_my_days_as_a_young_rebel', '2008']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=come+to+see+him+from+the+biggest+city+in+the+area+vaishali
found 1 videos: [['/talks/robert_thurman_we_can_be_buddhas', '2007']]
selected: /talks/robert_thurman_we_can_be_buddhas
sleep 5 seconds to avoid blocking
------<1866>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RobertThurman_2009P.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+open+by+quoting
found 2 videos: [['/talks/robert_thurman_expanding_your_circle_of_compassion', '2008'], ['/talks/doris_kearns_goodwin_lessons_from_past_presidents', '2008']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=einstein+s+wonderful+statement+just+so+people+will+feel+at+ease
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+the+great+scientist+of+the++20th+century+also+agrees+with+us++and+also+calls+us+to+this+action
found 2 videos: [['/talks/robert_thurman_expanding_your_circle_of_compassion', '2008'], ['/talks/bill_joy_what_i_m_worried_about_what_i_m_excited_about', '2008']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+said+a+human+being+is+a+part+of+the+whole+called+by+us
found 13 videos: [['/talks/denis_dutton_a_darwinian_theory_of_beauty', '2010'], ['/talks/wade_davis_the_worldwide_web_of_belief_and_ritual', '2008'], ['/talks/chris_abani_on_humanity', '2008'], ['/talks/brene_brown_the_power_of_vulnerability', '2010'], ['/talks/nic_marks_the_happy_planet_index', '2010'], ['/talks/eve_ensler_embrace_your_inner_girl', '2010'], ['/talks/louise_fresco_we_need_to_feed_the_whole_world', '2009'], ['/talks/elizabeth_gilbert_your_elusive_creative_genius', '2009'], ['/talks/pamela_meyer_how_to_spot_a_liar', '2011'], ['/talks/margaret_wertheim_the_beautiful_math_of_coral', '2009'], ['/talks/shashi_tharoor_why_nations_should_pursue_soft_power', '2009'], ['/talks/christopher_mcdougall_are_we_born_to_run', '2011'], ['/talks/laurie_santos_a_monkey_economy_as_irrational_as_ours', '2010']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+part+limited+in+time+and+space+he+experiences+himself+his+thoughts+and+feelings+as+something+separated+from+the+rest
found 1 videos: [['/talks/robert_thurman_expanding_your_circle_of_compassion', '2008']]
selected: /talks/robert_thurman_expanding_your_circle_of_compassion
sleep 3 seconds to avoid blocking
------<1867>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RobertWaldinger_2015X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+keeps+us+healthy+and+happy+as+we+go+through+life++if+you+were+going+to+invest+now
found 3 videos: [['/talks/robert_waldinger_what_makes_a_good_life_lessons_from_the_longest_study_on_happiness', '2015'], ['/talks/robert_muggah_the_biggest_risks_facing_cities_and_some_solutions', '2017'], ['/talks/bill_and_melinda_gates_why_giving_away_our_wealth_has_been_the_most_satisfying_thing_we_ve_done', '2014']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+your+future+best+self+where+would+you+put+your+time+and+your+energy++there+was+a+recent+survey+of+millennials+asking
found 1 videos: [['/talks/robert_waldinger_what_makes_a_good_life_lessons_from_the_longest_study_on_happiness', '2015']]
selected: /talks/robert_waldinger_what_makes_a_good_life_lessons_from_the_longest_study_on_happiness
sleep 5 seconds to avoid blocking
------<1868>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RobertWright_2006.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+got+apparently+eighteen+minutes
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+convince+you+that+history+has+a+direction+an+arrow+that+in+some+fundamental+sense+it+s+good+that+the+arrow+points+to+something+positive
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=before+the+avian+flu+had+reached+europe+it+was+before+hamas+had+won+the+palestinian+election+eliciting+various+counter+measures+by+israel
found 1 videos: [['/talks/robert_wright_progress_is_not_a_zero_sum_game', '2007']]
selected: /talks/robert_wright_progress_is_not_a_zero_sum_game
sleep 2 seconds to avoid blocking
------<1869>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RobertWright_2009P.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=compassion+and+the+golden+rule+from+a+secular+perspective+and+even+from
found 1 videos: [['/talks/robert_wright_the_evolution_of_compassion', '2008']]
selected: /talks/robert_wright_the_evolution_of_compassion
sleep 3 seconds to avoid blocking
------<1870>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RobForbes_2006.stm
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+the+online+biography+that+said+i+was+a+design+missionary+that+s+a+bit+lofty+i+m+really
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=more+of+something+like+a+street+walker++i+spend+a+lot+of+time+in+urban+areas+looking+for
found 3 videos: [['/talks/iqbal_quadir_how_mobile_phones_can_fight_poverty', '2006'], ['/talks/bill_joy_what_i_m_worried_about_what_i_m_excited_about', '2008'], ['/talks/liz_diller_the_blur_building_and_other_tech_empowered_architecture', '2008']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+studying+design+in+the+public+sector+i+take+about+five+thousand+photographs+a+year++and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+thought+that+i+would+edit+from+these+and+try+to+come+up+with+some
found 3 videos: [['/talks/tim_brown_tales_of_creativity_and_play', '2008'], ['/talks/maira_kalman_the_illustrated_woman', '2007'], ['/talks/isaac_mizrahi_fashion_and_creativity', '2008']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=images+that+might+be+appropriate+and+interesting+to+you+and+i+used
found 2 videos: [['/talks/david_macaulay_an_illustrated_journey_through_rome', '2008'], ['/talks/vs_ramachandran_3_clues_to_understanding_your_brain', '2007']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=three+criteria+the+first+was+i+thought+i+d+talk+about
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=real+design+within+reach+design+that+s+free+not+design+not+quite+within+reach+as+we+re+fondly+known+by+our+competition+and+competitors
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+stuff+that+you+can+find+on+the+streets+stuff+that+was+free
found 9 videos: [['/talks/brewster_kahle_a_free_digital_library', '2008'], ['/talks/carl_honore_in_praise_of_slowness', '2007'], ['/talks/jan_chipchase_the_anthropology_of_mobile_phones', '2007'], ['/talks/peter_hirshberg_the_web_is_more_than_better_tv', '2008'], ['/talks/bill_joy_what_i_m_worried_about_what_i_m_excited_about', '2008'], ['/talks/yves_behar_designing_objects_that_tell_stories', '2008'], ['/talks/ross_lovegrove_organic_design_inspired_by_nature', '2006'], ['/talks/dave_eggers_my_wish_once_upon_a_school', '2008'], ['/talks/frank_gehry_my_days_as_a_young_rebel', '2008']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=stuff+that+was+available+to+all+people+and+stuff+that+probably+contains+some+other+important+messages
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ll+use+these+sidewalks+in+rio+as+an+example+a+very+common+public+design+done+in+the++50s+it+s+got+a+nice+kind+of+flowing+organic+form
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=very+consistent+with+the+brazilian+culture+i+think+good+design+adds+to+to+culture
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=wholly+inconsistent+with+san+francisco+or+new+york++but+i+think+these+are+my+sort+of+information
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=highways+i+live+in+much+more+of+an+analog+world
found 1 videos: [['/talks/steven_levitt_surprising_stats_about_child_carseats', '2008']]
selected: /talks/steven_levitt_surprising_stats_about_child_carseats
sleep 2 seconds to avoid blocking
------<1871>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RobHarmon_2010X.stm
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+a+stream++this+is+a+river
found 15 videos: [['/talks/chris_bliss_comedy_is_translation', '2012'], ['/talks/frank_gehry_my_days_as_a_young_rebel', '2008'], ['/talks/eric_sanderson_new_york_before_the_city', '2009'], ['/talks/rob_harmon_how_to_keep_rivers_and_streams_flowing', '2011'], ['/talks/markham_nolan_how_to_separate_fact_and_fiction_online', '2012'], ['/talks/eben_bayer_are_mushrooms_the_new_plastic', '2010'], ['/talks/diana_nyad_extreme_swimming_with_the_world_s_most_dangerous_jellyfish', '2012'], ['/talks/wade_davis_the_worldwide_web_of_belief_and_ritual', '2008'], ['/talks/michael_pritchard_how_to_make_filthy_water_drinkable', '2009'], ['/talks/garth_lenz_the_true_cost_of_oil', '2012'], ['/talks/kirk_sorensen_thorium_an_alternative_nuclear_fuel', '2012'], ['/talks/al_gore_what_comes_after_an_inconvenient_truth', '2009'], ['/talks/charles_anderson_dragonflies_that_fly_across_oceans', '2009'], ['/talks/tim_brown_designers_think_big', '2009'], ['/talks/julie_burstein_4_lessons_in_creativity', '2012']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+happening+all+over+the+country++there+are+tens+of+thousands+of+miles+of+dewatered+streams+in+the+united+states
found 1 videos: [['/talks/rob_harmon_how_to_keep_rivers_and_streams_flowing', '2011']]
selected: /talks/rob_harmon_how_to_keep_rivers_and_streams_flowing
sleep 2 seconds to avoid blocking
------<1872>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RobHopkins_2009G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+a+culture+we+tell+ourselves+lots+of+stories+about+the+future+and+where+we+might+move+forward+from+this+point
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+of+those+stories+are+that+somebody+is+just+going+to+sort+everything+out+for+us+other+stories+are+that+everything+is+on+the+verge+of+unraveling
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+want+to+tell+you+a+different+story
found 6 videos: [['/talks/steven_johnson_where_good_ideas_come_from', '2010'], ['/talks/ngozi_okonjo_iweala_want_to_help_africa_do_business_here', '2007'], ['/talks/morgan_spurlock_the_greatest_ted_talk_ever_sold', '2011'], ['/talks/jonathan_drori_every_pollen_grain_has_a_story', '2010'], ['/talks/richard_seymour_how_beauty_feels', '2011'], ['/talks/ory_okolloh_how_i_became_an_activist', '2008']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+today+like+all+stories+it+has+a+beginning
found 6 videos: [['/talks/jonathan_harris_the_web_as_art', '2008'], ['/talks/john_hunter_teaching_with_the_world_peace_game', '2011'], ['/talks/jacqueline_novogratz_patient_capitalism', '2007'], ['/talks/elif_shafak_the_politics_of_fiction', '2010'], ['/talks/paul_maccready_nature_vs_humans', '2008'], ['/talks/feisal_abdul_rauf_lose_your_ego_find_your_compassion', '2008']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+work+for+a+long+time+has+been+involved+in+education+in+teaching+people+practical+skills+for+sustainability
found 1 videos: [['/talks/rob_hopkins_transition_to_a_world_without_oil', '2009']]
selected: /talks/rob_hopkins_transition_to_a_world_without_oil
sleep 2 seconds to avoid blocking
------<1873>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RobinChase_2007.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=m+going+to+talk+about+two+stories+today+one+is+is+how+we+need+to+use++market+based+pricing+to+affect
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=demand+and+use+wireless+technologies+to+dramatically
found 1 videos: [['/talks/robin_chase_the_idea_behind_zipcar_and_what_comes_next', '2008']]
selected: /talks/robin_chase_the_idea_behind_zipcar_and_what_comes_next
sleep 5 seconds to avoid blocking
------<1874>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RobinChase_2012G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=twelve+years+ago+i+founded+zipcar+zipcar+buys+cars
found 1 videos: [['/talks/robin_chase_excuse_me_may_i_rent_your_car', '2012']]
selected: /talks/robin_chase_excuse_me_may_i_rent_your_car
sleep 5 seconds to avoid blocking
------<1875>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RobinInce_2011G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+d+like+to+apologize+first+of+all+to+all+of+you+because+i+have+no+form+of+powerpoint+presentation
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+what+i+m+going+to+do+is+every+now+and+again+i+will+make+this+gesture++and+in+a+moment+of+powerpoint+democracy++you+can+imagine+what+you+d+like+to
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+do+a+radio+show+the+radio+show+is+called+the+infinite+monkey+cage+it+s+about+science+it+s+about+rationalism+so+therefore+we+get+a+lot+of+complaints+every+single+week
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=complaints+including+one+we+get+very+often++which+is+to+say+the+very+title+infinite+monkey+cage+celebrates+the+idea+of
found 1 videos: [['/talks/robin_ince_science_versus_wonder', '2011']]
selected: /talks/robin_ince_science_versus_wonder
sleep 3 seconds to avoid blocking
------<1876>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RobinMorgan_2015W.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+was+only+three+or+four++i+fell+in+love+with+poetry
found 11 videos: [['/talks/robin_morgan_4_powerful_poems_about_parkinson_s_and_growing_older', '2015'], ['/talks/andrew_solomon_love_no_matter_what', '2013'], ['/talks/shane_koyczan_to_this_day_for_the_bullied_and_beautiful', '2013'], ['/talks/dave_isay_everyone_around_you_has_a_story_the_world_needs_to_hear', '2015'], ['/talks/harry_baker_a_love_poem_for_lonely_prime_numbers', '2015'], ['/talks/emtithal_mahmoud_a_young_poet_tells_the_story_of_darfur', '2017'], ['/talks/cristina_domenech_poetry_that_frees_the_soul', '2015'], ['/talks/javed_akhtar_the_gift_of_words', '2017'], ['/talks/lidia_yuknavitch_the_beauty_of_being_a_misfit', '2016'], ['/talks/linda_liukas_a_delightful_way_to_teach_kids_about_computers', '2016'], ['/talks/amanda_bennett_we_need_a_heroic_narrative_for_death', '2013']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+the+rhythms+and+the+music+of+language+with+the+power+of+metaphor+and+of+imagery
found 1 videos: [['/talks/robin_morgan_4_powerful_poems_about_parkinson_s_and_growing_older', '2015']]
selected: /talks/robin_morgan_4_powerful_poems_about_parkinson_s_and_growing_older
sleep 4 seconds to avoid blocking
------<1877>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RobinMurphy_2015W.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=over+a+million+people+are+killed+each+year+in+disasters
found 7 videos: [['/talks/benjamin_grant_what_it_feels_like_to_see_earth_from_space', '2017'], ['/talks/robin_murphy_these_robots_come_to_the_rescue_after_a_disaster', '2015'], ['/talks/shigeru_ban_emergency_shelters_made_from_paper', '2013'], ['/talks/per_espen_stoknes_how_to_transform_apocalypse_fatigue_into_action_on_global_warming', '2017'], ['/talks/yuval_noah_harari_nationalism_vs_globalism_the_new_political_divide', '2017'], ['/talks/maryn_mckenna_what_do_we_do_when_antibiotics_don_t_work_any_more', '2015'], ['/talks/michael_archer_how_we_ll_resurrect_the_gastric_brooding_frog_the_tasmanian_tiger', '2013']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=two+and+a+half+million+people+will+be+permanently+disabled+or+displaced
found 1 videos: [['/talks/robin_murphy_these_robots_come_to_the_rescue_after_a_disaster', '2015']]
selected: /talks/robin_murphy_these_robots_come_to_the_rescue_after_a_disaster
sleep 1 seconds to avoid blocking
------<1878>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RobinNagle_2013Z.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+about+ten+years+old+on+a+camping+trip+with+my+dad+in+the+adirondack+mountains+a+wilderness+area+in+the+northern+part+of+new+york+state
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+a+beautiful+day+the+forest+was+sparkling
found 1 videos: [['/talks/robin_nagle_what_i_discovered_in_new_york_city_trash', '2013']]
selected: /talks/robin_nagle_what_i_discovered_in_new_york_city_trash
sleep 2 seconds to avoid blocking
------<1879>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RobKnight_2014.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+humans+have+always+been+very+concerned+about+the+health+of+our+bodies++but+we+haven+t+always+been+that+good+at+figuring+out+what+s+important
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=take+the+ancient+egyptians+for+example++very+concerned+about+the+body+parts+they+thought+they+d+need+in+the+afterlife
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+they+left+some+parts+out
error: request timeout
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=although+they+very+carefully+preserved+the+stomach+the+lungs+the+liver+and+so+forth++they+just+mushed+up+the+brain+drained+it+out+through+the+nose++and+threw+it+away
found 1 videos: [['/talks/rob_knight_how_our_microbes_make_us_who_we_are', '2015']]
selected: /talks/rob_knight_how_our_microbes_make_us_who_we_are
sleep 3 seconds to avoid blocking
------<1880>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RobLegato_2012G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+worked+on+a+film+called+apollo+thirteen+and+when+i+worked+on+this+film+i+discovered+something+about+how+our+brains+work+and+how+our+brains+work+is+that+when+we+re+sort+of+infused+with+either+enthusiasm+or+awe
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+fondness+or+whatever+it+changes+and+alters+our+perception+of+things+it+changes+what+we+see+it+changes+what+we+remember
found 1 videos: [['/talks/rob_legato_the_art_of_creating_awe', '2012']]
selected: /talks/rob_legato_the_art_of_creating_awe
sleep 4 seconds to avoid blocking
------<1881>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RobReid_2012.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+recent+debate+over+copyright+laws+like+sopa+in+the+united+states+and+the+acta+agreement+in+europe
found 1 videos: [['/talks/rob_reid_the_8_billion_ipod', '2012']]
selected: /talks/rob_reid_the_8_billion_ipod
sleep 5 seconds to avoid blocking
------<1882>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RobynSteinDeluca_2014X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+many+people+here+have+heard+of+pms
found 8 videos: [['/talks/robyn_stein_deluca_the_good_news_about_pms', '2015'], ['/talks/boyd_varty_what_i_learned_from_nelson_mandela', '2013'], ['/talks/billie_jean_king_this_tennis_icon_paved_the_way_for_women_in_sports', '2015'], ['/talks/gabby_giffords_and_mark_kelly_be_passionate_be_courageous_be_your_best', '2014'], ['/talks/jane_fonda_and_lily_tomlin_a_hilarious_celebration_of_lifelong_female_friendship', '2015'], ['/talks/sheryl_sandberg_so_we_leaned_in_now_what', '2014'], ['/talks/eduardo_paes_the_4_commandments_of_cities', '2012'], ['/talks/michael_anti_behind_the_great_firewall_of_china', '2012']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=everybody+right+everyone+knows+that+women+go+a+little+crazy+right+before+they+get+their+period
found 2 videos: [['/talks/robyn_stein_deluca_the_good_news_about_pms', '2015'], ['/talks/sebastian_junger_our_lonely_society_makes_it_hard_to_come_home_from_war', '2016']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+the+menstrual+cycle+throws+them+onto+an+inevitable+hormonal+roller+coaster+of+irrationality+and
found 1 videos: [['/talks/robyn_stein_deluca_the_good_news_about_pms', '2015']]
selected: /talks/robyn_stein_deluca_the_good_news_about_pms
sleep 1 seconds to avoid blocking
------<1883>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RodneyBrooks_2003.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+i+want+to+tell+you+about+today+is
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+i+see+robots+invading+our+lives+at+multiple+levels
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=over+multiple+timescales++and+when+i+look+out+in+the+future+i+can+t+imagine+a+world+five+hundred+years+from+now+where+we+don+t+have+robots+everywhere+assuming
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=despite+all+the+dire+predictions+from+many+people+about
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=our+future+assuming+we+re+still+around+i+can+t+imagine+the+world+not+being+populated+with+robots+and+then+the+question+is+well+if+they+re+going+to+be+here+in+five+hundred+years
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+they+going+to+be+everywhere+sooner+than+that+are+they+going+to+be+around+in+fifty+years+yeah+i+think+that+s+pretty+likely+there+s+going+to+be+lots+of+robots+everywhere+and+in+fact+i+think+that+s+going
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+be+a+lot+sooner+than+that+i+think+we+re+sort+of+on+the+cusp+of
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+personal+computer+years+where+the+first+few+robots+are+starting+to+appear++computers+sort+of+came+around
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=through+games+and+toys++and+you+know
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+first+computer+most+people+had+in+the+house+may+have+been+a+computer+to+play+pong+a+little+microprocessor+embedded+and+then
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=other+games+that+came+after+that+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+see+that+same+sort+of+thing+with+robots+lego+mindstorms+furbies
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+here+did+anyone+here+have+a+furby+yeah+there
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+are+pretty+common+and+they+re+a+little+tiny+robot+a+simple+robot+with+some+sensors+a+little+bit+of+processing+actuation+on+the+right+there+is+another+robot+doll+who+you+could+get+a+couple+of+years+ago
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=just+as+in+the+early+days+when+there+was+a+lot+of
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+the+left+there+is+a+platform+from+evolution+robotics+where+you+put+a+pc+on+and+you
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=program+this+thing+with+a+gui+to+wander+around+your+house+and+do+various+stuff
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+there+s+a+higher+price+point+sort+of+robot+toys+the+sony+aibo++and+on+the+right+there+is+one+that+the+nec+developed+the+papero
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+i+don+t+think+they+re+going+to+release++but
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=nevertheless+those+sorts+of+things+are+out+there++and+we+ve+seen+over+the+last+two
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+three+years+lawn+mowing+robots+husqvarna+on+the+bottom+friendly+robotics
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=an+israeli+company++and+then+in+the+last+twelve+months+or+so+we+ve+started+to+see+a+bunch+of
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=home+cleaning+robots+appear+the+top+left+one+is+a+very+nice+home+cleaning+robot+from+a+company+called+dyson++in+the+u+k+except+it+was+so
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=five+hundred+dollars+they+didn+t+release+it+but+at+the+bottom+left+you+see+electrolux+which+is+on+sale
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=another+one+from+karcher+at+the+bottom+right+is+one+that+i+built+in+my+lab+about+ten+years+ago+and+we+finally+turned+that+into
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+product+and+let+me+just+show+you+that+we+re+going+to+give+this+away+i+think+chris+said+after+the+talk+this+is+a
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=robot+that+you+can+go+out+and+buy+and+that+will+clean+up+your+floor
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=starts+off+sort+of+just+going+around+in+ever+increasing+circles
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+it+hits+something+you+people+see+that+now+it+s+doing+wall+following+it+s+following+around+my+feet+to
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+clean+up+around+me+let+s+see+let+s
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=oh++who+stole+my+rice+krispies+they+stole+my+rice+krispies
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+put+a+bunch+of+rice+krispies+there++i+put+some+pennies+let+s+just+shoot+it+at+that+see+if+it+cleans+up
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=building+a+better+cleaning+mechanism+actually+the+intelligence+on+board+was+fairly+simple
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+s+true+with+a+lot+of+robots+we+ve+all+i+think+become+sort+of+computational+chauvinists+and+think+that+computation+is+everything+but+the+mechanics+still+matter+here
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+packbot+that+we+ve+been+building+for+a+bunch+of+years+it+s+a+military+surveillance+robot+to+go+in+ahead+of
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+caves+for+instance++but+we+had+to+make+it+fairly+robust++much+more+robust+than+the+robots+we+build+in+our+labs
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+board+that+robot+is+a+pc+running+linux++it+can+withstand+a+400g+shock
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+robot+has+local+intelligence+it
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=flip+itself+over+can+get+itself+into+communication+range+can+go+upstairs+by+itself+et+cetera
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+doing+local+navigation+there+a+soldier+gives+it+a+command+to
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+was+not+a+controlled+descent
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+it+s+going+to+head+off
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+had+the+robots+down+at+the+world+trade+center+late+that+evening++couldn+t+do+a+lot+in+the+main+rubble+pile+things+were+just+too
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+was+nothing+left+to+do+but+we+did+go+into+all+the+surrounding+buildings+that+had+been+evacuated
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+searched+for+possible+survivors+in+the+buildings+that+were+too+dangerous+to+go+into
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=companions+are+helping+to+reduce+the+combat+risks++nick+robertson+has+that+story
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+afghanistan+every+day++and+that+s+one+of+the+reasons+they+say+a+robot+invasion+is+happening
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=where+technology+s+going+thanks+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=over+the+next+couple+of+months+we+re+going+to+be
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sending+robots+in+production+down+producing+oil+wells+to+get+that+last+few+years+of+oil+out+of+the+ground
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=very+hostile+environments+one+hundred+and+fifty+c+ten+thousand+psi
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=autonomous+robots+going+down+doing+this+sort+of+work+but+robots+like+this+they+re+a+little+hard+to+program
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+in+the+future+are+we+going+to+program+our+robots+and+make+them+easier+to+use++and+i+want+to+actually+use+a+robot+here+a+robot+named+chris
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=stand+up++yeah++okay++come+over+here++now+notice+he
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thinks+robots+have+to+be+a+bit
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+show+this+robot+a+task+it+s+a+very+complex+task
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+notice+he+nodded+there+he+was+giving+me+some+indication+he+was+understanding+the+flow+of+communication++and+if+i+d+said+something+completely+bizarre+he+would+have+looked+askance+at+me+and+regulated+the+conversation
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+now+i+brought+this+up
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=looked+at+his+eyes++and+i+saw+his+eyes+looked+at+this+bottle+top
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+m+doing+this+task+here+and+he+s+checking+up+his+eyes+are+going+back+and+forth+up+to+me+to+see+what+i+m+looking+at+so+we+ve+got+shared+attention
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+i+do+this+task++and+he+looks+and+he+looks+to+me+to+see+what+s+happening+next+and+now+i+ll+give+him
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+bottle+and+we+ll+see+if+he+can+do+the+task+can+you+do+that+okay+he
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+didn+t+show+you+how+to+do+that+now+see+if+you+can+put+it+back+together
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=laughter+and+he+thinks+a+robot+has+to+be+really+slow++good+robot+that+s+good+so+we+saw+a+bunch+of+things+there++we+saw
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+we+re+interacting+we+re+trying+to+show+someone+how+to+do+something+we+direct+their+visual+attention+the+other+thing+communicates
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=their+internal+state+to+us+whether+he+s+understanding+or+not+regulates+a+social+interaction+there+was+shared+attention
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=looking+at+the+same+sort+of+thing+and+recognizing+socially
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=communicated+reinforcement+at+the+end++and+we+ve+been+trying+to+put+that+into+our+lab+robots+because+we+think+this+is+how+you+re+going+to+want+to+interact+with+robots+in+the+future
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+just+want+to+show+you+one+technical+diagram+here+the+most+important+thing
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+building+a+robot+that+you+can+interact+with+socially+is+its+visual+attention+system+because+what+it+pays+attention+to+is+what+it+s+seeing+and+interacting+with+and+what
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=re+understanding+what+it+s+doing+so+in+the+videos+i+m+about+to+show+you+you+re+going+to+see+a+visual+attention+system+on+a+robot+which+has
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+looks+for+skin+tone+in+hsv+space+so+it+works+across+all+human
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=colorings+it+looks+for+highly+saturated+colors+from+toys+and+it+looks+for+things+that+move+around+and+it+weights+those+together+into+an+attention+window+and+it+looks+for+the
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=place+the+stuff+where+the+most+interesting+stuff+is+happening+and+that+is+what+its+eyes+then+segue
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+looks+right+at+that+at+the+same+time+some+top+down+sort+of+stuff+might+decide+that+it+s+lonely+and+look+for+skin+tone+or+might+decide+that+it+s+bored+and+look+for+a+toy+to+play+with+and+so+these+weights+change+and+over+here
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+the+right+this+is+what+we+call+the+steven+spielberg+memorial+module++did+people+see+the+movie+ai+rb+yeah+it+was+really+bad+but
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=remember+especially+when+haley+joel+osment+the+little+robot++looked+at+the+blue+fairy+for+two+thousand+years+without+taking
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=his+eyes+off+it+well+this+gets+rid+of+that+because
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+a+habituation+gaussian+that+gets+negative+and+more+and+more+intense+as+it+looks+at+one+thing+and+it+gets
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+it+will+then+look+away+at+something+else+so++once+you+ve+got+that+and+here+s+a+robot+here
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+kismet+looking+around+for+a+toy
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+tell+what+it+s+looking+at+you+can+estimate+its+gaze+direction+from+those+eyeballs+covering+its+camera
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+can+tell+when+it+s+actually+seeing+the+toy+and+it+s+got+a+little+bit+of+an+emotional+response+here
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=laughter+but+it+s+still+going+to+pay+attention+if+something+more+significant+comes+into+its+field+of+view+such+as+cynthia+breazeal
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+builder+of+this+robot+from+the+right+it+sees+her+pays+attention+to+her
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=kismet+has+an+underlying+three+dimensional+emotional+space+a+vector+space+of+where+it+is
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=emotionally+and+at+different+places+in+that+space++it+expresses
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+it+s+expressing+its+emotion+through+its+face+and+the+prosody+in+its+voice
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+when+i+was+dealing+with+my+robot+over+here
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=chris+the+robot+was+measuring+the+prosody+in+my+voice++and+so+we+have+the+robot+measure+prosody+for+four
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=basic+messages+that+mothers+give+their+children
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+we+ve+got+naive+subjects+praising+the+robot
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+smiles+she+imitates+the+smile+this+happens+a+lot+these+are+naive+subjects+here+we+asked+them+to+get+the+robot+s+attention
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+indicate+when+they+have+the+robot+s+attention
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+they+re+asked+to+prohibit+the+robot+and+this+first+woman+really+pushes+the+robot+into+an+emotional+corner
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+put+that+together+then+we+put+in+turn+taking+when+we+talk+to+someone+we+talk+then+we+sort+of+raise+our+eyebrows
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=move+our+eyes+give+the+other+person+the+idea+it+s+their+turn+to+talk++and+then+they+talk+and+then+we+pass+the+baton+back+and+forth
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=between+each+between+each+other+so+we+put+this
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+robot+we+got+a+bunch+of+naive+subjects+in+we+didn+t+tell+them+anything+about+the+robot++sat+them+down+in+front+of+the+robot+and+said+talk+to+the+robot++now+what+they+didn+t+know+was+the+robot+wasn+t+understanding+a+word+they+said
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+the+robot+wasn+t+speaking+english+it+was+just+saying+random+english+phonemes+and+i+want+you+to+watch+carefully+at+the+beginning+of+this+where+this+person+ritchie+who+happened+to+talk+to+the+robot
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+show+you+my+watch+and+he+brings
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+watch+center+into+the+robot+s+field+of+vision+points+to+it+gives+it+a+motion+cue+and+the+robot+looks+at+the+watch+quite+successfully+we+don+t+know+whether+he+understood+or+not+that+the+robot
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+successfully+have+that+sort+of+communication++and+here+s+another+aspect+of+the+sorts+of+things+that+chris+and+i+were+doing
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=christie+looks+over+at+this+toy++the+robot+estimates+her+gaze+direction+and+looks+at+the+same+thing+that+she+s+looking+at
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+we+re+going+to+see+more+and+more+of+this+sort+of+robot
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=over+the+next+few+years+in+in+labs++but+then+the+big+questions+two+big+questions+that+people+ask+me+are
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+we+make+these+robots+more+and+more+human+like+will+we+accept+them+will+we+will+they+need+rights
error: request timeout
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+other+question+people+ask+me+is+will+they+want+to+take+over
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+on+the+first+you+know+this+has+been+a+very+hollywood+theme+with+lots+of+movies+you+probably+recognize+these+characters+here
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=where+in+each+of+these+cases+the+robots+want+more+respect++well+do+you+ever+need+to+give+robots+respect+they
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=re+just+machines+after+all++but+i+think+you+know+we+have+to+accept+that+we+are+just+machines+after+all
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+certainly+what+modern+molecular+biology+says+about+us+you+don+t+see+a+description+of
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+you+know++molecule+a+you+know+comes+up+and+docks+with+this+other+molecule++and+it+s+moving+forward+you
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=know+propelled+by+various+charges++and+then+the+soul+steps+in+and+tweaks+those+molecules+so+that+they+connect+it+s+all+mechanistic+we+are
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+we+are+machines+then+in+principle+at+least++we+should+be+able+to+build+machines+out+of+other+stuff++which+are+just+as+as
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=alive+as+we+are++but+i+think+for+us+to+admit+that+we+have+to+give+up+on+our+special+ness+in+a+certain+way+and+we+ve+had+the
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=retreat+from+special+ness+under+the+barrage+of+science+and+technology+many+times+over+the+last+few+hundred+years+at+least++five+hundred+years+ago+we+had+to+give+up+the+idea+that+we+are+the+center+of+the+universe
error: request timeout
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=started+to+go+around+the+sun+one
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hundred+and+fifty+years+ago+with+darwin+we+had+to+give+up+the+idea+we+were+different+from+animals++and+to+imagine+you+know+it+s+always+hard+for+us++recently+we+ve+been+battered+with+the+idea
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+maybe+we+didn+t+even+have+our+own+creation+event+here+on+earth+which+people+didn+t+like+much+and+then+the+human+genome+said+maybe+we+only+have+thirty+five+thousand+genes+and+that+was+really
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+you+know+having+the+idea+that+robots+could+really+have+emotions+or+that+robots+could+be+living+creatures+i+think+is+going+to+be+hard+for+us+to+accept++but+we+re+going+to+come+to+accept+it+over+the+next
found 0 videos: []
sleep 1 seconds to avoid blocking
error: no video is found.
sleep 3 seconds to avoid blocking
------<1884>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RodneyBrooks_2013.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fifty+s+said+that+we+overestimate+technology+in+the+short+term+and+we+underestimate+it+in+the+long+term+and+i
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+that+s+some+of+the+fear+that+we+see+about+jobs+disappearing+from+artificial+intelligence+and
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=robots+that+we+re+overestimating+the+technology+in+the+short+term+but+i+am+worried
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=whether+we+re+going+to+get+the+technology+we+need+in+the+long+term+because+the+demographics+are+really+going+to+leave+us+with+lots+of+jobs+that+need+doing+and+that+we
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=our+society+is+going+to+have+to+be+built+on+the+shoulders+of+steel+of+robots+in+the+future+so+i+m+scared+we+won+t+have+enough+robots
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=losing+jobs+to+technology+has+been+around+for+a+long+time
found 3 videos: [['/talks/rodney_brooks_why_we_will_rely_on_robots', '2013'], ['/talks/greg_asner_ecology_from_the_air', '2013'], ['/talks/richard_ledgett_the_nsa_responds_to_edward_snowden_s_ted_talk', '2014']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=back+in+one+thousand+nine+hundred+and+fifty+seven+there+was+a+spencer+tracy+katharine+hepburn+movie+so+you+know+how+it+ended+up+spencer+tracy+brought+a+computer+a+mainframe+computer+of+one+thousand+nine+hundred+and+fifty+seven+in+to+help+the+librarians
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+librarians+in+the+company+would+do+things+like+answer+for+the+executives+what+are+the+names+of+santa+s+reindeer+and+they+would+look+that+up+and+this+mainframe+computer+was+going+to+help+them+with+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=job+well+of+course+a+mainframe+computer+in+one+thousand+nine+hundred+and+fifty+seven+wasn+t+much+use+for+that+job+the+librarians+were+afraid+their+jobs+were+going+to+disappear+but+that+s+not+what+happened+in+fact+the+number+of+jobs
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+librarians+increased+for+a+long+time+after+one+thousand+nine+hundred+and+fifty+seven+it+wasn+t+until+the+internet+came+into+play+the+web+came+into+play+and+search+engines+came+into+play+that+the+need+for+librarians+went+down+and+i+think+everyone+from
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=totally+underestimated+the+level+of+technology+we+would+all+carry+around+in+our+hands+and+in+our+pockets+today+and
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+can+just+ask+what+are+the+names+of+santa+s+reindeer+and+be+told+instantly+or+anything+else+we+want+to+ask
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+the+way+the+wages+for+librarians+went+up+faster+than
found 1 videos: [['/talks/rodney_brooks_why_we_will_rely_on_robots', '2013']]
selected: /talks/rodney_brooks_why_we_will_rely_on_robots
sleep 5 seconds to avoid blocking
------<1885>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RodneyMullen_2012X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+did+what+most+little+kids+do+i+played+a+little+baseball+did+a+few+other+things+like+that
found 3 videos: [['/talks/rodney_mullen_pop_an_ollie_and_innovate', '2012'], ['/talks/brian_goldman_doctors_make_mistakes_can_we_talk_about_that', '2012'], ['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+always+had+the+sense+of+being+an+outsider+and+it+wasn+t+until+i+saw+pictures+in+the+magazines+that+a+couple+other+guys+skate
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+thought+wow+that+s+for+me+you+know+because+there+was+no+coach+standing+directly+over+you+and+these+guys+they+were+just+being+themselves+there+was+no+opponent+directly+across+from+you
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+loved+that+sense+so
found 12 videos: [['/talks/dan_ariely_what_makes_us_feel_good_about_our_work', '2013'], ['/talks/ruby_wax_what_s_so_funny_about_mental_illness', '2012'], ['/talks/ed_yong_zombie_roaches_and_other_parasite_tales', '2014'], ['/talks/carl_safina_the_oil_spill_s_unseen_villains_and_victims', '2010'], ['/talks/colin_powell_kids_need_structure', '2013'], ['/talks/margaret_gould_stewart_how_giant_websites_design_for_you_and_a_billion_others_too', '2014'], ['/talks/zak_ebrahim_i_am_the_son_of_a_terrorist_here_s_how_i_chose_peace', '2014'], ['/talks/stewart_brand_the_dawn_of_de_extinction_are_you_ready', '2013'], ['/talks/shea_hembrey_how_i_became_100_artists', '2011'], ['/talks/stacey_kramer_the_best_gift_i_ever_survived', '2010'], ['/talks/luke_syson_how_i_learned_to_stop_worrying_and_love_useless_art', '2014'], ['/talks/bill_ford_a_future_beyond_traffic_gridlock', '2011']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+started+skating+when+i+was+about+ten+years+old
found 1 videos: [['/talks/rodney_mullen_pop_an_ollie_and_innovate', '2012']]
selected: /talks/rodney_mullen_pop_an_ollie_and_innovate
sleep 2 seconds to avoid blocking
------<1886>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RodrigoBijou_2015G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+two+thousand+and+eight+burhan+hassan+age+seventeen++boarded+a+flight+from+minneapolis+to+the+horn+of+africa
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+while+burhan+was+the+youngest+recruit+he+was+not+alone
found 1 videos: [['/talks/rodrigo_bijou_governments_don_t_understand_cyber_warfare_we_need_hackers', '2015']]
selected: /talks/rodrigo_bijou_governments_don_t_understand_cyber_warfare_we_need_hackers
sleep 2 seconds to avoid blocking
------<1887>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RodrigoCanales_2013S.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+december+of+two+thousand+and+ten
found 8 videos: [['/talks/rives_the_museum_of_four_in_the_morning', '2014'], ['/talks/adam_spencer_why_i_fell_in_love_with_monster_prime_numbers', '2013'], ['/talks/paul_romer_the_world_s_first_charter_city', '2011'], ['/talks/jon_ronson_when_online_shaming_goes_too_far', '2015'], ['/talks/karen_tse_how_to_stop_torture', '2011'], ['/talks/courtney_e_martin_this_isn_t_her_mother_s_feminism', '2011'], ['/talks/naomi_oreskes_why_we_should_trust_scientists', '2014'], ['/talks/regina_dugan_from_mach_20_glider_to_hummingbird_drone', '2012']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+city+of+apatzingn+in+the+coastal+state+of+michoacn+in+mexico++awoke+to+gunfire
found 1 videos: [['/talks/rodrigo_canales_the_deadly_genius_of_drug_cartels', '2013']]
selected: /talks/rodrigo_canales_the_deadly_genius_of_drug_cartels
sleep 4 seconds to avoid blocking
------<1888>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RogerAntonsen_2015X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+talk+about+understanding+and+the+nature+of+understanding+and+what
found 11 videos: [['/talks/roger_antonsen_math_is_the_hidden_secret_to_understanding_the_world', '2016'], ['/talks/michele_l_sullivan_asking_for_help_is_a_strength_not_a_weakness', '2017'], ['/talks/christopher_ryan_are_we_designed_to_be_sexual_omnivores', '2014'], ['/talks/afra_raymond_three_myths_about_corruption', '2013'], ['/talks/david_camarillo_why_helmets_don_t_prevent_concussions_and_what_might', '2016'], ['/talks/allan_savory_how_to_fight_desertification_and_reverse_climate_change', '2013'], ['/talks/barry_schwartz_the_way_we_think_about_work_is_broken', '2015'], ['/talks/gian_giudice_why_our_universe_might_exist_on_a_knife_edge', '2013'], ['/talks/amit_sood_every_piece_of_art_you_ve_ever_wanted_to_see_up_close_and_searchable', '2016'], ['/talks/theo_e_j_wilson_a_black_man_goes_undercover_in_the_alt_right', '2017'], ['/talks/helen_fisher_technology_hasn_t_changed_love_here_s_why', '2016']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+essence+of+understanding+is+because+understanding+is+something+we+aim+for+everyone
found 3 videos: [['/talks/roger_antonsen_math_is_the_hidden_secret_to_understanding_the_world', '2016'], ['/talks/tomas_saraceno_would_you_live_in_a_floating_city_in_the_sky', '2017'], ['/talks/yuval_noah_harari_nationalism_vs_globalism_the_new_political_divide', '2017']]
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+claim+is+that+understanding+has+to+do+with+the+ability+to+change+your+perspective++if+you+don+t+have+that+you+don+t+have+understanding
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+that+is+my+claim++and+i+want+to+focus+on+mathematics
found 2 videos: [['/talks/roger_antonsen_math_is_the_hidden_secret_to_understanding_the_world', '2016'], ['/talks/naomi_oreskes_why_we_should_trust_scientists', '2014']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=many+of+us+think+of+mathematics+as+addition+subtraction+multiplication++division+fractions+percent++geometry+algebra+all+that+stuff
found 1 videos: [['/talks/roger_antonsen_math_is_the_hidden_secret_to_understanding_the_world', '2016']]
selected: /talks/roger_antonsen_math_is_the_hidden_secret_to_understanding_the_world
sleep 3 seconds to avoid blocking
------<1889>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RogerEbert_2011.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+are+my+words+but+this+is+not+my+voice++this+is+alex+the+best+computer+voice+i+ve+been+able+to+find+which+comes+as+standard+equipment+on+every+macintosh
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+most+of+my+life+i+never+gave+a+second+thought+to+my+ability+to+speak++it+was+like+breathing+in+those+days
found 1 videos: [['/talks/roger_ebert_remaking_my_voice', '2011']]
selected: /talks/roger_ebert_remaking_my_voice
sleep 2 seconds to avoid blocking
------<1890>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RogerStein_2013S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+this+is+a+picture+of
found 21 videos: [['/talks/don_levy_a_cinematic_journey_through_visual_effects', '2013'], ['/talks/dan_berkenstock_the_world_is_one_big_dataset_now_how_to_photograph_it', '2014'], ['/talks/steven_addis_a_father_daughter_bond_one_photo_at_a_time', '2012'], ['/talks/charmian_gooch_meet_global_corruption_s_hidden_players', '2013'], ['/talks/ramesh_raskar_imaging_at_a_trillion_frames_per_second', '2012'], ['/talks/rajesh_rao_a_rosetta_stone_for_a_lost_language', '2011'], ['/talks/brenda_romero_gaming_for_understanding', '2012'], ['/talks/jason_mccue_terrorism_is_a_failed_brand', '2012'], ['/talks/janette_sadik_khan_new_york_s_streets_not_so_mean_any_more', '2013'], ['/talks/arianna_huffington_how_to_succeed_get_more_sleep', '2011'], ['/talks/chip_kidd_designing_books_is_no_laughing_matter_ok_it_is', '2012'], ['/talks/colm_kelleher_is_light_a_particle_or_a_wave', '2013'], ['/talks/donald_hoffman_do_we_see_reality_as_it_is', '2015'], ['/talks/richard_seymour_how_beauty_feels', '2011'], ['/talks/alec_soth_and_stacey_baker_this_is_what_enduring_love_looks_like', '2015'], ['/talks/chris_domas_the_1s_and_0s_behind_cyber_warfare', '2014'], ['/talks/andreas_ekstrom_the_moral_bias_behind_your_search_results', '2015'], ['/talks/fei_fei_li_how_we_re_teaching_computers_to_understand_pictures', '2015'], ['/talks/neil_macgregor_2600_years_of_history_in_one_object', '2012'], ['/talks/gavin_schmidt_the_emergent_patterns_of_climate_change', '2014'], ['/talks/mohamed_hijri_a_simple_solution_to_the_coming_phosphorus_crisis', '2013']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+dad+and+me+at+the+beach
found 13 videos: [['/talks/bill_and_melinda_gates_why_giving_away_our_wealth_has_been_the_most_satisfying_thing_we_ve_done', '2014'], ['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013'], ['/talks/roger_stein_a_bold_new_way_to_fund_drug_research', '2014'], ['/talks/mick_ebeling_the_invention_that_unlocked_a_locked_in_artist', '2011'], ['/talks/melissa_fleming_a_boat_carrying_500_refugees_sunk_at_sea_the_story_of_two_survivors', '2015'], ['/talks/young_ha_kim_be_an_artist_right_now', '2013'], ['/talks/ricardo_semler_how_to_run_a_company_with_almost_no_rules', '2015'], ['/talks/diana_nyad_never_ever_give_up', '2013'], ['/talks/gian_giudice_why_our_universe_might_exist_on_a_knife_edge', '2013'], ['/talks/chris_burkard_the_joy_of_surfing_in_ice_cold_water', '2015'], ['/talks/chris_anderson_ted_questions_no_one_knows_the_answers_to', '2012'], ['/talks/eric_whitacre_virtual_choir_live', '2013'], ['/talks/chris_anderson_how_many_universes_are_there', '2012']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+far+rockaway+or+actually+rockaway+park+i+m+the+one+with+the+blond+hair
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+dad+s+the+guy+with+the+cigarette+it+was+the+sixty+s+a+lot+of+people+smoked+back+then+in+the+summer+of+two+thousand+and+nine
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=dad+was+diagnosed+with+lung+cancer
found 7 videos: [['/talks/jack_andraka_a_promising_test_for_pancreatic_cancer_from_a_teenager', '2013'], ['/talks/roger_stein_a_bold_new_way_to_fund_drug_research', '2014'], ['/talks/lauren_hodge_shree_bose_naomi_shah_award_winning_teenage_science_in_action', '2012'], ['/talks/jorge_soto_the_future_of_early_cancer_detection', '2014'], ['/talks/abraham_verghese_a_doctor_s_touch', '2011'], ['/talks/danny_hillis_understanding_cancer_through_proteomics', '2011'], ['/talks/jane_mcgonigal_the_game_that_can_give_you_10_extra_years_of_life', '2012']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=cancer+is+one+of+those+things+that+actually+touches+everybody
found 3 videos: [['/talks/nadine_burke_harris_how_childhood_trauma_affects_health_across_a_lifetime', '2015'], ['/talks/roger_stein_a_bold_new_way_to_fund_drug_research', '2014'], ['/talks/david_kelley_how_to_build_your_creative_confidence', '2012']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+re+a+man+in+the+us+you+ve+got+about+a+one+in+two+chance
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+being+diagnosed+with+cancer+during+your+lifetime+if+you+re+a+woman+you+ve+got+about+a+one+in+three+chance+of+being+diagnosed+with+cancer
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=everybody+knows+somebody+who+s+been+diagnosed+with+cancer
found 1 videos: [['/talks/roger_stein_a_bold_new_way_to_fund_drug_research', '2014']]
selected: /talks/roger_stein_a_bold_new_way_to_fund_drug_research
sleep 1 seconds to avoid blocking
------<1891>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RogierVanDerHeide_2010X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=statement+on+the+screen+that+says+light+creates+ambiance+light+makes
found 1 videos: [['/talks/rogier_van_der_heide_why_light_needs_darkness', '2011']]
selected: /talks/rogier_van_der_heide_why_light_needs_darkness
sleep 4 seconds to avoid blocking
------<1892>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RomanMars_2015.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+guy+get+to+sit+down+that+s+because+this+is+radio
found 3 videos: [['/talks/roman_mars_why_city_flags_may_be_the_worst_designed_thing_you_ve_never_noticed', '2015'], ['/talks/dustin_yellin_a_journey_through_the_mind_of_an_artist', '2015'], ['/talks/elon_musk_the_mind_behind_tesla_spacex_solarcity', '2013']]
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+report+on+all+kinds+of+stories+buildings+and+toothbrushes++mascots+and+wayfinding+and+fonts
found 1 videos: [['/talks/roman_mars_why_city_flags_may_be_the_worst_designed_thing_you_ve_never_noticed', '2015']]
selected: /talks/roman_mars_why_city_flags_may_be_the_worst_designed_thing_you_ve_never_noticed
sleep 1 seconds to avoid blocking
------<1893>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RomulusWhitaker_2009I.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+to+put+off+your+preconceptions+your+preconceived+fears+and+thoughts+about+reptiles+because
found 1 videos: [['/talks/romulus_whitaker_the_real_danger_lurking_in_the_water', '2010']]
selected: /talks/romulus_whitaker_the_real_danger_lurking_in_the_water
sleep 3 seconds to avoid blocking
------<1894>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RonEglash_2007G.stm
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+cantor+decided+he+was+going+to+take+a+line+and+erase+the+middle+third+of+the+line
found 1 videos: [['/talks/ron_eglash_the_fractals_at_the_heart_of_african_designs', '2007']]
selected: /talks/ron_eglash_the_fractals_at_the_heart_of_african_designs
sleep 3 seconds to avoid blocking
------<1895>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RonEglash_2007G2.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=start+my+story+in+germany+in+eighteen+seventy+seven+with+a+mathematician+named+georg+cantor
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+cantor+decided+he+was+going+to+take+a+line+and+erase+the+middle+third+of+the+line+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=take+those+two+resulting+lines+and+bring+them+back+into+the+same+process+a+recursive+process+so+he+starts+out+with+one+line+and+then+two+and+then+four+and+then+sixteen+and+so+on
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+if+he+does+this+an+infinite+number+of+times+which+you+can+do+in+mathematics+he+ends+up+with+an+infinite+number+of+lines+each+of+which+has+an+infinite+number+of+points+in+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+he+realized+he+had+a+set+whose+number+of+elements
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+larger+than+infinity+and+this+blew+his+mind+literally+he+checked+into+a+sanitarium
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+when+he+came+out+of+the+sanitarium
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+he+was+convinced+that+he+had+been+put+on+earth+to+found+transfinite+set+theory+because+the+largest+set+of+infinity+would+be+god+himself+he+was+a+very+religious+man+he
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+a+mathematician+on+a+mission
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+other+mathematicians+did+the+same+sort+of+thing+a+swedish+mathematician+von+koch+decided+that+instead+of+subtracting+lines+he+would+add+them
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+he+came+up+with+this+beautiful+curve+and+there+s+no+particular+reason
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=why+we+have+to+start+with+this+seed+shape+we+can+use+any+any+seed+shape+we+like
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+ll+rearrange+this+and+stick+this+somewhere+down+there+ok
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+now+upon+iteration+that+seed+shape+sort+of+unfolds+into+a+very+different+looking+structure+so+these+all+have+the+property+of+self+similarity+the+part+looks+like+the
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+same+pattern+at+many+different+scales
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+mathematicians+thought+this+was+very+strange+because+as+you+shrink+a+ruler+down+you+measure+a+longer+and+longer+length+and+since+they+went+through+the+iterations+an+infinite+number+of+times
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+the+ruler+shrinks+down+to+infinity+the+length+goes+to+infinity
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+made+no+sense+at+all+so+they+consigned+these+curves+to+the+back+of+the+math+books+they+said+these+are+pathological+curves+and+we+don+t+have+to+discuss+them
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+worked+for+a+hundred+years
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+in+one+thousand+nine+hundred+and+seventy+seven
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=realized+that+if+you+do+computer+graphics+and+used+these+shapes+he+called+fractals+you+get+the+shapes+of+nature
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+get+the+human+lungs+you+get+acacia+trees+you+get+ferns+you+get+these+beautiful+natural+forms+if+you
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=take+your+thumb+and+your+index+finger+and+look+right+where+they+meet+go+ahead+and+do+that+now+and
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=relax+your+your+hand+you+ll+see+a+crinkle
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+a+wrinkle+within+the+crinkle+and+a+crinkle+within+the+wrinkle+right+your+body+is+covered+with+fractals+the+mathematicians+who+were+saying+these+were+pathologically+useless+shapes+they+were+breathing+those+words+with+fractal+lungs+it+s+very+ironic+and+i
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ll+show+you+a+little+natural+recursion+here
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=again+we+just+take+these+lines+and+recursively+replace+them+with+the+whole+shape
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+so+here+s+the+second+iteration+and+the+third+fourth+and
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+on+so+nature+has+this+self+similar+structure+nature+uses+self+organizing+systems
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+in+the+nineteen++eightys+i+happened+to+notice+that+if+you+look+at+an+aerial+photograph+of+an+african+village+you+see+fractals
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+thought+this+is+fabulous+i+wonder+why+and+of+course+i+had+to+go+to+africa+and+ask+folks+why+so+i+got+a
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=just+travel+around+africa+for+a+year+asking+people+why+they+were+building+fractals+which+is+a+great+job+if+you+can+get+it
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+i+finally+got+to+this+city
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+d+done+a+little+fractal+model+for+the+city+just+to+see+how+it+would+sort+of+unfold+but+when+i+got+there
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+got+to+the+palace+of+the+chief
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+my+french+is+not+very+good+i+said+something+like+i+am+a+mathematician+and+i+would+like+to+stand+on+your+roof+but+he+was+really+cool+about+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+took+me+up+there+and+we+talked+about+fractals+and+he+said+oh
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=yeah+yeah+we+knew+about+a+rectangle+within+a+rectangle+we+know+all+about+that+and+it+turns+out+the+royal+insignia+has+a+rectangle+within+a+rectangle+within+a+rectangle+and+the+path+through+that+palace
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+actually+this+this+spiral+here+and+as+you+go+through+the+path+you+have+to+get+more+and+more+polite+so+they+re+mapping+the+social+scaling+onto+the+geometric+scaling+it+s+a+conscious
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+a+village+in+southern+zambia+the+ba+ila+built+this+village+about+four+hundred+meters+in+diameter
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+have+a+huge+ring+the+rings+that
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=represent+the+family+enclosures+get+larger+and+larger+as+you+go+towards+the+back+and+then+you+have+the+chief+s+ring+here
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+that+ring+so+here+s+a+little+fractal+model+for+it+here+s+one+house+with+the+sacred+altar+here+s+the+house+of+houses+the+family+enclosure
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+the+humans+here+where+the+sacred+altar+would+be+and+then+here+s+the+village+as+a+whole+a+ring+of+ring+of+rings
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+the+chief+s+extended+family+here+the+chief+s+immediate+family+here+and+here+there+s+a+tiny+village+only+this+big
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+you+might+wonder+how+can+people+fit+in+a+tiny+village+only+this+big+that+s+because+they+re+spirit+people
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+the+ancestors+and+of+course+the+spirit+people
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+a+little+miniature+village+in+their+village+right+so+it+s+just+like+georg+cantor+said+the+recursion+continues+forever+this+is+in+the+mandara+mountains+near+the+nigerian+border+in+cameroon+mokoulek+i+saw+this+diagram+drawn+by+a+french
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=architect+and+i+thought+wow+what+a+beautiful+fractal+so+i+tried+to+come+up+with+a+seed+shape+which+upon+iteration+would+unfold+into+this+thing+i+came+up
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+this+structure+here+let+s+see+first+iteration+second+third+fourth+now+after+i+did+the+simulation+i+realized+the+whole+village+kind+of+spirals+around
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=just+like+this+and+here+s+that+replicating+line+a+self+replicating+line+that+that+unfolds+into+the+fractal
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=square+building+i+think+something+s+going+on+there
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+said+well+we+can+take+you+there+but+you+can+t+go+inside+because+that+s+the+sacred+altar+where+we+do+sacrifices+every+year+to+keep+up+those+annual+cycles+of+fertility+for+the+fields+and+i+started+to
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=realize+that+the+cycles+of+fertility+were+just+like+the+recursive+cycles+in+the+geometric+algorithm
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=very+tiny+scales+so+here+s+a+nankani+village+in+mali+and+you+can+see+you+go+inside+the+family+enclosure+you+go+inside+and+here+s+pots+in+the+fireplace+stacked+recursively+here+s+calabashes+that+that
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=issa+was+just+showing+us+and+they+re+stacked+recursively+now+the+tiniest+calabash+in+here+keeps+the+woman+s+soul+and+when+she+dies+they+have+a+ceremony+where+they+break+this+stack+called+the+zalanga+and+her+soul+goes+off+to+to+eternity
error: request timeout
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+you+might+ask+yourself+three+questions+at+this+point
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=aren+t+these+scaling+patterns+just+universal+to+all+indigenous+architecture+and+that+was+actually+my+original+hypothesis+when+i+first+saw+those+african+fractals+i+thought+wow+so+so+any
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=indigenous+group+that+doesn+t+have+a+state+society+that+sort+of+hierarchy+must+have+a+kind+of+bottom+up+architecture+but+that+turns+out+not+to+be+true+i+started+collecting+aerial+photographs+of
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=only+the+african+ones+were+were+fractal+and+if+you+think+about+it+all+these+different+societies+have+different+geometric+design+themes+they+use
error: request timeout
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=use+a+combination+of+circular+symmetry+and+fourfold+symmetry
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+see+on+the+pottery+and+the+baskets+here+s+an+aerial+photograph+of+one+of+the+anasazi+ruins+you+can+see+it+s+circular+at+the+largest+scale+but+it+s+rectangular+at+the+smaller+scale+right+it+is+not+the+same+pattern
error: request timeout
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=second+you+might+ask+well+doctor+eglash+aren+t+you+ignoring+the+diversity+of+african+cultures
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+three+times+the+answer+is+no
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=first+of+all+i+agree+with+mudimbe+s+wonderful+book+the+invention+of+africa+that+africa+is+an+artificial+invention+of+first+colonialism+and+then+oppositional+movements
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=no+because+a+widely+shared+design+practice+doesn+t+necessarily+give+you+a+unity+of+culture+and+it+definitely+is+not
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+finally+the+fractals+have+self+similarity+so+they+re+similar+to+themselves+but+they+re+not+necessarily+similar+to+each+other+you+see+very+different+uses+for+fractals+it+s+a+shared+technology+in+africa
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+finally+well+isn+t+this+just+intuition+it+s+not+really+mathematical+knowledge+africans+can+t+possibly+really+be+using+fractal+geometry+right+it+wasn+t+invented+until+the+nineteen+seventys
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+it+s+true+that+some+african
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+as+far+as+i+m+concerned+just+pure+intuition+so+some+of+these+things+i+d+wander+around+the+streets+of+dakar+asking+people+what+s+the+algorithm+what+s+the+rule+for+making+this+and+they+d+say+well
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+just+make+it+that+way+because+it+looks+pretty+stupid
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sometimes+that+s+not+the+case+in+some+cases
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+would+actually+be+algorithms+and+very+sophisticated+algorithms+so+in+manghetu+sculpture+you+d+see+this+recursive+geometry+in
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ethiopian+crosses+you+see+this+wonderful+unfolding+of+the+shape
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+angola+the+chokwe+people+draw+lines+in+the+sand+and+it+s+what+the+german+mathematician+euler+called+a
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=graph+we+now+call+it+an+eulerian+path+you+can+never+lift+your+stylus+from+the+surface+and+you+can+never+go+over+the+same+line+twice
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+they+do+it+recursively+and+they+do+it+with+an+age+grade+system+so+the+little+kids+learn+this+one+and+then+the+older+kids+learn+this+one
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=then+the+next+age+grade+initiation+you+learn+this+one+and+with+with+each+iteration+of+that+algorithm+you+learn+the+iterations+of+the+myth+you+learn+the+next+level+of+knowledge
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+finally+all+over+africa+you+see+this+board+game
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+called+owari+in+ghana+where+i+studied+it+it+s+called+mancala+here+on+the+east+coast+bao+in+kenya+sogo+elsewhere
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+you+see+self+organizing+patterns+that+spontaneously+occur+in+this
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=game+and+the+folks+in+ghana+knew+about+these+self+organizing+patterns+and+would+use+them+strategically+so+this+is+very+conscious+knowledge+here+s+a+wonderful+fractal
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=anywhere+you+go+in+the+sahel+you+ll+see+this
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+windscreen+and+of+course+fences+around+the+world+are+all+cartesian+all+strictly+linear+but+here+in+africa+you+ve+got+these+nonlinear+scaling+fences+so+i+tracked+down+one+of+the+folks+who+makes+these+things+a+guy+in
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=mali+just+outside+of+bamako+and+i+asked+him+how+come+you+re+making+fractal+fences+because+nobody+else+is+and+his+answer+was+very+interesting
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+said+well+if+i+lived+in+the+jungle+i+would+only+use+the+long+rows+of+straw+because+they+re+very+quick+and+they+re+very+cheap+it+doesn+t+take+much+time+doesn+t+take+much+straw
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+said+but+wind+and+dust+goes+through+pretty+easily+now+the+tight+rows+up+at+the+very+top+they+really+hold+out+the+wind+and+dust+but+it+takes+a+lot+of+time+and+it+takes+a+lot+of
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=straw+because+they+re+really+tight+now+he+said+we+know+from+experience+that+the+farther+up+from+the+ground+you+go
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+stronger+the+wind+blows+right+it+s+just+like+a+cost+benefit+analysis
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+measured+out+the+lengths+of+straw+put+it+on+a+log+log+plot+got+the+scaling+exponent+and+it+almost+exactly+matches+the+scaling+exponent+for+the+relationship+between+wind+speed+and+height+in+the+wind+engineering+handbook
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+these+guys+are+right+on+target+for+for+a+practical
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+most+complex+example+of+an+algorithmic+approach+to+fractals+that+i+found+was+actually+not+in+geometry+it+was+in+a+symbolic+code
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+was+bamana+sand+divination+and+the+same+divination+system+is+found+all+over+africa
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+find+it+on+the+east+coast+as+as+well+well+as+the+west+coast
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+symbols+are+very+well+preserved+so+so
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=each+of+these+symbols+has+four+bits+it+s+a+four+bit+binary+word+you+draw+these+lines+in+the+sand+randomly
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+you+count+off+and+if+it+s+an+odd+number+you+put+down+one+stroke+and+if+it+s+an+even+number+you+put+down+two+strokes
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+did+this+very+rapidly
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+couldn+t+understand+where+they+were+getting+they+only+did+the+randomness+four+times+i+couldn+t+understand+where+they+were+getting+the+other+twelve+symbols
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+wouldn+t+tell+me+they+said+no+no+i+can
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+and+i+said+well+look+i+ll+pay+you+you+can+be+my+teacher+and+i+ll+come+each+day+and+pay+you+they+said+it+s+not+a+matter+of+money+this+is+a+religious+matter+and+finally+out+of+desperation+i+said+well+let+me+explain+georg+cantor+in+one+thousand+eight+hundred+and+seventy+seven
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+started+explaining+why+i+was+there+in+in+africa+and+they+got+very+excited+when+they+saw+the+cantor+set
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+one+of+them+said+come+here+i+think+i+can+help+you+out+here+and+so+he+took+me+through+the+initiation+ritual+for+a
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+of+course+i+was+only+interested+in+the+math+so+the+whole+time+he+kept+shaking+his+head+going+you+know+i+didn+t+learn+it+this+way
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+had+to+sleep+with+a+kola+nut+next+to+my+bed+buried+in+sand+and+give+seven+coins+to+the+seven+lepers+and+so+on
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+finally+he+he+revealed+the+the+truth+of+the+matter
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+turns+out+it+s+a+pseudo+random+number+generator+using+deterministic+chaos+when+you+have+a+four
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=symbol+you+then+put+it+together+with+another+one+sideways+so+even+plus+odd+gives+you+odd+odd+plus+even+gives+you+odd+even+plus+even+gives+you+even+odd+plus+odd+gives+you+even+it+s+addition+modulo+two+just+like+in+the+parity+bit+check+on+your+computer
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+you+you+take+this+symbol+and+you+put+it+back+in+so+it+s+a+self+generating+diversity+of+symbols+they+re+truly+using+a+kind+of+deterministic+chaos+in+doing+this
error: request timeout
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+a+binary+code+you+can+actually+implement+this+in+hardware+what+a+fantastic+teaching+tool+that+should+be
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+in+african+engineering+schools+and+the+the+most+interesting+thing+i+found+out+about+it+was+historical
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+twelveth+century+hugo+of+santalla+brought+it+from+islamic+mystics+into+spain
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=divination+through+the+earth+this+is+a+geomantic+chart+drawn+for+king+richard+ii+in+one+thousand+three+hundred+and+ninety
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=leibniz+the+german+mathematician+talked+about+geomancy+in+his+dissertation+called+de+combinatoria
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+he+said+well+instead+of+using+one+stroke+and+two+strokes+let+s+use+a+one+and+a+zero+and+we+can+count+by+powers+of+two
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=right+ones+and+zeros+the+binary+code+george+boole+took+leibniz+s+binary+code+and+created
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=boolean+algebra+and+john+von+neumann+took+boolean+algebra+and+created+the+digital+computer
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+all+these+these+little+pdas+and+laptops+every+digital+circuit+in+the+world+started+in+africa+and+i+know
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=brian+eno+says+there+s+there+s+not+enough+africa+in+computers
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know+i+don+t+think+there+s+enough+african+history+in+brian+eno
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+let+me+end+with+just+a+few+words+about
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=applications+that+we+we+ve+found+for+this+and+you+can+go+to+our+website+the+applets+are+all+free+they+just+run+in+the+browser+anybody+in+the+world+can+use+them
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+national+science+foundation+s+broadening+participation+in+computing+program+recently+awarded+us+a+grant+to+make+a
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=programmable+version+of+these+design+tools+so+so+hopefully
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+three+years+anybody+ll+be+able+to+go+on+the+web+and+create+their+own+simulations+and+their+own+artifacts+we+ve+focused+in+the+u+s+on+african+american+students+as+well+as+native+american+and+latino
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+ve+found+statistically+significant+improvement+with+children+using+this+software+in+a+mathematics+class+in+comparison+with+with+a+control+group+that+did+not+have+the+software
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+it+s+really+very+successful+teaching+children+they+have+a+heritage+that+s+about+mathematics
error: request timeout
error: no video is found.
sleep 5 seconds to avoid blocking
------<1896>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RonFinley_2013.stm
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+south+central++liquor+stores
found 1 videos: [['/talks/ron_finley_a_guerrilla_gardener_in_south_central_la', '2013']]
selected: /talks/ron_finley_a_guerrilla_gardener_in_south_central_la
sleep 5 seconds to avoid blocking
------<1897>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RonGutman_2011U.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+always+wanted+to+be+a+superhero+i+wanted+to+save+the+world+and+make+everyone+happy++but+i+knew+that+i+d+need+superpowers+to+make+my+dreams+come+true+so+i
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=used+to+embark+on+these+imaginary+journeys+to+find+intergalactic+objects+from+planet+krypton++which+was+a+lot+of+fun+but
found 1 videos: [['/talks/ron_gutman_the_hidden_power_of_smiling', '2011']]
selected: /talks/ron_gutman_the_hidden_power_of_smiling
sleep 4 seconds to avoid blocking
------<1898>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RonMcCallum_2013X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+four+years+old+i+remember+my+mum+reading+a+story+to+me+and+my+two+big+brothers+and
error: request timeout
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+hands+to+feel+the+page+of+the+book+to+feel+the+picture+they+were+discussing
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+my+mum+said+darling++remember+that+you+can+t+see
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+can+t+feel+the+picture
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+can+t+feel+the+print+on+the+page+and+i+thought+to+myself+but+that+s+what+i+want+to+do++i+love+stories++i+want+to+read
error: request timeout
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+i+would+be+part+of+a+technological+revolution+that+would+make+that+dream+come+true
found 2 videos: [['/talks/ron_mccallum_how_technology_allowed_me_to_read', '2013'], ['/talks/amory_lovins_a_40_year_plan_for_energy', '2012']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+born+premature+by+about+ten+weeks++which+resulted+in+my+blindness
found 1 videos: [['/talks/ron_mccallum_how_technology_allowed_me_to_read', '2013']]
selected: /talks/ron_mccallum_how_technology_allowed_me_to_read
sleep 3 seconds to avoid blocking
------<1899>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RonnyEdry_2012X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+march+fourteen+this+year+i+posted+this+poster+on+facebook++this+is+an+image+of+me+and+my+daughter
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=holding+the+israeli+flag++i+will+try+to+explain+to+you+about+the+context+of+why+and+when+i+posted+a+few+days
found 1 videos: [['/talks/ronny_edry_israel_and_iran_a_love_story', '2012']]
selected: /talks/ronny_edry_israel_and_iran_a_love_story
sleep 4 seconds to avoid blocking
------<1900>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RoryBremner_2009G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=chris+has+been+so+nice+i+don+t+know+how+you+keep+it+up+chris+i+really+don+t+so+nice+all+week+he+s+the+kind+of+man+you+could+say+to+chris+i+m+really+sorry++i+ve+crashed+your+car+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+gets+worse++i+crashed+it+into+your+house+your+house+has
found 2 videos: [['/talks/rory_bremner_a_one_man_world_summit', '2009'], ['/talks/steven_levitt_surprising_stats_about_child_carseats', '2008']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+what+s+more+your+wife+has+just+run+off+with+your+best+friend+and+you+know+that+chris+would+say+thank+you
found 2 videos: [['/talks/jacqueline_novogratz_patient_capitalism', '2007'], ['/talks/dan_gilbert_why_we_make_bad_decisions', '2008']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thank+you+for+sharing+that+s+really+interesting
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thank+you+for+taking+me+to+a+place+that+i+didn+t+know+existed+thank+you
found 2 videos: [['/talks/frank_gehry_my_days_as_a_young_rebel', '2008'], ['/talks/juan_enriquez_the_life_code_that_will_reshape_the_future', '2007']]
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thank+you+for+inviting+us+one+of+the+things+about+appearing+later+on+in+the+ted+week+is+that++gradually+as+the+days+go+by+all+the+other+speakers+cover+most+of+what+you+were+going+to+say
found 1 videos: [['/talks/rory_bremner_a_one_man_world_summit', '2009']]
selected: /talks/rory_bremner_a_one_man_world_summit
sleep 5 seconds to avoid blocking
------<1901>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RoryStewart_2011G.stm
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=why+did+we+invade+afghanistan+the+question+is
found 6 videos: [['/talks/rory_stewart_time_to_end_the_war_in_afghanistan', '2011'], ['/talks/sam_richards_a_radical_experiment_in_empathy', '2011'], ['/talks/trita_parsi_iran_and_israel_peace_is_possible', '2013'], ['/talks/parag_khanna_mapping_the_future_of_countries', '2009'], ['/talks/misha_glenny_the_real_story_of_mcmafia_how_global_crime_networks_work', '2009'], ['/talks/naif_al_mutawa_superheroes_inspired_by_islam', '2010']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=why+are+we+still+in+afghanistan+one+decade+later
found 17 videos: [['/talks/rory_stewart_time_to_end_the_war_in_afghanistan', '2011'], ['/talks/melinda_gates_let_s_put_birth_control_back_on_the_agenda', '2012'], ['/talks/stefan_wolff_the_path_to_ending_ethnic_conflicts', '2010'], ['/talks/jonas_gahr_store_in_defense_of_dialogue', '2012'], ['/talks/andreas_schleicher_use_data_to_build_better_schools', '2013'], ['/talks/trita_parsi_iran_and_israel_peace_is_possible', '2013'], ['/talks/wadah_khanfar_a_historic_moment_in_the_arab_world', '2011'], ['/talks/mustafa_akyol_faith_versus_tradition_in_islam', '2011'], ['/talks/bruce_aylward_how_we_ll_stop_polio_for_good', '2011'], ['/talks/alberto_cairo_there_are_no_scraps_of_men', '2011'], ['/talks/kavita_ramdas_radical_women_embracing_tradition', '2010'], ['/talks/parag_khanna_mapping_the_future_of_countries', '2009'], ['/talks/carne_ross_an_independent_diplomat', '2010'], ['/talks/geoffrey_canada_our_failing_schools_enough_is_enough', '2013'], ['/talks/stanley_mcchrystal_listen_learn_then_lead', '2011'], ['/talks/jr_my_wish_use_art_to_turn_the_world_inside_out', '2011'], ['/talks/dean_kamen_the_emotion_behind_invention', '2010']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=why+have+we+got+one+hundred+and+thirty+thousand+troops+on+the+ground+why+were+more+people+killed
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=than+in+any+preceding+month+of+this+conflict++how+has+this+happened
found 1 videos: [['/talks/rory_stewart_time_to_end_the_war_in_afghanistan', '2011']]
selected: /talks/rory_stewart_time_to_end_the_war_in_afghanistan
sleep 1 seconds to avoid blocking
------<1902>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RoryStewart_2012X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+little+billy+goes+to+school++and+he+sits+down+and+the+teacher+says+what+does+your+father+do
found 1 videos: [['/talks/rory_stewart_why_democracy_matters', '2012']]
selected: /talks/rory_stewart_why_democracy_matters
sleep 2 seconds to avoid blocking
------<1903>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RorySutherland_2009G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+my+first+time+at+ted+normally+as+an+advertising+man+i+actually+speak+at+ted+evil++which+is+ted+s+secret+sister+that+that+pays+all+the+bills+it+s+held+every+two+years+in+burma
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+particularly+remember+a+really+good+speech+by+kim+jong+il+on+how+to+get+teens+smoking+again
found 1 videos: [['/talks/rory_sutherland_life_lessons_from_an_ad_man', '2009']]
selected: /talks/rory_sutherland_life_lessons_from_an_ad_man
sleep 3 seconds to avoid blocking
------<1904>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RorySutherland_2010S.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=may+remember+me+from+tedglobal+remember+me+asking+a+few+questions+which+still+preoccupy+me+one+of+them+was+why+is+it+necessary+to+spend+six+billion+pounds+speeding+up+the+eurostar+train+when+for+about+ten+percent
found 1 videos: [['/talks/rory_sutherland_sweat_the_small_stuff', '2010']]
selected: /talks/rory_sutherland_sweat_the_small_stuff
sleep 3 seconds to avoid blocking
------<1905>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RorySutherland_2011X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+something+that+since+it+was+invented+a+year+or+two+ago+has+given+me+untold+happiness
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+little+bit+of+it+i+think+is+the+nicotine+but+there+s+something+much+bigger+than+that+which+is+ever
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=since+in+the+uk+they+banned+smoking+in+public+places+i+ve+never+enjoyed+a+drinks+party+ever+again
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+reason+i+only+worked+out+just+the+other+day
found 7 videos: [['/talks/niels_diffrient_rethinking_the_way_we_sit_down', '2009'], ['/talks/amy_webb_how_i_hacked_online_dating', '2013'], ['/talks/brian_greene_is_our_universe_the_only_universe', '2012'], ['/talks/steve_truglia_a_leap_from_the_edge_of_space', '2009'], ['/talks/sheryl_wudunn_our_century_s_greatest_injustice', '2010'], ['/talks/michael_specter_the_danger_of_science_denial', '2010'], ['/talks/cynthia_kenyon_experiments_that_hint_of_longer_lives', '2011']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+is+when+you+go+to+a+drinks+party+and+you+stand+up+and+hold+a+glass+of+red+wine+and+you+talk+endlessly+to+people
found 1 videos: [['/talks/rory_sutherland_perspective_is_everything', '2012']]
selected: /talks/rory_sutherland_perspective_is_everything
sleep 2 seconds to avoid blocking
------<1906>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RoseGeorge_2013.stm
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+few+years+ago++oddly+enough+i+needed+the+bathroom++and+i+found+one+a+public
found 1 videos: [['/talks/rose_george_let_s_talk_crap_seriously', '2013']]
selected: /talks/rose_george_let_s_talk_crap_seriously
sleep 4 seconds to avoid blocking
------<1907>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RoseGeorge_2013S.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=harvard+business+school+chose+the+best+business+model+of+that+year+it+chose+somali+piracy
found 1 videos: [['/talks/rose_george_inside_the_secret_shipping_industry', '2013']]
selected: /talks/rose_george_inside_the_secret_shipping_industry
sleep 1 seconds to avoid blocking
------<1908>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RoseGoslinga_2014S.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+known+as+the+year+of+the+cup++or+the+goro+goro+the+goro+goro
found 4 videos: [['/talks/rose_goslinga_crop_insurance_an_idea_worth_seeding', '2014'], ['/talks/audrey_choi_how_to_make_a_profit_while_making_a_difference', '2016'], ['/talks/meron_gribetz_a_glimpse_of_the_future_through_an_augmented_reality_headset', '2016'], ['/talks/jon_ronson_when_online_shaming_goes_too_far', '2015']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+a+cup+used+to+measure+two+kilograms+of+maize+flower+on+the+market++and+the+maize+flower+is+used+to+make+ugali
found 1 videos: [['/talks/rose_goslinga_crop_insurance_an_idea_worth_seeding', '2014']]
selected: /talks/rose_goslinga_crop_insurance_an_idea_worth_seeding
sleep 5 seconds to avoid blocking
------<1909>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RoselindeTorres_2013S.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+makes+a+great+leader+today
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=many+of+us+carry+this+image+of+this+all+knowing+superhero
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+stands+and+commands+and+protects+his+followers
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+kind+of+an+image+from+another+time++and+what+s+also+outdated
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+the+leadership+development+programs+that+are+based+on+success+models+for+a+world+that+was+not+a+world+that+is
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+that+is+coming++we+conducted+a+study+of+four+thousand
found 3 videos: [['/talks/boghuma_kabisen_titanji_ethical_riddles_in_hiv_research', '2013'], ['/talks/timothy_prestero_design_for_people_not_awards', '2012'], ['/talks/leana_wen_what_your_doctor_won_t_disclose', '2014']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+asked+them++let+s+see+the+effectiveness+of+your+leadership+development+programs
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fifty+eight+percent+of+the+companies+cited+significant+talent+gaps+for+critical+leadership+roles
found 1 videos: [['/talks/roselinde_torres_what_it_takes_to_be_a_great_leader', '2014']]
selected: /talks/roselinde_torres_what_it_takes_to_be_a_great_leader
sleep 2 seconds to avoid blocking
------<1910>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RosieKing_2014P.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+haven+t+told+many+people+this+but
found 8 videos: [['/talks/nizar_ibrahim_how_we_unearthed_the_spinosaurus', '2015'], ['/talks/geena_rocero_why_i_must_come_out', '2014'], ['/talks/kelli_jean_drinkwater_enough_with_the_fear_of_fat', '2016'], ['/talks/kitra_cahana_my_father_locked_in_his_body_but_soaring_free', '2014'], ['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013'], ['/talks/kakenya_ntaiya_a_girl_who_demanded_school', '2013'], ['/talks/debra_jarvis_yes_i_survived_cancer_but_that_doesn_t_define_me', '2014'], ['/talks/kenneth_lacovara_hunting_for_dinosaurs_showed_me_our_place_in_the_universe', '2016']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+my+head+i+ve+got+thousands+of+secret+worlds+all+going+on+all+at+the+same+time+i+am+also+autistic
error: request timeout
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+whole+variation+as+to+what+we+re+like+for+instance+my+little+brother+he+s+very+severely+autistic++he+s+nonverbal++he+can+t+talk+at+all+but+i+love+to+talk
error: request timeout
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=associate+autism+with+liking+maths+and+science+and+nothing+else+but+i+know+so+many+autistic+people+who+love+being+creative
found 1 videos: [['/talks/rosie_king_how_autism_freed_me_to_be_myself', '2014']]
selected: /talks/rosie_king_how_autism_freed_me_to_be_myself
sleep 2 seconds to avoid blocking
------<1911>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RossLovegrove_2005.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+name+is+lovegrove+i+only+know+nine+lovegroves+two+of+which+are+my+parents++they+are+first+cousins+and+you+know+what+happens+when+you+know
found 1 videos: [['/talks/ross_lovegrove_organic_design_inspired_by_nature', '2006']]
selected: /talks/ross_lovegrove_organic_design_inspired_by_nature
sleep 5 seconds to avoid blocking
------<1912>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RoxaneGay_2015W.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+am+failing+as+a+woman++i+am+failing+as+a+feminist++i+have+passionate+opinions+about+gender+equality+but
found 1 videos: [['/talks/roxane_gay_confessions_of_a_bad_feminist', '2015']]
selected: /talks/roxane_gay_confessions_of_a_bad_feminist
sleep 3 seconds to avoid blocking
------<1913>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RoyGould_2008.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=less+than+a+year+from+now+the+world+is+going+to+celebrate+the+international+year+of+astronomy++which+marks+the+400th+anniversary+of+galileo+s+first+glimpse+of+the+night+sky+through+a+telescope
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+a+few+months+the+world+is+also+going+to+celebrate
found 9 videos: [['/talks/roy_gould_curtis_wong_a_preview_of_the_worldwide_telescope', '2008'], ['/talks/shimon_schocken_what_a_bike_ride_can_teach_you', '2010'], ['/talks/aimee_mullins_the_opportunity_of_adversity', '2010'], ['/talks/barry_schwartz_our_loss_of_wisdom', '2009'], ['/talks/raghava_kk_my_5_lives_as_an_artist', '2010'], ['/talks/rufus_griscom_alisa_volkman_let_s_talk_parenting_taboos', '2010'], ['/talks/charles_elachi_the_story_behind_the_mars_rovers', '2008'], ['/talks/dan_buettner_how_to_live_to_be_100', '2010'], ['/talks/emmanuel_jal_the_music_of_a_war_child', '2009']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+launch+of+a+new+invention
found 6 videos: [['/talks/chris_anderson_how_web_video_powers_global_innovation', '2010'], ['/talks/roy_gould_curtis_wong_a_preview_of_the_worldwide_telescope', '2008'], ['/talks/paul_maccready_a_flight_on_solar_wings', '2007'], ['/talks/bonnie_bassler_how_bacteria_talk', '2009'], ['/talks/edith_widder_glowing_life_in_an_underwater_world', '2010'], ['/talks/geoff_mulgan_post_crash_investing_in_a_better_world', '2009']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=from+microsoft+research++which+i+think+is+going+to+have+as+profound+an+impact+on+the+way+we+view+the+universe+as+galileo+did+four+centuries+ago
found 1 videos: [['/talks/roy_gould_curtis_wong_a_preview_of_the_worldwide_telescope', '2008']]
selected: /talks/roy_gould_curtis_wong_a_preview_of_the_worldwide_telescope
sleep 5 seconds to avoid blocking
------<1914>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RozSavage_2010Z.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+name+is+roz+savage+and+i+row+across+oceans
found 1 videos: [['/talks/roz_savage_why_i_m_rowing_across_the_pacific', '2010']]
selected: /talks/roz_savage_why_i_m_rowing_across_the_pacific
sleep 3 seconds to avoid blocking
------<1915>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RubyWax_2012G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+in+four+people+suffer+from+some+sort+of+mental+illness++so+if+it+was
found 6 videos: [['/talks/ruby_wax_what_s_so_funny_about_mental_illness', '2012'], ['/talks/thomas_insel_toward_a_new_understanding_of_mental_illness', '2013'], ['/talks/andrew_solomon_depression_the_secret_we_share', '2013'], ['/talks/vikram_patel_mental_health_for_all_by_involving_all', '2012'], ['/talks/laurel_braitman_depressed_dogs_cats_with_ocd_what_animal_madness_means_for_us_humans', '2014'], ['/talks/russell_foster_why_do_we_sleep', '2013']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+two+three+four+it+s+you+sir+you+yeah+with+the+weird+teeth++and+you+next+to+him
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know+who+you+are+actually+that+whole+row+isn+t+right+that+s+not+good
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hi++yeah++real+bad+don+t+even+look+at+me+i+am
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+the+one+in+four++thank+you
found 16 videos: [['/talks/seth_shostak_et_is_probably_out_there_get_ready', '2012'], ['/talks/cesar_kuriyama_one_second_every_day', '2013'], ['/talks/neil_macgregor_2600_years_of_history_in_one_object', '2012'], ['/talks/david_epstein_are_athletes_really_getting_faster_better_stronger', '2014'], ['/talks/jeremy_howard_the_wonderful_and_terrifying_implications_of_computers_that_can_learn', '2014'], ['/talks/anna_mracek_dietrich_a_plane_you_can_drive', '2011'], ['/talks/karima_bennoune_when_people_of_muslim_heritage_challenge_fundamentalism', '2014'], ['/talks/diana_reiss_peter_gabriel_neil_gershenfeld_and_vint_cerf_the_interspecies_internet_an_idea_in_progress', '2013'], ['/talks/don_tapscott_four_principles_for_the_open_world', '2012'], ['/talks/glenn_greenwald_why_privacy_matters', '2014'], ['/talks/dan_berkenstock_the_world_is_one_big_dataset_now_how_to_photograph_it', '2014'], ['/talks/eman_mohammed_the_courage_to_tell_a_hidden_story', '2014'], ['/talks/shaka_senghor_why_your_worst_deeds_don_t_define_you', '2014'], ['/talks/brian_greene_is_our_universe_the_only_universe', '2012'], ['/talks/shukla_bose_teaching_one_child_at_a_time', '2010'], ['/talks/karen_thompson_walker_what_fear_can_teach_us', '2013']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+i+inherit+it+from+my+mother+who+used+to+crawl+around+the+house+on+all+fours
found 1 videos: [['/talks/ruby_wax_what_s_so_funny_about_mental_illness', '2012']]
selected: /talks/ruby_wax_what_s_so_funny_about_mental_illness
sleep 5 seconds to avoid blocking
------<1916>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RufusGriscomandAlisaVolkman_2010W.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+where+our+story+begins+the+dramatic+moments+of+the+birth+of+our+first+son+declan+obviously+a+really+profound+moment+and+it+changed+our
found 1 videos: [['/talks/rufus_griscom_alisa_volkman_let_s_talk_parenting_taboos', '2010']]
selected: /talks/rufus_griscom_alisa_volkman_let_s_talk_parenting_taboos
sleep 1 seconds to avoid blocking
------<1917>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RupalPatel_2013W.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+d+like+to+talk+today+about+a+powerful+and+fundamental+aspect+of+who+we+are+our+voice
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=each+one+of+us+has+a+unique+voiceprint+that+reflects+our+age
found 1 videos: [['/talks/rupal_patel_synthetic_voices_as_unique_as_fingerprints', '2014']]
selected: /talks/rupal_patel_synthetic_voices_as_unique_as_fingerprints
sleep 2 seconds to avoid blocking
------<1918>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RussAltman_2015P.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+you+go+to+the+doctor+and+get+some+tests+the+doctor+determines+that+you+have+high+cholesterol+and+you+would+benefit
found 1 videos: [['/talks/russ_altman_what_really_happens_when_you_mix_medications', '2016']]
selected: /talks/russ_altman_what_really_happens_when_you_mix_medications
sleep 3 seconds to avoid blocking
------<1919>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RussellFoster_2013G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+i+d+like+to+do+today+is+talk+about+one+of+my+favorite+subjects++and+that+is+the+neuroscience+of+sleep
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+most+of+us+and+of+course+it+s+the+sound+of+the+alarm+clock++and+what+that+truly+ghastly+awful+sound+does+is+stop
error: request timeout
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=behavioral+experience+that+we+have+and+that+s+sleep++if
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+re+an+average+sort+of+person+thirty+six+percent+of+your+life+will+be+spent+asleep++which+means+that+if+you+live+to+ninety+then
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=years+will+have+been+spent+entirely+asleep
found 3 videos: [['/talks/russell_foster_why_do_we_sleep', '2013'], ['/talks/anil_ananthaswamy_what_it_takes_to_do_extreme_astrophysics', '2011'], ['/talks/jeff_iliff_one_more_reason_to_get_a_good_night_s_sleep', '2014']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+what+that+thirty+two+years+is+telling+us+is+that+sleep+at+some+level+is+important++and+yet+for+most+of+us+we+don+t+give+sleep+a+second+thought
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+throw+it+away+we+really+just+don+t+think+about+sleep+and+so+what+i+d+like+to+do+today+is+change+your+views++change+your+ideas+and+your+thoughts
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thoughts+about+sleep+and+the+journey+that+i+want+to+take+you+on++we+need+to+start+by+going+back+in+time
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=enjoy+the++honey+heavy+dew+of+slumber+any+ideas+who+said+that
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=shakespeare+s+julius+caesar++yes+let+me+give+you+a+few+more
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=o+gentle+sleep++nature+s+soft+nurse+how+have+i+frighted+thee+shakespeare+again+from+i+won+t+say+it+the+scottish+play
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=from+the+same+time+sleep+is+the+golden+chain+that+ties+health+and+our+bodies+together+extremely+prophetic+by+thomas+dekker++another+elizabethan+dramatist
found 1 videos: [['/talks/russell_foster_why_do_we_sleep', '2013']]
selected: /talks/russell_foster_why_do_we_sleep
sleep 1 seconds to avoid blocking
------<1920>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RutgerBregman_2017.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+to+start+with+a+simple+question++why+do+the+poor+make+so+many+poor+decisions
found 19 videos: [['/talks/yuval_noah_harari_why_fascism_is_so_tempting_and_how_your_data_could_power_it', '2018'], ['/talks/antonio_guterres_refugees_have_the_right_to_be_protected', '2015'], ['/talks/yuval_noah_harari_nationalism_vs_globalism_the_new_political_divide', '2017'], ['/talks/rutger_bregman_poverty_isn_t_a_lack_of_character_it_s_a_lack_of_cash', '2017'], ['/talks/max_tegmark_how_to_get_empowered_not_overpowered_by_ai', '2018'], ['/talks/michael_murphy_architecture_that_s_built_to_heal', '2016'], ['/talks/christiana_figueres_and_chris_anderson_how_we_can_turn_the_tide_on_climate', '2019'], ['/talks/olivia_remes_how_to_cope_with_anxiety', '2019'], ['/talks/mona_chalabi_3_ways_to_spot_a_bad_statistic', '2017'], ['/talks/dana_kanze_the_real_reason_female_entrepreneurs_get_less_funding', '2018'], ['/talks/romaine_seguin_when_goods_cross_borders_armies_stay_home', '2016'], ['/talks/darrick_hamilton_how_baby_bonds_could_help_close_the_wealth_gap', '2018'], ['/talks/juno_mac_the_laws_that_sex_workers_really_want', '2016'], ['/talks/alex_edmans_what_to_trust_in_a_post_truth_world', '2018'], ['/talks/yanis_varoufakis_capitalism_will_eat_democracy_unless_we_speak_up', '2016'], ['/talks/steve_simpson_how_ocean_noise_destroys_marine_ecosystems', '2019'], ['/talks/jose_andres_how_a_team_of_chefs_fed_puerto_rico_after_hurricane_maria', '2018'], ['/talks/hugh_evans_what_does_it_mean_to_be_a_citizen_of_the_world', '2016'], ['/talks/caitlin_quattromani_and_lauran_arledge_how_our_friendship_survives_our_opposing_politics', '2017']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+know+it+s+a+harsh+question++but+take+a+look+at+the+data+the+poor+borrow+more+save+less++smoke+more
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well++the+standard+explanation+was+once+summed+up+by+the+british+prime+minister+margaret+thatcher++and+she+called+poverty+a
error: request timeout
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+lack+of+character++basically+now++i+m+sure+not+many+of+you+would+be+so+blunt++but+the+idea
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=idea+that+there+s+something+wrong+with+the+poor+themselves+is+not+restricted+to+mrs+thatcher+some+of+you+may+believe+that+the+poor+should+be+held+responsible
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+their+own+mistakes++and+others+may+argue+that+we+should+help+them+to+make+better+decisions++but+the+underlying+assumption
found 1 videos: [['/talks/rutger_bregman_poverty_isn_t_a_lack_of_character_it_s_a_lack_of_cash', '2017']]
selected: /talks/rutger_bregman_poverty_isn_t_a_lack_of_character_it_s_a_lack_of_cash
sleep 2 seconds to avoid blocking
------<1921>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RuthChang_2014S.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hard+choice+you+ll+face+in+the+near+future+it+might+be+between+two+careers+artist+and+accountant
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+places+to+live+the+city+or+the+country
found 15 videos: [['/talks/taiye_selasi_don_t_ask_where_i_m_from_ask_where_i_m_a_local', '2015'], ['/talks/mark_raymond_victims_of_the_city', '2012'], ['/talks/alessandra_orofino_it_s_our_city_let_s_fix_it', '2014'], ['/talks/jeff_speck_the_walkable_city', '2013'], ['/talks/ruth_chang_how_to_make_hard_choices', '2014'], ['/talks/io_tillett_wright_fifty_shades_of_gay', '2013'], ['/talks/mick_cornett_how_an_obese_town_lost_a_million_pounds', '2014'], ['/talks/theaster_gates_how_to_revive_a_neighborhood_with_imagination_beauty_and_art', '2015'], ['/talks/marwa_al_sabouni_how_syria_s_architecture_laid_the_foundation_for_brutal_war', '2016'], ['/talks/marc_kushner_why_the_buildings_of_the_future_will_be_shaped_by_you', '2015'], ['/talks/samantha_nutt_the_real_harm_of_the_global_arms_trade', '2016'], ['/talks/pico_iyer_where_is_home', '2013'], ['/talks/adam_driver_my_journey_from_marine_to_actor', '2016'], ['/talks/enrique_penalosa_why_buses_represent_democracy_in_action', '2013'], ['/talks/robert_muggah_how_to_protect_fast_growing_cities_from_failing', '2015']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+even+between+two+people+to+marry+you+could+marry+betty+or+you+could+marry+lolita+or+it+might+be+a+choice+about
found 1 videos: [['/talks/ruth_chang_how_to_make_hard_choices', '2014']]
selected: /talks/ruth_chang_how_to_make_hard_choices
sleep 2 seconds to avoid blocking
------<1922>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RyanGravel_2016S.stm
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+from+my+metro+card+when+i+spent+a+year+abroad+in+paris+in+college+in+the+mid++90s
found 1 videos: [['/talks/ryan_gravel_how_an_old_loop_of_railroads_is_changing_the_face_of_a_city', '2016']]
selected: /talks/ryan_gravel_how_an_old_loop_of_railroads_is_changing_the_face_of_a_city
sleep 4 seconds to avoid blocking
------<1923>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RyanHolladay_2013S.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=shots+might+start+to+look+familiar
found 12 videos: [['/talks/ryan_holladay_to_hear_this_music_you_have_to_be_there_literally', '2014'], ['/talks/karen_bass_unseen_footage_untamed_nature', '2012'], ['/talks/paul_bloom_can_prejudice_ever_be_a_good_thing', '2014'], ['/talks/ash_beckham_we_re_all_hiding_something_let_s_find_the_courage_to_open_up', '2014'], ['/talks/lucianne_walkowicz_look_up_for_a_change', '2012'], ['/talks/nancy_kanwisher_a_neural_portrait_of_the_human_mind', '2014'], ['/talks/yassmin_abdel_magied_what_does_my_headscarf_mean_to_you', '2015'], ['/talks/diane_kelly_what_we_didn_t_know_about_penis_anatomy', '2012'], ['/talks/sam_richards_a_radical_experiment_in_empathy', '2011'], ['/talks/wendy_chung_autism_what_we_know_and_what_we_don_t_know_yet', '2014'], ['/talks/mitch_resnick_let_s_teach_kids_to_code', '2013'], ['/talks/david_brooks_the_social_animal', '2011']]
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+the+most+beautifully+designed+public+spaces+in+america
found 2 videos: [['/talks/ryan_holladay_to_hear_this_music_you_have_to_be_there_literally', '2014'], ['/talks/niall_ferguson_the_6_killer_apps_of_prosperity', '2011']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+to+anyone+who+hasn+t+visited+these+images+can+t+really+fully+convey
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+really+understand+central+park+you+have+to+physically+be+there
found 3 videos: [['/talks/ryan_holladay_to_hear_this_music_you_have_to_be_there_literally', '2014'], ['/talks/kate_orff_reviving_new_york_s_rivers_with_oysters', '2011'], ['/talks/raymond_wang_how_germs_travel_on_planes_and_how_we_can_stop_them', '2015']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+the+same+is+true+of+the+music
found 13 videos: [['/talks/ge_wang_the_diy_orchestra_of_the_future', '2014'], ['/talks/mark_applebaum_the_mad_scientist_of_music', '2012'], ['/talks/jose_bowen_beethoven_the_businessman', '2012'], ['/talks/christine_sun_kim_the_enchanting_music_of_sign_language', '2015'], ['/talks/ryan_holladay_to_hear_this_music_you_have_to_be_there_literally', '2014'], ['/talks/paul_bloom_the_origins_of_pleasure', '2011'], ['/talks/alex_rosenthal_and_george_zaidan_the_case_of_the_missing_fractals', '2014'], ['/talks/antonio_donato_nobre_the_magic_of_the_amazon_a_river_that_flows_invisibly_all_around_us', '2014'], ['/talks/chris_urmson_how_a_driverless_car_sees_the_road', '2015'], ['/talks/eric_whitacre_a_virtual_choir_2_000_voices_strong', '2011'], ['/talks/rajesh_rao_a_rosetta_stone_for_a_lost_language', '2011'], ['/talks/charles_hazlewood_british_paraorchestra_the_debut_of_the_british_paraorchestra', '2012'], ['/talks/bill_ford_a_future_beyond_traffic_gridlock', '2011']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+my+brother+and+i+composed+and+mapped+specifically+for+central+park
found 1 videos: [['/talks/ryan_holladay_to_hear_this_music_you_have_to_be_there_literally', '2014']]
selected: /talks/ryan_holladay_to_hear_this_music_you_have_to_be_there_literally
sleep 1 seconds to avoid blocking
------<1924>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RyanLobo_2009I.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+name+is+ryan+lobo++and+i+ve+been+involved+in+the+documentary
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=filmmaking+business+all+over+the+world+for+the+last+ten+years+during+the+process+of+making+these+films
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+found+myself+taking+photographs+often+much+to+the+annoyance+of+the+video+cameramen+i+found+this+photography+of
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=mine+almost+compulsive+and+at+the+end+of+a+shoot++i+would+sometimes+feel+that+i+had+photographs+that+told+a+better+story+than
found 1 videos: [['/talks/ryan_lobo_photographing_the_hidden_story', '2009']]
selected: /talks/ryan_lobo_photographing_the_hidden_story
sleep 1 seconds to avoid blocking
------<1925>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/RyanMerkley_2012G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+understand+the+world+that+live+in+we+tell+stories
found 13 videos: [['/talks/eve_ensler_embrace_your_inner_girl', '2010'], ['/talks/shekhar_kapur_we_are_the_stories_we_tell_ourselves', '2010'], ['/talks/megan_kamerick_women_should_represent_women_in_media', '2012'], ['/talks/zainab_salbi_women_wartime_and_the_dream_of_peace', '2010'], ['/talks/sheryl_sandberg_so_we_leaned_in_now_what', '2014'], ['/talks/sarah_kay_how_many_lives_can_you_live', '2011'], ['/talks/ethan_zuckerman_listening_to_global_voices', '2010'], ['/talks/jake_barton_the_museum_of_you', '2013'], ['/talks/brene_brown_the_power_of_vulnerability', '2010'], ['/talks/paul_nicklen_animal_tales_from_icy_wonderlands', '2011'], ['/talks/eric_liu_why_ordinary_people_need_to_understand_power', '2014'], ['/talks/wes_moore_how_to_talk_to_veterans_about_war', '2014'], ['/talks/rick_guidotti_from_stigma_to_supermodel', '2012']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+while+remixing+and+sharing+have+come+to+define+the+web+as+we+know+it
found 1 videos: [['/talks/ryan_merkley_online_video_annotated_remixed_and_popped', '2012']]
selected: /talks/ryan_merkley_online_video_annotated_remixed_and_popped
sleep 2 seconds to avoid blocking
------<1926>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SafwatSaleem_2016U.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+used+to+have+this+recurring+dream+where+i+d+walk+into+a+roomful+of+people++and+i+d+try+not+to+make+eye+contact+with+anyone
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=until+someone+notices+me+and+i+just+panic
found 3 videos: [['/talks/safwat_saleem_why_i_keep_speaking_up_even_when_people_mock_my_accent', '2016'], ['/talks/tim_urban_inside_the_mind_of_a_master_procrastinator', '2016'], ['/talks/worklife_with_adam_grant_the_daily_show_s_secret_to_creativity', '2018']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+person+walks+up+to+me+and+says+hi+my+name+is+so+and+so+and+what+is+your+name
found 5 videos: [['/talks/safwat_saleem_why_i_keep_speaking_up_even_when_people_mock_my_accent', '2016'], ['/talks/jia_jiang_what_i_learned_from_100_days_of_rejection', '2016'], ['/talks/david_grady_how_to_save_the_world_or_at_least_yourself_from_bad_meetings', '2014'], ['/talks/kristie_overstreet_what_doctors_should_know_about_gender_identity', '2018'], ['/talks/verna_myers_how_to_overcome_our_biases_walk_boldly_toward_them', '2014']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+m+just+quiet++unable+to+respond
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=after+some+awkward+silence+he+goes+have+you+forgotten+your+name+and+i+m+still+quiet
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+slowly+all+the+other+people+in+the+room+begin+to+turn+toward+me
found 2 videos: [['/talks/safwat_saleem_why_i_keep_speaking_up_even_when_people_mock_my_accent', '2016'], ['/talks/dave_isay_everyone_around_you_has_a_story_the_world_needs_to_hear', '2015']]
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+chant+gets+louder+i+want+to+respond+but+i+don+t+i
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=m+a+visual+artist+some+of+my+work
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+humorous+and+some+is+a+bit+funny+but+in+a+sad+way+and
found 1 videos: [['/talks/safwat_saleem_why_i_keep_speaking_up_even_when_people_mock_my_accent', '2016']]
selected: /talks/safwat_saleem_why_i_keep_speaking_up_even_when_people_mock_my_accent
sleep 1 seconds to avoid blocking
------<1927>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SajaySamuel_2016X.stm
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+indebted+for+their+passage+to+the+new+economy++too+poor+to+pay+their+way+through+college+they+now+owe+lenders
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=more+than+one+trillion+us+dollars+they+do+find+what+jobs+they+can+get
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+pay+off+a+debt+that+is+secured+on+their+person+in+america++even+a
found 2 videos: [['/talks/sajay_samuel_how_college_loans_exploit_students_for_profit', '2016'], ['/talks/nick_hanauer_beware_fellow_plutocrats_the_pitchforks_are_coming', '2014']]
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=gets+a+second+chance++but+it+is+nearly+impossible
found 16 videos: [['/talks/jennifer_kahn_gene_editing_can_now_change_an_entire_species_forever', '2016'], ['/talks/sajay_samuel_how_college_loans_exploit_students_for_profit', '2016'], ['/talks/sebastian_thrun_and_chris_anderson_what_ai_is_and_isn_t', '2017'], ['/talks/chris_hadfield_what_i_learned_from_going_blind_in_space', '2014'], ['/talks/jon_bowers_we_should_aim_for_perfection_and_stop_fearing_failure', '2017'], ['/talks/megan_phelps_roper_i_grew_up_in_the_westboro_baptist_church_here_s_why_i_left', '2017'], ['/talks/kenneth_lacovara_hunting_for_dinosaurs_showed_me_our_place_in_the_universe', '2016'], ['/talks/aaswath_raman_how_we_can_turn_the_cold_of_outer_space_into_a_renewable_resource', '2018'], ['/talks/sydney_chaffee_how_teachers_can_help_kids_find_their_political_voices', '2018'], ['/talks/jacy_reese_anthis_why_we_should_end_animal_agriculture', '2018'], ['/talks/linda_cliatt_wayman_how_to_fix_a_broken_school_lead_fearlessly_love_hard', '2015'], ['/talks/ismael_nazario_what_i_learned_as_a_kid_in_jail', '2015'], ['/talks/raj_panjabi_no_one_should_die_because_they_live_too_far_from_a_doctor', '2017'], ['/talks/simone_giertz_why_you_should_make_useless_things', '2018'], ['/talks/luhan_yang_how_to_create_a_world_where_no_one_dies_waiting_for_a_transplant', '2018'], ['/talks/barat_ali_batoor_my_desperate_journey_with_a_human_smuggler', '2015']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+an+american+to+get+discharged+their+student+loan+debts
found 1 videos: [['/talks/sajay_samuel_how_college_loans_exploit_students_for_profit', '2016']]
selected: /talks/sajay_samuel_how_college_loans_exploit_students_for_profit
sleep 5 seconds to avoid blocking
------<1928>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SakenaYacoobi_2015W.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+born+in+a+middle+class+family++my+father+was+five+years+old+when+he+lost+his+father++but+by+the+time
found 2 videos: [['/talks/sakena_yacoobi_how_i_stopped_the_taliban_from_shutting_down_my_school', '2015'], ['/talks/anders_fjellberg_two_nameless_bodies_washed_up_on_the_beach_here_are_their_stories', '2015']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+born++he+was+already+a+businessman
found 1 videos: [['/talks/sakena_yacoobi_how_i_stopped_the_taliban_from_shutting_down_my_school', '2015']]
selected: /talks/sakena_yacoobi_how_i_stopped_the_taliban_from_shutting_down_my_school
sleep 4 seconds to avoid blocking
------<1929>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SakiMafundikwa_2013.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fifteen+years+ago+after+a+twenty+year+stay+in+the+united+states+and+africa+called+me+back+and+i+founded+my+country+s
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=graphic+design+and+new+media+college+and+i+called+it+the+zimbabwe+institute+of+vigital+arts
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+idea+the+dream+was+really+for+a+sort+of+bauhaus+sort+of+school+where+new+ideas+were+interrogated
error: request timeout
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+creation+of+a+new+visual+language+based+on+the+african+creative+heritage
found 1 videos: [['/talks/saki_mafundikwa_ingenuity_and_elegance_in_ancient_african_alphabets', '2013']]
selected: /talks/saki_mafundikwa_ingenuity_and_elegance_in_ancient_african_alphabets
sleep 3 seconds to avoid blocking
------<1930>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SalilDudani_2016X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+summer+afternoon+in+two+thousand+and+thirteen+dc+police+detained+questioned+and+searched+a+man+who+appeared+suspicious+and+potentially+dangerous
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+wasn+t+what+i+was+wearing+the+day+of+the+detention+to+be+fair+but+i+have+a+picture+of+that+as+well++i+know+it+s+very+frightening+try+to+remain+calm
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+this+time+i+was+interning+at+the+public+defender+service+in+washington+dc+and+i+was+visiting+a+police+station+for+work++i+was+on+my+way+out++and+before+i+could+make+it+to+my+car+two+police+cars+pulled+up+to+block+my+exit+and+an+officer+approached+me+from+behind
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+told+me+to+stop+take+my+backpack+off+and+put+my+hands+on+the+police+car+parked+next+to+us+about+a+dozen+officers+then+gathered+near+us
found 1 videos: [['/talks/salil_dudani_how_jails_extort_the_poor', '2017']]
selected: /talks/salil_dudani_how_jails_extort_the_poor
sleep 2 seconds to avoid blocking
------<1931>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SallyKohn_2013S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+do+my+job+people+hate+me+in+fact+the+better
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+do+my+job+the+more+people+hate+me
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+no+i+m+not+a+meter+maid++and+i+m+not+an+undertaker++i+am+a+progressive+lesbian+talking+head+on+fox+news
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+y+all+heard+that+right+just+to+make+sure+right+i+am+a+gay+talking+head+on+fox+news+i+am+going+to+tell+you+how+i+do+it
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+most+important+thing+i+ve+learned
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+go+on+television+i+debate+people+who
found 12 videos: [['/talks/lauren_zalaznick_the_conscience_of_television', '2011'], ['/talks/io_tillett_wright_fifty_shades_of_gay', '2013'], ['/talks/clay_shirky_how_the_internet_will_one_day_transform_government', '2012'], ['/talks/michael_sandel_why_we_shouldn_t_trust_markets_with_our_civic_life', '2013'], ['/talks/sally_kohn_let_s_try_emotional_correctness', '2013'], ['/talks/glenn_greenwald_why_privacy_matters', '2014'], ['/talks/alaa_murabit_what_my_religion_really_says_about_women', '2015'], ['/talks/dilip_ratha_the_hidden_force_in_global_economics_sending_money_home', '2014'], ['/talks/rory_sutherland_perspective_is_everything', '2012'], ['/talks/richard_ledgett_the_nsa_responds_to_edward_snowden_s_ted_talk', '2014'], ['/talks/laura_carstensen_older_people_are_happier', '2012'], ['/talks/jonathan_haidt_how_common_threats_can_make_common_political_ground', '2013']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=literally+want+to+obliterate+everything+i+believe+in+in+some+cases+who+don+t+want+me+and+people+like+me+to+even+exist
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+sort+of+like+thanksgiving+with+your+conservative+uncle
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+a+live+television+audience+of+millions+it+s+totally+almost+just+like+that
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+s+just+on+air+the+hate+mail+i+get+is+unbelievable+last+week+alone+i+got+two+hundred+and+thirty+eight+pieces+of+nasty+email
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+more+hate+tweets+than+i+can+even+count++i+was+called+an+idiot+a+traitor+a+scourge+a+cunt+and+an+ugly+man+and
error: request timeout
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+have+i+realized+being+on+the+receiving+end+of+all+this+ugliness++well+my+biggest+takeaway
found 1 videos: [['/talks/sally_kohn_let_s_try_emotional_correctness', '2013']]
selected: /talks/sally_kohn_let_s_try_emotional_correctness
sleep 5 seconds to avoid blocking
------<1932>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SallyKohn_2014S.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=white+guys+and+some+black+women+swapped+twitter+avatars+or+pictures+online+they+didn+t+change+their+content+they+kept+tweeting+the+same+as+usual
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+suddenly+the+white+guys+noticed+they+were+getting+called+the+n+word+all+the+time+and+they+were+getting+the+worst+kind+of+online+abuse
found 1 videos: [['/talks/sally_kohn_don_t_like_clickbait_don_t_click', '2014']]
selected: /talks/sally_kohn_don_t_like_clickbait_don_t_click
sleep 1 seconds to avoid blocking
------<1933>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SalmanKhan_2011.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=khan+academy+is+most+known+for+its+its+collection+of+videos+so+before+i+go+any+further
found 1 videos: [['/talks/sal_khan_let_s_use_video_to_reinvent_education', '2011']]
selected: /talks/sal_khan_let_s_use_video_to_reinvent_education
sleep 1 seconds to avoid blocking
------<1934>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SalmanKhan_2015P.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=talk+about+the+two+ideas+that+at+least+based+on+my+observations+at+khan+academy+are+kind+of+the+core+or+the+key+leverage+points+for+for+learning+and+it+s+the+idea+of+mastery+and+the+idea
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+saw+this+in+the+early+days+working+with+my+cousins+a+lot+of+them+were+having+trouble+with+math+at+first+because+they+had+all+of+these+gaps+accumulated+in+their+in+their+learning+and+because+of+that+at+some+point+they+got
found 1 videos: [['/talks/sal_khan_let_s_teach_for_mastery_not_test_scores', '2016']]
selected: /talks/sal_khan_let_s_teach_for_mastery_not_test_scores
sleep 2 seconds to avoid blocking
------<1935>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SalvatoreIaconesi_2013P.stm
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=brain+cancer+was+really+as+you+can+imagine+shocking+news+for+me++i+knew+nothing+about+cancer++in
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=western+cultures++when+you+have+cancer+it+s+as+if+you+disappear+in+a+way+your+life+as+a+complex
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=lab+values+a+list+of+medicines
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+everyone+changes+as+well+you+suddenly+become+a+disease+on+legs+doctors+start+speaking
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+language+which+you+don+t+understand+they+start
error: request timeout
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=start+dealing+with+the+disease++instead+of
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+the+human+being++they+say+what+did+the+doctor+say+before+even+saying+hello
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+in+the+meanwhile+you+re+left+with+questions+to+which
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=nobody+gives+an+answer+these+are+the+can+i+questions+can+i+work+while+i+have+cancer
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=can+i+study++can+i+make+love+can+i+be+creative
error: request timeout
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+wonder+what+have+i+done+to+deserve+this+you+wonder+can+i+change+something
found 8 videos: [['/talks/mac_barnett_why_a_good_book_is_a_secret_door', '2014'], ['/talks/martin_pistorius_how_my_mind_came_back_to_life_and_no_one_knew', '2015'], ['/talks/salvatore_iaconesi_what_happened_when_i_open_sourced_my_brain_cancer', '2015'], ['/talks/kristen_marhaver_how_we_re_growing_baby_corals_to_rebuild_reefs', '2015'], ['/talks/andrew_solomon_how_the_worst_moments_in_our_lives_make_us_who_we_are', '2014'], ['/talks/verna_myers_how_to_overcome_our_biases_walk_boldly_toward_them', '2014'], ['/talks/marc_abrahams_a_science_award_that_makes_you_laugh_then_think', '2014'], ['/talks/michael_metcalfe_we_need_money_for_aid_so_let_s_print_it', '2014']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=doctors+are+the+good+guys+in
found 12 videos: [['/talks/richard_weller_could_the_sun_be_good_for_your_heart', '2013'], ['/talks/margaret_heffernan_the_dangers_of_willful_blindness', '2013'], ['/talks/ivan_oransky_are_we_over_medicalized', '2012'], ['/talks/tal_golesworthy_how_i_repaired_my_own_heart', '2012'], ['/talks/janine_shepherd_a_broken_body_isn_t_a_broken_person', '2012'], ['/talks/danny_hillis_understanding_cancer_through_proteomics', '2011'], ['/talks/srdja_popovic_how_to_topple_a_dictator', '2011'], ['/talks/bruce_feiler_the_council_of_dads', '2011'], ['/talks/amanda_bennett_we_need_a_heroic_narrative_for_death', '2013'], ['/talks/gary_slutkin_let_s_treat_violence_like_a_contagious_disease', '2013'], ['/talks/salvatore_iaconesi_what_happened_when_i_open_sourced_my_brain_cancer', '2015'], ['/talks/nancy_kanwisher_a_neural_portrait_of_the_human_mind', '2014']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+these+scenarios++because+they+are+very+professional+and+dedicated+to+to+curing+you++but+they+also
found 1 videos: [['/talks/salvatore_iaconesi_what_happened_when_i_open_sourced_my_brain_cancer', '2015']]
selected: /talks/salvatore_iaconesi_what_happened_when_i_open_sourced_my_brain_cancer
sleep 2 seconds to avoid blocking
------<1936>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SamanthaNutt_2015P.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thank+you+very+much+good+evening+some+of+you+may+have+noticed+that+my+last+name+is+nutt
found 1 videos: [['/talks/samantha_nutt_the_real_harm_of_the_global_arms_trade', '2016']]
selected: /talks/samantha_nutt_the_real_harm_of_the_global_arms_trade
sleep 4 seconds to avoid blocking
------<1937>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SamanthaPower_2008.stm
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+better+part+of+a+decade+looking+at
found 8 videos: [['/talks/jane_mcgonigal_gaming_can_make_a_better_world', '2010'], ['/talks/sherwin_nuland_the_extraordinary_power_of_ordinary_people', '2009'], ['/talks/geoff_mulgan_post_crash_investing_in_a_better_world', '2009'], ['/talks/stephen_wolfram_computing_a_theory_of_all_knowledge', '2010'], ['/talks/kevin_kelly_the_next_5_000_days_of_the_web', '2008'], ['/talks/stewart_brand_4_environmental_heresies', '2009'], ['/talks/paul_maccready_nature_vs_humans', '2008'], ['/talks/brene_brown_the_power_of_vulnerability', '2010']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=american+responses+to+mass+atrocity+and+genocide++and
found 1 videos: [['/talks/samantha_power_a_complicated_hero_in_the_war_on_dictatorship', '2008']]
selected: /talks/samantha_power_a_complicated_hero_in_the_war_on_dictatorship
sleep 1 seconds to avoid blocking
------<1938>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SamHarris_2010.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+speak+today+about+the+relationship+between+science+and+human+values+now+it+s+generally+understood+that+that+questions+of+morality
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=questions+of+good+and+evil+and+right+and+wrong+are+questions+about+which+science+officially+has+no+opinion+it+s+thought
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+science+can+can+help+us+get+what+we+value++but+it+can+never+tell+us+what+we+ought+to+value+and+consequently+most+people+i+think+most+people+probably+here
found 1 videos: [['/talks/sam_harris_science_can_answer_moral_questions', '2010']]
selected: /talks/sam_harris_science_can_answer_moral_questions
sleep 2 seconds to avoid blocking
------<1939>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SamHarris_2016T.stm
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+many+of+us+suffer+from+it+s+really+a+failure+to+detect+a+certain+kind+of+danger+i+m+going+to+describe+a+scenario+that+i+think+is+both
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+likely+to+occur++and+that+s+not+a+good+combination+as+it+turns+out
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+yet+rather+than+be+scared+most+of+you+will+feel+that+what+i+m+talking+about+is+kind+of+cool+i+m+going
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+describe+how+the+gains+we+make+in+artificial+intelligence+could+ultimately+destroy+us+and+in+fact+i+think+it+s+very+difficult+to+see+how+they+won+t+destroy+us
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+inspire+us+to+destroy+ourselves++and+yet+if+you+re
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=find+that+it+s+fun+to+think+about+these+things
found 10 videos: [['/talks/dustin_yellin_a_journey_through_the_mind_of_an_artist', '2015'], ['/talks/jonathan_haidt_can_a_divided_america_heal', '2016'], ['/talks/adam_driver_my_journey_from_marine_to_actor', '2016'], ['/talks/kate_adams_4_larger_than_life_lessons_from_soap_operas', '2016'], ['/talks/rich_benjamin_my_road_trip_through_the_whitest_towns_in_america', '2015'], ['/talks/harry_baker_a_love_poem_for_lonely_prime_numbers', '2015'], ['/talks/elon_musk_the_future_we_re_building_and_boring', '2017'], ['/talks/david_kwong_two_nerdy_obsessions_meet_and_it_s_magic', '2014'], ['/talks/gary_haugen_the_hidden_reason_for_poverty_the_world_needs_to_address_now', '2015'], ['/talks/yanis_varoufakis_capitalism_will_eat_democracy_unless_we_speak_up', '2016']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+that+response+is+part+of+the+problem+ok+that+response+should+worry+you+and+if+i+were+to+convince+you+in+this+talk
found 3 videos: [['/talks/sam_harris_can_we_build_ai_without_losing_control_over_it', '2016'], ['/talks/gretchen_carlson_david_brooks_political_common_ground_in_a_polarized_united_states', '2017'], ['/talks/yuval_noah_harari_nationalism_vs_globalism_the_new_political_divide', '2017']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+we+were+likely+to+suffer+a+global+famine+either+because+of+climate+change+or+some+other+catastrophe
found 1 videos: [['/talks/sam_harris_can_we_build_ai_without_losing_control_over_it', '2016']]
selected: /talks/sam_harris_can_we_build_ai_without_losing_control_over_it
sleep 4 seconds to avoid blocking
------<1940>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SamKass_2015P.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+am+a+chef+and+a+food+policy+guy
found 3 videos: [['/talks/sam_kass_want_kids_to_learn_well_feed_them_well', '2017'], ['/talks/suzanne_barakat_islamophobia_killed_my_brother_let_s_end_the_hate', '2016'], ['/talks/leah_chase_and_pat_mitchell_an_interview_with_the_queen_of_creole_cuisine', '2017']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+come+from+a+whole+family+of+teachers+my+sister+is+a+special+ed+teacher+in+chicago+my+father+just+retired
found 1 videos: [['/talks/sam_kass_want_kids_to_learn_well_feed_them_well', '2017']]
selected: /talks/sam_kass_want_kids_to_learn_well_feed_them_well
sleep 1 seconds to avoid blocking
------<1941>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SamMartin_2009G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+am+indeed+going+to+talk+about+the+spaces+men+create+for+themselves+but+first+i+want+to+tell+you+why+i+m+here+i+m+here+for+two+reasons+these+two+guys+are+my+two+sons+ford
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+wren+when+ford+was+about+three+years+old+we+shared+a+very+small+room+together+in+a+very+small+space
found 1 videos: [['/talks/sam_martin_claim_your_manspace', '2009']]
selected: /talks/sam_martin_claim_your_manspace
sleep 2 seconds to avoid blocking
------<1942>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SamRichards_2010X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+the+study+of+the+way+in+which+human+beings+are+shaped+by+things+that+they+don+t+see+and+they+say
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+can+i+be+a+sociologist++how+can+i+understand+those+invisible+forces+and+i+say+empathy+start
found 1 videos: [['/talks/sam_richards_a_radical_experiment_in_empathy', '2011']]
selected: /talks/sam_richards_a_radical_experiment_in_empathy
sleep 4 seconds to avoid blocking
------<1943>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SamuelCohen_2015S.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hundred+and+one+a+woman+called+auguste+was+taken+to+a+medical+asylum+in+frankfurt
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=auguste+was+delusional+and+couldn+t+remember+even+the+most+basic+details+of+her+life
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=alois+didn+t+know+how+to+help+auguste
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+he+watched+over+her+until+sadly+she+passed+away+in+one+thousand+nine+hundred+and+six
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=after+she+died+alois+performed+an+autopsy+and+found+strange+plaques+and+tangles+in+auguste+s+brain+the+likes+of+which+he+d+never+seen+before
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+here+s+the+even+more+striking+thing
found 1 videos: [['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013']]
selected: /talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all
sleep 2 seconds to avoid blocking
------<1944>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SandiToksvig_2016W.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=excited+to+be+here+everything+in+america+is+so+much+bigger+than+in+europe+look+at+me+i+am+huge
found 1 videos: [['/talks/sandi_toksvig_a_political_party_for_women_s_equality', '2016']]
selected: /talks/sandi_toksvig_a_political_party_for_women_s_equality
sleep 3 seconds to avoid blocking
------<1945>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SandraAamodt_2013G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=three+and+a+half+years+ago++i+made+one+of+the+best+decisions+of+my+life
found 12 videos: [['/talks/roselinde_torres_what_it_takes_to_be_a_great_leader', '2014'], ['/talks/shaka_senghor_why_your_worst_deeds_don_t_define_you', '2014'], ['/talks/jeff_speck_the_walkable_city', '2013'], ['/talks/scott_dinsmore_how_to_find_work_you_love', '2015'], ['/talks/sandra_aamodt_why_dieting_doesn_t_usually_work', '2014'], ['/talks/catarina_mota_play_with_smart_materials', '2013'], ['/talks/antonio_guterres_refugees_have_the_right_to_be_protected', '2015'], ['/talks/talithia_williams_own_your_body_s_data', '2014'], ['/talks/paul_zak_trust_morality_and_oxytocin', '2011'], ['/talks/tali_sharot_the_optimism_bias', '2012'], ['/talks/noreena_hertz_how_to_use_experts_and_when_not_to', '2011'], ['/talks/lord_nicholas_stern_the_state_of_the_climate_and_what_we_might_do_about_it', '2014']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+my+new+year+s+resolution++i+gave+up+dieting+stopped+worrying+about+my+weight+and+learned+to+eat+mindfully
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+i+eat+whenever+i+m+hungry
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+ve+lost+ten+pounds++this+was+me
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+age+thirteen+when+i+started+my+first+diet++i+look+at+that+picture+now++and+i+think
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+did+not+need+a+diet+you+needed+a+fashion+consult
found 1 videos: [['/talks/sandra_aamodt_why_dieting_doesn_t_usually_work', '2014']]
selected: /talks/sandra_aamodt_why_dieting_doesn_t_usually_work
sleep 2 seconds to avoid blocking
------<1946>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SandrineThuret_2015S.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=still+some+confusion+about+that+question+as+this+is+a+fairly+new+field+of+research+for+example++i+was+talking+to+one+of+my
found 1 videos: [['/talks/sandrine_thuret_you_can_grow_new_brain_cells_here_s_how', '2015']]
selected: /talks/sandrine_thuret_you_can_grow_new_brain_cells_here_s_how
sleep 2 seconds to avoid blocking
------<1947>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SanfordBiggers_2016U.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+a+conceptual+artist+i+m+constantly+looking+for+creative+ways+to+spark+challenging+conversations
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+do+this+though+painting+sculpture+video+and+performance++but+regardless+of+the+format+two+of+my+favorite+materials
found 1 videos: [['/talks/sanford_biggers_an_artist_s_unflinching_look_at_racial_violence', '2016']]
selected: /talks/sanford_biggers_an_artist_s_unflinching_look_at_racial_violence
sleep 1 seconds to avoid blocking
------<1948>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SangeetaBhatia_2015P.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+space+that+used+to+house+one+transistor+we+can+now+fit+one+billion
found 1 videos: [['/talks/sangeeta_bhatia_this_tiny_particle_could_roam_your_body_to_find_tumors', '2016']]
selected: /talks/sangeeta_bhatia_this_tiny_particle_could_roam_your_body_to_find_tumors
sleep 5 seconds to avoid blocking
------<1949>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SanguDelle_2014G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=traditional+prescriptions+for+growth+in+africa
found 1 videos: [['/talks/sangu_delle_in_praise_of_macro_yes_macro_finance_in_africa', '2015']]
selected: /talks/sangu_delle_in_praise_of_macro_yes_macro_finance_in_africa
sleep 1 seconds to avoid blocking
------<1950>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SanguDelle_2017S.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+my+first+time+eating+nigerian
found 5 videos: [['/talks/sangu_delle_there_s_no_shame_in_taking_care_of_your_mental_health', '2017'], ['/talks/michael_rain_what_it_s_like_to_be_the_child_of_immigrants', '2018'], ['/talks/greta_thunberg_the_disarming_case_to_act_right_now_on_climate_change', '2019'], ['/talks/sebastian_junger_our_lonely_society_makes_it_hard_to_come_home_from_war', '2016'], ['/talks/yuval_noah_harari_nationalism_vs_globalism_the_new_political_divide', '2017']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=through+a+lot+of+personal+turmoil+faced+with+enormous+stress++i+suffered+an+anxiety+attack
found 1 videos: [['/talks/sangu_delle_there_s_no_shame_in_taking_care_of_your_mental_health', '2017']]
selected: /talks/sangu_delle_there_s_no_shame_in_taking_care_of_your_mental_health
sleep 2 seconds to avoid blocking
------<1951>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SanjayDastoor_2013.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=today+i+m+going+to+show+you+an+electric+vehicle
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+weighs+less+than+a+bicycle+that
found 6 videos: [['/talks/sanjay_dastoor_a_skateboard_with_a_boost', '2013'], ['/talks/todd_kuiken_a_prosthetic_arm_that_feels', '2011'], ['/talks/mick_cornett_how_an_obese_town_lost_a_million_pounds', '2014'], ['/talks/handspring_puppet_co_the_genius_puppetry_behind_war_horse', '2011'], ['/talks/david_epstein_are_athletes_really_getting_faster_better_stronger', '2014'], ['/talks/bruce_feiler_the_council_of_dads', '2011']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+carry+with+you+anywhere+that+you+can+charge+off+a+normal+wall+outlet+in+fifteen+minutes+and+you+can+run+it+for+one+thousand
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+about+a+dollar+of+electricity
found 7 videos: [['/talks/patricia_ryan_don_t_insist_on_english', '2011'], ['/talks/amory_lovins_a_40_year_plan_for_energy', '2012'], ['/talks/sanjay_dastoor_a_skateboard_with_a_boost', '2013'], ['/talks/hans_and_ola_rosling_how_not_to_be_ignorant_about_the_world', '2014'], ['/talks/steve_ramirez_and_xu_liu_a_mouse_a_laser_beam_a_manipulated_memory', '2013'], ['/talks/bunker_roy_learning_from_a_barefoot_movement', '2011'], ['/talks/vicki_arroyo_let_s_prepare_for_our_new_climate', '2012']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+when+i+say+the+word+electric+vehicle
found 12 videos: [['/talks/sanjay_dastoor_a_skateboard_with_a_boost', '2013'], ['/talks/bill_ford_a_future_beyond_traffic_gridlock', '2011'], ['/talks/andreas_raptopoulos_no_roads_there_s_a_drone_for_that', '2013'], ['/talks/chris_urmson_how_a_driverless_car_sees_the_road', '2015'], ['/talks/gabe_zichermann_how_games_make_kids_smarter', '2011'], ['/talks/amory_lovins_a_40_year_plan_for_energy', '2012'], ['/talks/elon_musk_the_mind_behind_tesla_spacex_solarcity', '2013'], ['/talks/dale_dougherty_we_are_makers', '2011'], ['/talks/david_mackay_a_reality_check_on_renewables', '2012'], ['/talks/jennifer_granholm_a_clean_energy_proposal_race_to_the_top', '2013'], ['/talks/cesar_harada_how_i_teach_kids_to_love_science', '2015'], ['/talks/lord_nicholas_stern_the_state_of_the_climate_and_what_we_might_do_about_it', '2014']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+think+about+vehicles+they+think+about+cars+and+motorcycles+and+bicycles+and+the+vehicles+that+you+use+every+day++but+if+you+come+about+it+from+a+different+perspective
found 1 videos: [['/talks/sanjay_dastoor_a_skateboard_with_a_boost', '2013']]
selected: /talks/sanjay_dastoor_a_skateboard_with_a_boost
sleep 4 seconds to avoid blocking
------<1952>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SanjayPradhan_2012G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=grew+up+in+bihar+india+s+poorest+state
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+remember+when+i+was+six+years+old++i+remember+coming+home+one+day
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+find+a+cart+full+of+the+most+delicious+sweets+at+our+doorstep
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+brothers+and+i+dug+in+and+that+s+when+my+father+came+home
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+was+livid++and+i+still+remember+how+we+cried
error: request timeout
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=half+eaten+sweets+was+pulled+away+from+us+later
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+understood+why+my+father+got+so+upset+those+sweets+were+a+bribe
found 1 videos: [['/talks/sanjay_pradhan_how_open_data_is_changing_international_aid', '2012']]
selected: /talks/sanjay_pradhan_how_open_data_is_changing_international_aid
sleep 4 seconds to avoid blocking
------<1953>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SarahBergbreiter_2014Y.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+students+and+i+work+on+very+tiny+robots+now+you+can+think+of+these+as+robotic+versions+of+something+that+you+re+all+very+familiar+with+an+ant
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+all+know+that+ants+and+other+insects+at+this+size+scale+can+do+some+pretty+incredible+things+we+ve+all+seen+a+group+of+ants+or+some+version+of+that
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+carting+off+your+potato+chip+at+a+picnic+for+example++but+what+are+the+real+challenges
found 1 videos: [['/talks/sarah_bergbreiter_why_i_make_robots_the_size_of_a_grain_of_rice', '2015']]
selected: /talks/sarah_bergbreiter_why_i_make_robots_the_size_of_a_grain_of_rice
sleep 5 seconds to avoid blocking
------<1954>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SarahGray_2015P.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+three+months+pregnant+with+twins+when+my+husband+ross+and+i+went+to+my+second+sonogram
found 1 videos: [['/talks/sarah_gray_how_my_son_s_short_life_made_a_lasting_difference', '2016']]
selected: /talks/sarah_gray_how_my_son_s_short_life_made_a_lasting_difference
sleep 3 seconds to avoid blocking
------<1955>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SarahJayneBlakemore_2012G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+widely+assumed+that+the+vast+majority+of+brain+development+takes+place+in+the+first+few+years+of+life
found 1 videos: [['/talks/sarah_jayne_blakemore_the_mysterious_workings_of_the_adolescent_brain', '2012']]
selected: /talks/sarah_jayne_blakemore_the_mysterious_workings_of_the_adolescent_brain
sleep 1 seconds to avoid blocking
------<1956>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SarahJones_2009.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+should+tell+you+that+when+i+was+asked+to+be+here++i+thought+to+myself+that+well++it+s+ted++and+these+tedsters+are+you+know
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+innocent+as+that+name+sounds+these+are+the
found 7 videos: [['/talks/beverly_dereck_joubert_life_lessons_from_big_cats', '2010'], ['/talks/rebecca_saxe_how_we_read_each_other_s_minds', '2009'], ['/talks/karen_tse_how_to_stop_torture', '2011'], ['/talks/eric_whitacre_a_virtual_choir_2_000_voices_strong', '2011'], ['/talks/sarah_jones_a_one_woman_global_village', '2009'], ['/talks/eames_demetrios_the_design_genius_of_charles_ray_eames', '2009'], ['/talks/rachel_sussman_the_world_s_oldest_living_things', '2010']]
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=scientists+who+sort+of+shape+our+world+and+what+could+i+possibly+have+to+say+that+would+be+distinguished+enough+to+justify+my+participation+in+something+like+that+and+so+i+thought+perhaps+a+really
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=civilized+sounding+british+accent+might+help+things+a+bit+and+then+i+thought+no+no+i+should+just+get+up+there+and+be+myself+and+and+just+talk+the+way+i+really+talk+because+after+all+this
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+i+thought+i+d+come+up+here+and+unveil+my+real+voice+to+you++although+many+of+you+already+know+that+i+do+speak+the+queen+s+english+because+i+am+from+queens+new+york
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+the+theme+of+this+session+of+course+is+invention+and+while
found 3 videos: [['/talks/sarah_jones_a_one_woman_global_village', '2009'], ['/talks/malcolm_gladwell_the_strange_tale_of_the_norden_bombsight', '2011'], ['/talks/thom_mayne_how_architecture_can_connect_us', '2007']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+don+t+have+any+patents+that+i+m+aware+of
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+will+be+meeting+a+few+of+my+inventions+today
found 7 videos: [['/talks/sarah_jones_a_one_woman_global_village', '2009'], ['/talks/anil_gupta_india_s_hidden_hotbeds_of_invention', '2010'], ['/talks/roy_gould_curtis_wong_a_preview_of_the_worldwide_telescope', '2008'], ['/talks/louise_fresco_we_need_to_feed_the_whole_world', '2009'], ['/talks/p_w_singer_military_robots_and_the_future_of_war', '2009'], ['/talks/peter_hirshberg_the_web_is_more_than_better_tv', '2008'], ['/talks/clay_shirky_institutions_vs_collaboration', '2008']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+suppose+it+s+fair+to+say+that+i+am+interested+in+the+invention
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+re+all+born+into+certain+circumstances+with+particular+physical+traits+unique+developmental+experiences+geographical+and+historical+contexts++but+then+what
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+how+mutable+is+that+identity+like+what+if+one+could+be+anyone+at+any
found 1 videos: [['/talks/sarah_jones_a_one_woman_global_village', '2009']]
selected: /talks/sarah_jones_a_one_woman_global_village
sleep 5 seconds to avoid blocking
------<1957>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SarahJones_2014.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=first+of+all+for+those+of+you+who+are+not+familiar+with+my+work+i+create+multicultural+characters+so+characters+from+lots+of+different+backgrounds
found 1 videos: [['/talks/sarah_jones_what_does_the_future_hold_11_characters_offer_quirky_answers', '2014']]
selected: /talks/sarah_jones_what_does_the_future_hold_11_characters_offer_quirky_answers
sleep 5 seconds to avoid blocking
------<1958>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SarahJones_2015.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+my+first+since+bridge+and+tunnel+which+i+did+on+broadway+and+this
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+thank+you+i+ve+excerpted+it+just+for+you+so+here+we+go
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=right+class+let+s+be+absolutely+certain+all+electronic+devices+are+switched+off+before+we+begin
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+ll+recognize+what+you+just+heard+me+say+as+the+very+good++the+cellular+phone+announcement+right+this+was+also+known+as+a+mobile
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+of+that+era+would+have+had
found 17 videos: [['/talks/anand_giridharadas_a_letter_to_all_who_have_lost_in_this_era', '2016'], ['/talks/tomas_saraceno_would_you_live_in_a_floating_city_in_the_sky', '2017'], ['/talks/jim_hemerling_5_ways_to_lead_in_an_era_of_constant_change', '2016'], ['/talks/cathy_o_neil_the_era_of_blind_faith_in_big_data_must_end', '2017'], ['/talks/charmian_gooch_my_wish_to_launch_a_new_era_of_openness_in_business', '2014'], ['/talks/sebastian_kraves_the_era_of_personal_dna_testing_is_here', '2016'], ['/talks/alastair_parvin_architecture_for_the_people_by_the_people', '2013'], ['/talks/harry_cliff_have_we_reached_the_end_of_physics', '2016'], ['/talks/kamau_gachigi_success_stories_from_kenya_s_first_makerspace', '2017'], ['/talks/rachel_botsman_we_ve_stopped_trusting_institutions_and_started_trusting_strangers', '2016'], ['/talks/theo_e_j_wilson_a_black_man_goes_undercover_in_the_alt_right', '2017'], ['/talks/marlon_peterson_am_i_not_human_a_call_for_criminal_justice_reform', '2017'], ['/talks/gerard_ryle_how_the_panama_papers_journalists_broke_the_biggest_leak_in_history', '2016'], ['/talks/erin_marie_saltman_how_young_people_join_violent_extremist_groups_and_how_to_stop_them', '2017'], ['/talks/alex_gendler_history_vs_christopher_columbus', '2014'], ['/talks/esther_perel_rethinking_infidelity_a_talk_for_anyone_who_has_ever_loved', '2015'], ['/talks/maurice_conti_the_incredible_inventions_of_intuitive_ai', '2017']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=an+external+electronic+device+right+something+like+this
found 1 videos: [['/talks/sarah_jones_one_woman_five_characters_and_a_sex_lesson_from_the_future', '2015']]
selected: /talks/sarah_jones_one_woman_five_characters_and_a_sex_lesson_from_the_future
sleep 3 seconds to avoid blocking
------<1959>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SarahKay_2011.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+i+should+have+a+daughter
found 9 videos: [['/talks/sarah_kay_if_i_should_have_a_daughter', '2011'], ['/talks/hawa_abdi_deqo_mohamed_mother_and_daughter_doctor_heroes', '2011'], ['/talks/angela_patton_a_father_daughter_dance_in_prison', '2013'], ['/talks/brenda_romero_gaming_for_understanding', '2012'], ['/talks/sheryl_sandberg_why_we_have_too_few_women_leaders', '2010'], ['/talks/amy_webb_how_i_hacked_online_dating', '2013'], ['/talks/eve_ensler_embrace_your_inner_girl', '2010'], ['/talks/alanna_shaikh_how_i_m_preparing_to_get_alzheimer_s', '2012'], ['/talks/sam_harris_science_can_answer_moral_questions', '2010']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=instead+of+mom+she+s+going+to+call+me+point+b
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+that+way+she+knows+that+no+matter+what+happens+at+least+she+can+always+find+her+way
found 14 videos: [['/talks/sarah_kay_if_i_should_have_a_daughter', '2011'], ['/talks/rufus_griscom_alisa_volkman_let_s_talk_parenting_taboos', '2010'], ['/talks/srikumar_rao_plug_into_your_hard_wired_happiness', '2010'], ['/talks/john_lloyd_an_inventory_of_the_invisible', '2009'], ['/talks/peter_saul_let_s_talk_about_dying', '2012'], ['/talks/janine_shepherd_a_broken_body_isn_t_a_broken_person', '2012'], ['/talks/c_k_williams_poetry_of_youth_and_age', '2009'], ['/talks/peter_attia_is_the_obesity_crisis_hiding_a_bigger_problem', '2013'], ['/talks/amy_webb_how_i_hacked_online_dating', '2013'], ['/talks/meg_jay_why_30_is_not_the_new_20', '2013'], ['/talks/johanna_blakley_lessons_from_fashion_s_free_culture', '2010'], ['/talks/seth_godin_the_tribes_we_lead', '2009'], ['/talks/dean_kamen_the_emotion_behind_invention', '2010'], ['/talks/dan_buettner_how_to_live_to_be_100', '2010']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+m+going+to+paint+solar+systems+on+the+backs+of+her+hands+so+she+has+to+learn+the+entire+universe+before+she+can+say+oh+i+know+that+like+the+back+of+my+hand
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+she+s+going+to+learn+that+this+life+will+hit+you+hard+in+the+face++wait+for+you+to+get+back+up+just+so+it+can+kick+you+in+the+stomach++but+getting+the+wind+knocked+out+of+you+is+the+only+way+to+remind+your+lungs+how+much+they+like+the+taste+of+air
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+cannot+be+fixed+by+band+aids+or+poetry+so+the+first+time+she+realizes+that+wonder+woman+isn+t+coming+i+ll+make+sure+she+knows+she+doesn+t+have+to+wear+the+cape+all+by+herself+because+no+matter
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+wide+you+stretch+your+fingers+your+hands+will+always+be+too+small+to+catch+all+the+pain+you+want+to+heal++believe+me+i+ve+tried
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=just+smelling+for+smoke+so+you+can+follow+the+trail+back+to+a+burning+house+so+you+can+find+the+boy+who+lost+everything+in+the+fire+to+see+if+you+can+save+him
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+else+find+the+boy+who+lit+the+fire+in+the+first+place+to+see+if+you+can+change+him++but+i+know+she+will+anyway+so+instead+i+ll
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=always+keep+an+extra+supply+of+chocolate+and+rain+boots+nearby+because+there+is+no+heartbreak+that+chocolate+can+t+fix
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=okay+there+s+a+few+that+chocolate+can+t+fix+but+that+s+what+the+rain+boots+are+for
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=rain+will+wash+away+everything+if+you+let+it+i+want+her+to+look+at+the+world+through+the+underside+of+a+glass+bottom+boat+to+look+through+a+microscope+at+the+galaxies+that+exist+on+the+pinpoint+of+a+human+mind+because
found 1 videos: [['/talks/sarah_kay_if_i_should_have_a_daughter', '2011']]
selected: /talks/sarah_kay_if_i_should_have_a_daughter
sleep 4 seconds to avoid blocking
------<1960>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SarahKay_2011X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=moon+sees+me+the+moon+sees+somebody+that
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+don+t+see+god+bless+the+moon+and+god+bless+me
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+god+bless+the+somebody+that+i+don+t+see
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+i+get+to+heaven+before+you+do+i+ll+make+a+hole
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+pull+you+through++and+i+ll+write+your+name+on+every+star
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=won+t+seem+so+far++the+astronaut
found 1 videos: [['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013']]
selected: /talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all
sleep 4 seconds to avoid blocking
------<1961>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SarahLewis_2014.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+feel+so+fortunate+that+my+first+job+was+working+at+the+museum+of+modern+art+on+a+retrospective+of+painter+elizabeth+murray
found 1 videos: [['/talks/sarah_lewis_embrace_the_near_win', '2014']]
selected: /talks/sarah_lewis_embrace_the_near_win
sleep 4 seconds to avoid blocking
------<1962>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SarahParcak_2012U.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+child+growing+up+in+maine++one+of+my+favorite+things+to+do+was+to+look+for+sand+dollars+on+the+seashores+of+maine++because+my+parents+told+me+it+would+bring+me+luck
found 1 videos: [['/talks/sarah_parcak_archaeology_from_space', '2012']]
selected: /talks/sarah_parcak_archaeology_from_space
sleep 4 seconds to avoid blocking
------<1963>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SarahParcak_2016.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+an+archaeologist++i+m+most+often+asked+what+my+favorite+discovery+is+the+answer+s+easy+my+husband+greg
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+met+in+egypt+on+my+first+dig++it+was+my+first+lesson+in+finding+unexpected
found 1 videos: [['/talks/sarah_parcak_help_discover_ancient_ruins_before_it_s_too_late', '2017']]
selected: /talks/sarah_parcak_help_discover_ancient_ruins_before_it_s_too_late
sleep 2 seconds to avoid blocking
------<1964>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SarahParcak_2016T.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=yale+graduate+and+professor+set+out+from+his+rainforest+camp+with+his+team
found 1 videos: [['/talks/sarah_parcak_hunting_for_peru_s_lost_civilizations_with_satellites', '2016']]
selected: /talks/sarah_parcak_hunting_for_peru_s_lost_civilizations_with_satellites
sleep 3 seconds to avoid blocking
------<1965>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SaraLewis_2014.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+a+scientist++and+also+as+a+human+being+i+ve+been+trying+to+make+myself+susceptible+to+wonder
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+jason+webley+last+night+called+it+conspiring+to+be+part+of+the+magic+so+it+s+fortunate+that+my
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=career+as+a+biologist+lets+me+dive+deeply+into+the+lives+of+some+truly+wondrous+creatures
found 1 videos: [['/talks/sara_lewis_the_loves_and_lies_of_fireflies', '2014']]
selected: /talks/sara_lewis_the_loves_and_lies_of_fireflies
sleep 2 seconds to avoid blocking
------<1966>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SaraRamirez_2015P.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=can+be+hell+you+can+grab+the
found 12 videos: [['/talks/jane_mcgonigal_massively_multi_player_thumb_wrestling', '2013'], ['/talks/curtis_wall_street_carroll_how_i_learned_to_read_and_trade_stocks_in_prison', '2017'], ['/talks/sara_ramirez_rollercoaster', '2017'], ['/talks/lawrence_lessig_we_the_people_and_the_republic_we_must_reclaim', '2013'], ['/talks/linus_torvalds_the_mind_behind_linux', '2016'], ['/talks/meron_gribetz_a_glimpse_of_the_future_through_an_augmented_reality_headset', '2016'], ['/talks/thomas_peschak_dive_into_an_ocean_photographer_s_world', '2016'], ['/talks/rodney_brooks_why_we_will_rely_on_robots', '2013'], ['/talks/boyd_varty_what_i_learned_from_nelson_mandela', '2013'], ['/talks/james_patten_the_best_computer_interface_maybe_your_hands', '2014'], ['/talks/claudio_guerra_why_the_octopus_brain_is_so_extraordinary', '2015'], ['/talks/vijay_kumar_the_future_of_flying_robots', '2015']]
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+tell+you+this+one+thing
found 16 videos: [['/talks/emilie_wapnick_why_some_of_us_don_t_have_one_true_calling', '2015'], ['/talks/martin_pistorius_how_my_mind_came_back_to_life_and_no_one_knew', '2015'], ['/talks/gautam_bhan_a_bold_plan_to_house_100_million_people', '2017'], ['/talks/jimmy_nelson_gorgeous_portraits_of_the_world_s_vanishing_people', '2015'], ['/talks/jackson_bird_how_to_talk_and_listen_to_transgender_people', '2017'], ['/talks/alexander_wagner_what_really_motivates_people_to_be_honest_in_business', '2017'], ['/talks/roman_mars_why_city_flags_may_be_the_worst_designed_thing_you_ve_never_noticed', '2015'], ['/talks/alex_gendler_can_you_solve_the_famously_difficult_green_eyed_logic_puzzle', '2015'], ['/talks/alan_smith_why_you_should_love_statistics', '2017'], ['/talks/carolyn_bertozzi_what_the_sugar_coating_on_your_cells_is_trying_to_tell_you', '2017'], ['/talks/tristan_harris_how_a_handful_of_tech_companies_control_billions_of_minds_every_day', '2017'], ['/talks/celeste_headlee_10_ways_to_have_a_better_conversation', '2016'], ['/talks/stella_young_i_m_not_your_inspiration_thank_you_very_much', '2014'], ['/talks/mia_birdsong_the_story_we_tell_about_poverty_isn_t_true', '2015'], ['/talks/glenn_greenwald_why_privacy_matters', '2014'], ['/talks/liz_hajek_what_rivers_can_tell_us_about_the_earth_s_history', '2017']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=will+make+your+life+complete+so+you+you+give+it+everything+you+got
found 9 videos: [['/talks/johann_hari_everything_you_think_you_know_about_addiction_is_wrong', '2015'], ['/talks/rob_knight_how_our_microbes_make_us_who_we_are', '2015'], ['/talks/miguel_nicolelis_brain_to_brain_communication_has_arrived_how_we_did_it', '2015'], ['/talks/angela_wang_how_china_is_changing_the_future_of_shopping', '2017'], ['/talks/amanda_burden_how_public_spaces_make_cities_work', '2014'], ['/talks/rutger_bregman_poverty_isn_t_a_lack_of_character_it_s_a_lack_of_cash', '2017'], ['/talks/chris_milk_the_birth_of_virtual_reality_as_an_art_form', '2016'], ['/talks/shah_rukh_khan_thoughts_on_humanity_fame_and_love', '2017'], ['/talks/sara_ramirez_rollercoaster', '2017']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+wind+up+on+the+street
found 7 videos: [['/talks/tasos_frantzolas_everything_you_hear_on_film_is_a_lie', '2016'], ['/talks/sara_ramirez_rollercoaster', '2017'], ['/talks/elon_musk_the_future_we_re_building_and_boring', '2017'], ['/talks/adam_driver_my_journey_from_marine_to_actor', '2016'], ['/talks/chris_downey_design_with_the_blind_in_mind', '2013'], ['/talks/paola_antonelli_why_i_brought_pac_man_to_moma', '2013'], ['/talks/bran_ferren_to_create_for_the_ages_let_s_combine_art_and_engineering', '2014']]
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+tell+you+you+re+a+queen
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+lose+your+edge+or+lose+your+cool+they+will+drop
found 3 videos: [['/talks/luvvie_ajayi_jones_get_comfortable_with_being_uncomfortable', '2017'], ['/talks/sara_ramirez_rollercoaster', '2017'], ['/talks/david_gruber_glow_in_the_dark_sharks_and_other_stunning_sea_creatures', '2016']]
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+all+these+words+are+lies+but
found 15 videos: [['/talks/deborah_lipstadt_behind_the_lies_of_holocaust_denial', '2017'], ['/talks/ewandro_magalhaes_how_interpreters_juggle_two_languages_at_once', '2016'], ['/talks/sofia_jawed_wessel_the_lies_we_tell_pregnant_women', '2017'], ['/talks/wilton_l_virgo_how_does_your_smartphone_know_your_location', '2015'], ['/talks/tasos_frantzolas_everything_you_hear_on_film_is_a_lie', '2016'], ['/talks/stephen_bax_the_world_s_most_mysterious_book', '2017'], ['/talks/eleanor_longden_the_voices_in_my_head', '2013'], ['/talks/amy_adkins_who_am_i_a_philosophical_inquiry', '2015'], ['/talks/prumsodun_ok_the_magic_of_khmer_classical_dance', '2017'], ['/talks/robin_morgan_4_powerful_poems_about_parkinson_s_and_growing_older', '2015'], ['/talks/sara_garofalo_the_psychology_behind_irrational_decisions', '2016'], ['/talks/gregory_heyworth_how_i_m_discovering_the_secrets_of_ancient_texts', '2016'], ['/talks/arthur_brooks_a_conservative_s_plea_let_s_work_together', '2016'], ['/talks/esther_perel_the_secret_to_desire_in_a_long_term_relationship', '2013'], ['/talks/karina_galperin_should_we_simplify_spelling', '2017']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=experience+keeps+telling+me+that+the+cautious
found 2 videos: [['/talks/sara_ramirez_rollercoaster', '2017'], ['/talks/elif_shafak_the_revolutionary_power_of_diverse_thought', '2017']]
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
selected: /talks/sara_ramirez_rollercoaster
sleep 3 seconds to avoid blocking
------<1967>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SaraSeager_2015.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+here+to+tell+you+about+the+real+search+for+alien+life
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+little+green+humanoids+arriving+in+shiny+ufos+although+that+would+be+nice++but+it+s+the+search+for+planets+orbiting+stars+far+away
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=every+star+in+our+sky+is+a+sun++and+if+our+sun+has+planets+mercury+venus
found 2 videos: [['/talks/sara_seager_the_search_for_planets_beyond_our_solar_system', '2015'], ['/talks/david_baron_you_owe_it_to_yourself_to_experience_a_total_solar_eclipse', '2017']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=earth+mars++etc+surely+those+other+stars+should+have+planets+also+and+they+do
found 1 videos: [['/talks/sara_seager_the_search_for_planets_beyond_our_solar_system', '2015']]
selected: /talks/sara_seager_the_search_for_planets_beyond_our_solar_system
sleep 5 seconds to avoid blocking
------<1968>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/Saraswati_2009P.stm
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+for+quite+a+long+time
error: request timeout
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+is+endowed+with+an+instinct+to+survive
error: request timeout
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=doubt+the+person+who+tends+the+child
found 3 videos: [['/talks/dayananda_saraswati_the_profound_journey_of_compassion', '2008'], ['/talks/paul_bloom_the_origins_of_pleasure', '2011'], ['/talks/philip_k_howard_four_ways_to_fix_a_broken_legal_system', '2010']]
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+one+surrenders+to+an+anesthesiologist
found 1 videos: [['/talks/dayananda_saraswati_the_profound_journey_of_compassion', '2008']]
selected: /talks/dayananda_saraswati_the_profound_journey_of_compassion
sleep 1 seconds to avoid blocking
------<1969>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SasaVucinic_2005G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=an+event+seen+from+one+point+of+view+gives+one+impression
found 2 videos: [['/talks/sasa_vucinic_why_we_should_invest_in_a_free_press', '2006'], ['/talks/vs_ramachandran_3_clues_to_understanding_your_brain', '2007']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=seen+from+another+point+of+view++it+gives+quite+a+different+impression
found 2 videos: [['/talks/sasa_vucinic_why_we_should_invest_in_a_free_press', '2006'], ['/talks/vs_ramachandran_3_clues_to_understanding_your_brain', '2007']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+it+s+only+when+you+get+the+whole+picture+you+can+fully+understand
found 1 videos: [['/talks/david_pogue_simplicity_sells', '2006']]
selected: /talks/david_pogue_simplicity_sells
sleep 5 seconds to avoid blocking
------<1970>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SaulGriffith_2006.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sort+of+conveniently+encompasses+everything+i+do++and+i+recently+said+that+to+a+venture+capitalist+casually+at+some+some+valley
found 1 videos: [['/talks/saul_griffith_everyday_inventions', '2007']]
selected: /talks/saul_griffith_everyday_inventions
sleep 4 seconds to avoid blocking
------<1971>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SaulGriffith_2009.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+re+at+all+like+me+this+is+what+you+do+with+the+sunny+summer+weekends+in+san+francisco++you+build+experimental+kite+powered+hydrofoils+capable+of+more+than+thirty+knots
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+realize+that+there+is+incredible+power+in+the+wind++and+it+can+do+amazing+things
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+one+day+a+vessel+not+unlike+this+will+probably+break+the+world+speed+record
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+kites+aren+t+just+toys+like+this+kites+i+m+going+to+give+you+a+brief+history+and+tell+you+about+the+magnificent+future+of+every+child+s+favorite+plaything
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+kites+are+more+than+a+thousand+years+old+and+the+chinese+used+them+for+military+applications+and+even+for
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+they+knew+at+that+stage+they+could+carry+large+weights+i+m+not+sure+why+there+is+a+hole+in+this+particular+man
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+one+thousand+eight+hundred+and+twenty+seven+a+fellow+called+george+pocock+actually+pioneered+the+use+of+kites+for+towing+buggies+in+races+against+horse+carriages+across+the+english+countryside
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=then+of+course+at+the+dawn+of+aviation++all+of+the+great+inventors+of+the+time+like+hargreaves+like+langley+even+alexander+graham+bell+inventor+of+the+telephone+who+was+flying+this+kite+were+doing+so+in+the+pursuit+of+aviation
found 1 videos: [['/talks/saul_griffith_high_altitude_wind_energy_from_kites', '2009']]
selected: /talks/saul_griffith_high_altitude_wind_energy_from_kites
sleep 5 seconds to avoid blocking
------<1972>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SayuBhojwani_2016S.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=good+evening+my+journey+to+this+stage+began+when+i+came+to+america+at+the+age+of+seventeen
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+see+i+m+one+of+the+eighty+four+million+americans+who+are+immigrants+or+children+of+immigrants++each+of+us+has+a+dream
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+we+come+here+a+dream+that+usually+has+to+be+rewritten
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+always+has+to+be+repurposed
found 8 videos: [['/talks/sayu_bhojwani_immigrant_voices_make_democracy_stronger', '2016'], ['/talks/vanessa_ruiz_the_spellbinding_art_of_human_anatomy', '2016'], ['/talks/rebecca_brachman_could_a_drug_prevent_depression_and_ptsd', '2016'], ['/talks/dk_osseo_asare_what_a_scrapyard_in_ghana_can_teach_us_about_innovation', '2018'], ['/talks/joe_gebbia_how_airbnb_designs_for_trust', '2016'], ['/talks/anab_jain_why_we_need_to_imagine_different_futures', '2017'], ['/talks/martin_reeves_how_to_build_a_business_that_lasts_100_years', '2016'], ['/talks/kevin_b_jones_why_curiosity_is_the_key_to_science_and_medicine', '2016']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+one+of+the+lucky+ones+my+revised+dream+led+me+to+the+work+i+do+today++training+immigrants+to+run+for+public+office
found 1 videos: [['/talks/sayu_bhojwani_immigrant_voices_make_democracy_stronger', '2016']]
selected: /talks/sayu_bhojwani_immigrant_voices_make_democracy_stronger
sleep 3 seconds to avoid blocking
------<1973>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ScillaElworthy_2012X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=half+a+century+of+trying+to+help+prevent+wars+there+s+one+question
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+never+leaves+me+how+do+we+deal+with+extreme+violence+without+using
found 2 videos: [['/talks/scilla_elworthy_fighting_with_nonviolence', '2012'], ['/talks/iain_hutchison_saving_faces_a_facial_surgeon_s_craft', '2011']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+you+re+faced+with+brutality+whether+it+s+a+child+facing+a+bully+on+a+playground+or+domestic+violence
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+on+the+streets+of+syria+today+facing+tanks+and+shrapnel
found 1 videos: [['/talks/scilla_elworthy_fighting_with_nonviolence', '2012']]
selected: /talks/scilla_elworthy_fighting_with_nonviolence
sleep 4 seconds to avoid blocking
------<1974>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ScottDinsmore_2012X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=wondered+what+this+would+feel+like
found 9 videos: [['/talks/elif_shafak_the_politics_of_fiction', '2010'], ['/talks/shane_koyczan_to_this_day_for_the_bullied_and_beautiful', '2013'], ['/talks/regina_dugan_from_mach_20_glider_to_hummingbird_drone', '2012'], ['/talks/sheena_iyengar_the_art_of_choosing', '2010'], ['/talks/courtney_stephens_a_brief_history_of_melancholy', '2014'], ['/talks/rita_pierson_every_kid_needs_a_champion', '2013'], ['/talks/boyd_varty_what_i_learned_from_nelson_mandela', '2013'], ['/talks/leonard_susskind_my_friend_richard_feynman', '2011'], ['/talks/drew_berry_animations_of_unseeable_biology', '2012']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+eight+years+ago+i+got+the+worst+career+advice+of+my+life+i
found 1 videos: [['/talks/carne_ross_an_independent_diplomat', '2010']]
selected: /talks/carne_ross_an_independent_diplomat
sleep 4 seconds to avoid blocking
------<1975>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ScottFraser_2012X.stm
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+lynwood+california+just+a+few+miles+southeast+of+los+angeles+a+father+came+out+of+his+house
found 1 videos: [['/talks/scott_fraser_why_eyewitnesses_get_it_wrong', '2012']]
selected: /talks/scott_fraser_why_eyewitnesses_get_it_wrong
sleep 5 seconds to avoid blocking
------<1976>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ScottKim_2008P.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+last+twenty+years+i+ve+been+designing+puzzles+and+i+m+here+today+to
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=give+you+a+little+tour+starting+from+the+very+first+puzzle+i+designed+through+what+i+m+doing+now
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+designed+puzzles+for+books++printed+things+i+m+the+puzzle+columnist+for+discover+magazine+i+ve+been+doing+that+for+about+ten+years+i+have+a+monthly+puzzle+calendar++i+do+toys+the+bulk+of+my+work+is+in+computer+games+i+did+puzzles+for+bejeweled
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+didn+t+invent+bejeweled+i+can+t+take+credit+for+that+so+very+first+puzzle++sixth+grade+my+teacher+said
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=oh+let+s+see+that+guy+he+likes+to+make+stuff+i+ll+have+him+cut+out+letters+out+of+construction+paper+for+the
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+thought+this+was+a+great+assignment
found 15 videos: [['/talks/david_carson_design_and_discovery', '2009'], ['/talks/rick_smolan_the_story_of_a_girl', '2008'], ['/talks/martin_seligman_the_new_era_of_positive_psychology', '2008'], ['/talks/scott_kim_the_art_of_puzzles', '2009'], ['/talks/elizabeth_gilbert_your_elusive_creative_genius', '2009'], ['/talks/sherwin_nuland_the_extraordinary_power_of_ordinary_people', '2009'], ['/talks/patrick_chappatte_the_power_of_cartoons', '2010'], ['/talks/dave_eggers_my_wish_once_upon_a_school', '2008'], ['/talks/james_balog_time_lapse_proof_of_extreme_ice_loss', '2009'], ['/talks/jessica_jackley_poverty_money_and_love', '2010'], ['/talks/emily_pilloton_teaching_design_for_change', '2010'], ['/talks/steven_levitt_the_freakonomics_of_crack_dealing', '2006'], ['/talks/wade_davis_dreams_from_endangered_cultures', '2007'], ['/talks/paola_antonelli_design_and_the_elastic_mind', '2008'], ['/talks/william_mcdonough_cradle_to_cradle_design', '2007']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+here+is+what+i+came+up+with+i+start+fiddling+with+it+i+came+up+with+this+letter+this+is+a+letter+of+the+alphabet+that+s+been+folded+just+once
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+question+is+which+letter+is+it+if+i+unfold+it+one+hint++it+s+not
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=yeah++so+clever+thing+now++that+was+my+first+puzzle+i+got+hooked++i+created+something+new+i+was+very+excited+because+you+know+i+d+made+crossword+puzzles+but+that+s+sort+of+like+filling+in+somebody+else+s+matrix
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+was+something+really+original++i+got+hooked+i+read+martin+gardner+s+columns+in+scientific+american+went+on+and+eventually+decided+to+devote+myself+full+time+to+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=pause+and+say+what+do+i+mean+by+puzzle+a+puzzle+is+a+problem+that+is+fun+to+solve
found 1 videos: [['/talks/scott_kim_the_art_of_puzzles', '2009']]
selected: /talks/scott_kim_the_art_of_puzzles
sleep 2 seconds to avoid blocking
------<1977>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ScottMcCloud_2005.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+the+five+senses+vision+is+the+one+that+i+appreciate+the+most+and+it+s+the+one+that+i+can+least+take+for+granted
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+this+is+partially+due+to+my+father+who+was+blind+it+was+a+fact+that+he+didn+t+make+much+of+a+fuss+about+usually+one+time+in+nova+scotia+when+we+went+to+see+a+total+eclipse+of+the+sun
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+as+in+the+carly+simon+song+which
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=may+or+may+not+refer+to+james+taylor++warren+beatty+or+mick+jagger+we+re+not+really+sure+they+handed+out+these+dark+plastic+viewers+that+allowed+us+to+look+directly+at+the+sun+without+damaging+our+eyes
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+dad+got+really+scared+he+didn+t+want+us+doing+that+he+wanted+us+instead+to+use+these+cheap+cardboard+viewers+so+that+there+was+no+chance+at
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+our+eyes+would+be+damaged
found 1 videos: [['/talks/vs_ramachandran_3_clues_to_understanding_your_brain', '2007']]
selected: /talks/vs_ramachandran_3_clues_to_understanding_your_brain
sleep 1 seconds to avoid blocking
------<1978>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SeanCarroll_2010X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+galaxy+the+milky+way+galaxy+there+are+about+a+hundred+billion+stars+in+the+milky+way+galaxy
found 10 videos: [['/talks/andrea_ghez_the_hunt_for_a_supermassive_black_hole', '2009'], ['/talks/sean_carroll_distant_time_and_the_hint_of_a_multiverse', '2011'], ['/talks/jill_tarter_join_the_seti_search', '2009'], ['/talks/janna_levin_the_sound_the_universe_makes', '2011'], ['/talks/john_delaney_wiring_an_interactive_ocean', '2010'], ['/talks/chris_anderson_ted_questions_no_one_knows_the_answers_to', '2012'], ['/talks/chris_anderson_why_can_t_we_see_evidence_of_alien_life', '2012'], ['/talks/george_smoot_the_design_of_the_universe', '2008'], ['/talks/chris_anderson_how_many_universes_are_there', '2012'], ['/talks/brian_greene_is_our_universe_the_only_universe', '2012']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+if+you+take+a+camera+and+you+point+it+at+a+random+part+of+the+sky+and+you+just+keep+the+shutter+open
found 1 videos: [['/talks/sean_carroll_distant_time_and_the_hint_of_a_multiverse', '2011']]
selected: /talks/sean_carroll_distant_time_and_the_hint_of_a_multiverse
sleep 1 seconds to avoid blocking
------<1979>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SeanFollmer_2015X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+ve+evolved+with+tools++and+tools+have+evolved+with+us+our+ancestors+created+these+hand+axes+one+point+five+million+years+ago++shaping+them+to+not+only+fit+the+task+at+hand+but+also
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=over+the+years+tools+have+become+more+and+more+specialized
found 8 videos: [['/talks/marco_annunziata_welcome_to_the_age_of_the_industrial_internet', '2013'], ['/talks/sean_follmer_shape_shifting_tech_will_change_work_as_we_know_it', '2016'], ['/talks/jared_diamond_how_societies_can_grow_old_better', '2013'], ['/talks/david_eagleman_can_we_create_new_senses_for_humans', '2015'], ['/talks/vance_kite_urbanization_and_the_evolution_of_cities_across_10_000_years', '2013'], ['/talks/sangeeta_bhatia_this_tiny_particle_could_roam_your_body_to_find_tumors', '2016'], ['/talks/hubertus_knabe_the_dark_secrets_of_a_surveillance_state', '2014'], ['/talks/siddharthan_chandran_can_the_damaged_brain_repair_itself', '2014']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+sculpting+tools+have+evolved+through+their+use++and+each+one+has+a+different+form+which+matches+its+function++and+they+leverage+the+dexterity+of+our+hands+in+order+to+manipulate+things+with+much+more+precision
found 1 videos: [['/talks/sean_follmer_shape_shifting_tech_will_change_work_as_we_know_it', '2016']]
selected: /talks/sean_follmer_shape_shifting_tech_will_change_work_as_we_know_it
sleep 3 seconds to avoid blocking
------<1980>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SeanGourley_2009U.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+look+around+the+media+as+we+see+on+the+news+from+iraq+afghanistan+sierra+leone++and+the+conflict+seems
found 1 videos: [['/talks/sean_gourley_the_mathematics_of_war', '2009']]
selected: /talks/sean_gourley_the_mathematics_of_war
sleep 2 seconds to avoid blocking
------<1981>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SebastianDeterding_2011X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+are+today+talking+about+moral+persuasion+what+is+moral+and+immoral+in+trying+to+change+people+s+behaviors+by+using+technology+and+using+design
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+don+t+know+what+you+expect+but+when+i+was+thinking+about+that+issue+i+early+on+realized+what+i+m+not+able+to+give+you+are+answers
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=m+not+able+to+tell+you+what+is+moral+or+immoral
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+we+re+living+in+a+pluralist+society++my+values+can+be+radically+different+from+your+values
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+means+that+what+i+consider+moral+or+immoral+based+on+that+might+not+necessarily+be+what+you+consider+moral+or+immoral
found 1 videos: [['/talks/sebastian_deterding_what_your_designs_say_about_you', '2012']]
selected: /talks/sebastian_deterding_what_your_designs_say_about_you
sleep 5 seconds to avoid blocking
------<1982>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SebastianJunger_2014S.stm
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=both+civilians+obviously+and+soldiers+suffer+in+war+i+don+t+think+any+civilian+has+ever+missed+the+war+that+they+were+subjected+to
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+been+covering+wars+for+almost+twenty+years+and+one+of+the+remarkable+things+for+me
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+how+many+soldiers+find+themselves+missing+it++how+is+it+someone+can
found 1 videos: [['/talks/sebastian_junger_why_veterans_miss_war', '2014']]
selected: /talks/sebastian_junger_why_veterans_miss_war
sleep 5 seconds to avoid blocking
------<1983>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SebastianJunger_2015P.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+worked+as+a+war+reporter
found 15 videos: [['/talks/janine_di_giovanni_what_i_saw_in_the_war', '2013'], ['/talks/sebastian_junger_our_lonely_society_makes_it_hard_to_come_home_from_war', '2016'], ['/talks/peter_singer_the_why_and_how_of_effective_altruism', '2013'], ['/talks/gerard_ryle_how_the_panama_papers_journalists_broke_the_biggest_leak_in_history', '2016'], ['/talks/trevor_timm_how_free_is_our_freedom_of_the_press', '2016'], ['/talks/jorge_ramos_why_journalists_have_an_obligation_to_challenge_power', '2017'], ['/talks/anas_aremeyaw_anas_how_i_named_shamed_and_jailed', '2013'], ['/talks/mary_bassett_why_your_doctor_should_care_about_social_justice', '2016'], ['/talks/keren_elazari_hackers_the_internet_s_immune_system', '2014'], ['/talks/hubertus_knabe_the_dark_secrets_of_a_surveillance_state', '2014'], ['/talks/jedidah_isler_the_untapped_genius_that_could_change_science_for_the_better', '2015'], ['/talks/russell_foster_why_do_we_sleep', '2013'], ['/talks/robert_waldinger_what_makes_a_good_life_lessons_from_the_longest_study_on_happiness', '2015'], ['/talks/dan_bricklin_meet_the_inventor_of_the_electronic_spreadsheet', '2017'], ['/talks/latif_nasser_the_amazing_story_of_the_man_who_gave_us_modern_pain_relief', '2015']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+fifteen+years+before+i+realized+that+i+really+had+a+problem+there+was+something+really+wrong+with+me++this+was+about+a+year+before+nine+eleven+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=america+wasn+t+at+war+yet
found 5 videos: [['/talks/christopher_bell_bring_on_the_female_superheroes', '2016'], ['/talks/al_gore_the_case_for_optimism_on_climate_change', '2016'], ['/talks/kenneth_lacovara_hunting_for_dinosaurs_showed_me_our_place_in_the_universe', '2016'], ['/talks/fei_fei_li_how_we_re_teaching_computers_to_understand_pictures', '2015'], ['/talks/kakenya_ntaiya_a_girl_who_demanded_school', '2013']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+weren+t+talking+about+ptsd++we+were+not+yet+talking+about+the+effect+of+trauma+and+war+on+the+human+psyche
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+d+been+in+afghanistan+for+a+couple+of+months+with+the+northern+alliance+as+they+were+fighting+the+taliban+and+at+that+point+the+taliban
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=had+an+air+force+they+had+fighter+planes+they+had+tanks+they+had+artillery++and+we+really+got+hammered+pretty+badly+a+couple+of+times+we+saw+some+very+ugly+things
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+didn+t+really+think+it+affected+me+i+didn+t+think+much+about+it++i+came+home+to+new+york+where+i+live++then+one+day+i+went+down+into+the+subway
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+for+the+first+time+in+my+life++i+knew+real+fear++i+had+a+massive+panic+attack
found 1 videos: [['/talks/sebastian_junger_our_lonely_society_makes_it_hard_to_come_home_from_war', '2016']]
selected: /talks/sebastian_junger_our_lonely_society_makes_it_hard_to_come_home_from_war
sleep 4 seconds to avoid blocking
------<1984>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SebastianKraves_2016S.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+you+re+a+pig+farmer++you+live+on+a+small+farm+in+the+philippines+your+animals+are+your+family+s+sole+source+of+income
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+long+as+they+re+healthy+you+know
found 8 videos: [['/talks/tiffany_kagure_mugo_and_siphumeze_khundayi_how_to_have_a_healthier_positive_relationship_to_sex', '2018'], ['/talks/adam_driver_my_journey_from_marine_to_actor', '2016'], ['/talks/stephen_friend_the_hunt_for_unexpected_genetic_heroes', '2014'], ['/talks/anne_marie_slaughter_can_we_all_have_it_all', '2014'], ['/talks/reed_hastings_how_netflix_changed_entertainment_and_where_it_s_headed', '2018'], ['/talks/peter_weinstock_lifelike_simulations_that_make_real_life_surgery_safer', '2017'], ['/talks/alison_ledgerwood_a_simple_trick_to_improve_positive_thinking', '2018'], ['/talks/moshe_szyf_how_early_life_experience_is_written_into_dna', '2017']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+your+pigs+can+catch+the+flu+the+swine+flu
found 1 videos: [['/talks/sebastian_kraves_the_era_of_personal_dna_testing_is_here', '2016']]
selected: /talks/sebastian_kraves_the_era_of_personal_dna_testing_is_here
sleep 5 seconds to avoid blocking
------<1985>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SebastianSeung_2010G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+live+in+in+a+remarkable+time++the+age+of+genomics
found 2 videos: [['/talks/david_agus_a_new_strategy_in_the_war_on_cancer', '2010'], ['/talks/sebastian_seung_i_am_my_connectome', '2010']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=your+genome+is+the+entire+sequence+of+your+dna+your+sequence+and+mine+are
found 4 videos: [['/talks/sebastian_seung_i_am_my_connectome', '2010'], ['/talks/rajesh_rao_a_rosetta_stone_for_a_lost_language', '2011'], ['/talks/craig_venter_watch_me_unveil_synthetic_life', '2010'], ['/talks/craig_venter_on_the_verge_of_creating_synthetic_life', '2008']]
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+why+we+look+different++i+ve+got+brown+eyes++you+might+have+blue+or+gray++but+it+s+not+just++skin+deep
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+headlines+tell+us+that+genes+can+give+us+scary+diseases
error: request timeout
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=our+personality+or+give+us+mental+disorders+our+genes+seem+to+have
error: request timeout
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+would+like+to+think+that+i+am+more+than+my+genes
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+do+you+guys+think+are+you+more+than+your+genes+audience+yes
found 8 videos: [['/talks/sebastian_seung_i_am_my_connectome', '2010'], ['/talks/spencer_wells_a_family_tree_for_humanity', '2008'], ['/talks/richard_resnick_welcome_to_the_genomic_revolution', '2011'], ['/talks/michael_shermer_the_pattern_behind_self_deception', '2010'], ['/talks/michael_specter_the_danger_of_science_denial', '2010'], ['/talks/rodney_brooks_robots_will_invade_our_lives', '2008'], ['/talks/quyen_nguyen_color_coded_surgery', '2011'], ['/talks/elizabeth_gilbert_your_elusive_creative_genius', '2009']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=yes+i+think+some+people+agree+with+me+i+think+we+should+make+a+statement+i+think+we+should+say+it+all+together
found 7 videos: [['/talks/sebastian_seung_i_am_my_connectome', '2010'], ['/talks/noah_feldman_politics_and_religion_are_technologies', '2008'], ['/talks/david_birch_a_new_way_to_stop_identity_theft', '2012'], ['/talks/jr_my_wish_use_art_to_turn_the_world_inside_out', '2011'], ['/talks/jonathan_haidt_the_moral_roots_of_liberals_and_conservatives', '2008'], ['/talks/dean_kamen_the_emotion_behind_invention', '2010'], ['/talks/bernie_dunlap_the_life_long_learner', '2008']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+guys+are+really+great+maybe+you+can+humor+me+and+say+this
found 7 videos: [['/talks/jamil_abu_wardeh_the_axis_of_evil_middle_east_comedy_tour', '2010'], ['/talks/sarah_jones_a_one_woman_global_village', '2009'], ['/talks/lennart_green_close_up_card_magic_with_a_twist', '2008'], ['/talks/patrick_chappatte_the_power_of_cartoons', '2010'], ['/talks/misha_glenny_hire_the_hackers', '2011'], ['/talks/sebastian_seung_i_am_my_connectome', '2010'], ['/talks/chris_bliss_comedy_is_translation', '2012']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+guys+are+so+great+you+don+t+even+know+what+a+connectome+is+and+you+re+willing+to+play+along+with+me++i+could+just+go+home+now
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+so+far+only+one+connectome+is+known+that+of+this
found 2 videos: [['/talks/sebastian_seung_i_am_my_connectome', '2010'], ['/talks/rachel_botsman_the_currency_of_the_new_economy_is_trust', '2012']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=tiny+worm+its+modest+nervous+system+consists+of+just+three+hundred+neurons+and+in+the
error: request timeout
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+seven+thousand+connections+between+the+neurons
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+this+diagram+every+node+is+a+neuron+and+every+line+is+a+connection+this+is+the+connectome+of+the+worm+c+elegans
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=your+connectome+is+far+more+complex+than+this
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+your+brain+contains+one+hundred+billion+neurons
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+ten+thousand+times+as+many+connections
found 9 videos: [['/talks/marc_goodman_a_vision_of_crimes_in_the_future', '2012'], ['/talks/rob_harmon_how_to_keep_rivers_and_streams_flowing', '2011'], ['/talks/rachel_botsman_the_currency_of_the_new_economy_is_trust', '2012'], ['/talks/p_w_singer_military_robots_and_the_future_of_war', '2009'], ['/talks/daniel_kraft_medicine_s_future_there_s_an_app_for_that', '2011'], ['/talks/seth_godin_the_tribes_we_lead', '2009'], ['/talks/jeff_hancock_the_future_of_lying', '2012'], ['/talks/wade_davis_the_worldwide_web_of_belief_and_ritual', '2008'], ['/talks/john_kasaona_how_poachers_became_caretakers', '2010']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+a+diagram+like+this+for+your+brain+but+there+s+no+way+it+would+fit+on+this+slide+your+connectome+contains+one+million+times+more+connections
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=than+your+genome+has+letters++that+s+a+lot+of+information++what+s+in+that+information
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+don+t+know+for+sure+but+there+are+theories++since+the+19th+century
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+maybe+your+memories+the+information+that+makes+you+you
found 9 videos: [['/talks/scott_fraser_why_eyewitnesses_get_it_wrong', '2012'], ['/talks/sebastian_seung_i_am_my_connectome', '2010'], ['/talks/joshua_foer_feats_of_memory_anyone_can_do', '2012'], ['/talks/daniel_wolpert_the_real_reason_for_brains', '2011'], ['/talks/sean_carroll_distant_time_and_the_hint_of_a_multiverse', '2011'], ['/talks/ed_boyden_a_light_switch_for_neurons', '2011'], ['/talks/juan_enriquez_will_our_kids_be_a_different_species', '2012'], ['/talks/amber_case_we_are_all_cyborgs_now', '2011'], ['/talks/irwin_redlener_how_to_survive_a_nuclear_attack', '2008']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=maybe+your+memories+are+stored+in+the+connections+between+your+brain+s+neurons
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+perhaps+other+aspects+of+your+personal+identity+maybe+your+personality+and+your+intellect
found 1 videos: [['/talks/sebastian_seung_i_am_my_connectome', '2010']]
selected: /talks/sebastian_seung_i_am_my_connectome
sleep 2 seconds to avoid blocking
------<1986>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SebastianThrun_2011.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+a+boy+i+loved+cars++when+i+turned+eighteen+i+lost+my+best+friend+to+a+car+accident
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+i+haven+t+succeeded+so+this+is+just+a+progress+report++but+i+m+here+to+tell+you+a+little+bit+about+self+driving+cars
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+saw+the+concept+first+in+the+darpa+grand+challenges
found 1 videos: [['/talks/sebastian_thrun_google_s_driverless_car', '2011']]
selected: /talks/sebastian_thrun_google_s_driverless_car
sleep 2 seconds to avoid blocking
------<1987>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SebastianWernicke_2010A.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=go+on+the+ted+website+you+can+currently+find+there+over+a+full+week+of+tedtalk+videos
found 1 videos: [['/talks/sebastian_wernicke_lies_damned_lies_and_statistics_about_tedtalks', '2010']]
selected: /talks/sebastian_wernicke_lies_damned_lies_and_statistics_about_tedtalks
sleep 5 seconds to avoid blocking
------<1988>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SebastianWernicke_2011X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+currently+over+a+thousand+ted+talks+on+the+ted+website+and+i+guess+many+of+you+here+think+that+this+is+quite+fantastic++except+for+me+i
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=don+t+agree+with+this+i+think+we+have+a+situation+here++because+if+you+think+about+it+one+thousand+ted+talks
error: request timeout
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+on+earth+are+you+going+to+spread+a+thousand+ideas
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=even+if+you+just+try+to+get+all+of+those+ideas+into+your+head+by+watching+all+those+thousand+ted+videos+it+would+actually+currently+take+you+over+two+hundred+and+fifty+hours+to+do+so
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+did+a+little+calculation+of+this+the+damage+to+the+economy+for+each+one+who+does+this+is+around
found 1 videos: [['/talks/sebastian_wernicke_1_000_ted_talks_in_six_words', '2012']]
selected: /talks/sebastian_wernicke_1_000_ted_talks_in_six_words
sleep 5 seconds to avoid blocking
------<1989>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SebastianWernicke_2015X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+a+man+that+most+of+you+have+probably+never+heard+about+even+though+he+may+have+been+responsible+for
found 13 videos: [['/talks/sebastian_wernicke_how_to_use_data_to_make_a_hit_tv_show', '2016'], ['/talks/sue_klebold_my_son_was_a_columbine_shooter_this_is_my_story', '2017'], ['/talks/andrew_solomon_love_no_matter_what', '2013'], ['/talks/edward_snowden_here_s_how_we_take_back_the_internet', '2014'], ['/talks/gus_casely_hayford_the_powerful_stories_that_shaped_africa', '2017'], ['/talks/peggy_orenstein_what_young_women_believe_about_their_own_sexual_pleasure', '2017'], ['/talks/peter_singer_the_why_and_how_of_effective_altruism', '2013'], ['/talks/ines_hercovich_why_women_stay_silent_after_sexual_assault', '2017'], ['/talks/simon_anholt_who_would_the_rest_of_the_world_vote_for_in_your_country_s_election', '2017'], ['/talks/vincent_cochetel_i_was_held_hostage_for_317_days_here_s_what_i_thought_about', '2015'], ['/talks/charmian_gooch_meet_global_corruption_s_hidden_players', '2013'], ['/talks/maryn_mckenna_what_do_we_do_when_antibiotics_don_t_work_any_more', '2015'], ['/talks/elizabeth_loftus_how_reliable_is_your_memory', '2013']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=somewhat+mediocre+minutes+of+your+life+on+april+nineteen+two
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+may+have+also+been+responsible+for+twenty+two+very+entertaining+minutes+but+not+very+many+of+you
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+all+of+that+goes+back+to+a+decision+that+roy+had+to+make+about+three+years+ago+so+you+see+roy+price+is+a+senior+executive+with+amazon+studios+that+s+the+tv+production
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=company+of+amazon+he+s+forty+seven+years+old+slim+spiky+hair+describes+himself+on+twitter+as+movies+tv
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=roy+price+has+a+very+responsible+job+because+it+s+his+responsibility+to+pick+the+shows+the+original+content+that+amazon+is+going+to+make++and+of+course+that+s+a+highly+competitive+space+i+mean+there+are+so+many+tv+shows+already+out+there
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+roy+can+t+just+choose+any+show+he+has+to+find+shows+that+are+really+really+great++so+in+other+words++he+has+to+find+shows+that+are+on+the+very+right+end+of+this+curve+here+so+this+curve+here+is+the+rating
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=distribution+of+about+two+thousand+five+hundred+tv+shows+on+the+website+imdb+and+the+rating+goes+from+one+to+ten++and+the+height+here+shows+you+how+many+shows
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=get+that+rating+so+if+your+show+gets+a+rating+of+nine+points+or+higher+that+s+a+winner+then+you+have+a+top+two+percent+show+that+s+shows+like+breaking+bad
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=your+brain+is+basically+like+where+can+i+get+more+of+these+episodes+that+kind+of+show
found 2 videos: [['/talks/sebastian_wernicke_how_to_use_data_to_make_a_hit_tv_show', '2016'], ['/talks/tristan_harris_how_a_handful_of_tech_companies_control_billions_of_minds_every_day', '2017']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+the+left+side+just+for+clarity+here+on+that+end+you+have+a+show+called+toddlers+and+tiaras
found 1 videos: [['/talks/sebastian_wernicke_how_to_use_data_to_make_a_hit_tv_show', '2016']]
selected: /talks/sebastian_wernicke_how_to_use_data_to_make_a_hit_tv_show
sleep 3 seconds to avoid blocking
------<1990>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SebastiaoSalgado_2013.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+not+sure+that+every+person+here+is+familiar+with+my+pictures+i+want+to+start+to+show+just+a+few+pictures+to+you+and+after
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+brazil+in+the+times+that+brazil+was+not+yet+a+market+economy+i+was+born+on+a+farm+a+farm+that+was+more+than+fifty+percent+rainforest
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+marvelous+place+i+lived+with+incredible+birds+incredible+animals++i+swam+in+our+small+rivers+with+our+caimans+it
found 1 videos: [['/talks/sebastiao_salgado_the_silent_drama_of_photography', '2013']]
selected: /talks/sebastiao_salgado_the_silent_drama_of_photography
sleep 2 seconds to avoid blocking
------<1991>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SeemaBansal_2016S.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+we+all+have+our+own+biases+for+example++some+of+us+tend+to+think+that+it+s+very+difficult+to+transform+failing+government+systems
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+we+think+of+government+systems+we+tend+to+think+that+they+re
found 4 videos: [['/talks/ramanan_laxminarayan_the_coming_crisis_in_antibiotics', '2014'], ['/talks/nicholas_negroponte_a_30_year_history_of_the_future', '2014'], ['/talks/reed_hastings_how_netflix_changed_entertainment_and_where_it_s_headed', '2018'], ['/talks/dame_ellen_macarthur_the_surprising_thing_i_learned_sailing_solo_around_the_world', '2015']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=set+in+their+ways+and+perhaps+the+leadership+is+just+too+bureaucratic+to+be+able+to+change+things
found 1 videos: [['/talks/seema_bansal_how_to_fix_a_broken_education_system_without_any_more_money', '2016']]
selected: /talks/seema_bansal_how_to_fix_a_broken_education_system_without_any_more_money
sleep 4 seconds to avoid blocking
------<1992>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SendhilMullainathan_2009I.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+a+researcher+every+once+in+a+while+you+encounter+something
found 5 videos: [['/talks/david_griffin_how_photography_connects_us', '2008'], ['/talks/sendhil_mullainathan_solving_social_problems_with_a_nudge', '2010'], ['/talks/tim_brown_tales_of_creativity_and_play', '2008'], ['/talks/annie_murphy_paul_what_we_learn_before_we_re_born', '2011'], ['/talks/jonathan_zittrain_the_web_as_random_acts_of_kindness', '2009']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+little+disconcerting+and+this+is+something+that+changes+your+understanding+of+the+world+around+you+and+teaches+you+that+you+re+very+wrong+about+something
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=really+believed+firmly+in+and+these+are+unfortunate+moments++because
found 1 videos: [['/talks/sendhil_mullainathan_solving_social_problems_with_a_nudge', '2010']]
selected: /talks/sendhil_mullainathan_solving_social_problems_with_a_nudge
sleep 2 seconds to avoid blocking
------<1993>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SerenaWilliams_2017.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=no+doubt+you+guys+are+like+me+you+saw+the+release+of+serena+in+that+great+yellow+bathing+suit+last+week+and+when+i+saw+it+all+i+could+think+of+was
found 1 videos: [['/talks/serena_williams_and_gayle_king_on_tennis_love_and_motherhood', '2017']]
selected: /talks/serena_williams_and_gayle_king_on_tennis_love_and_motherhood
sleep 5 seconds to avoid blocking
------<1994>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SergeiLupashin_2014S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+came+here+to+show+you
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+fotokite+it+s+a+tethered+flying+camera
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+before+i+do+that+i+want+to+tell+you+a+bit+about+where+it+came+from+what+motivated+it+so+i+was+born+in+russia+and
found 1 videos: [['/talks/sergei_lupashin_a_flying_camera_on_a_leash', '2014']]
selected: /talks/sergei_lupashin_a_flying_camera_on_a_leash
sleep 3 seconds to avoid blocking
------<1995>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SergeyBrin_2004.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+discuss+a+question+i+know+that+s+been+pressing+on+many+of+your+minds++we+spoke+to+you+last+several+years+ago
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+before+i+get+started+today++since+many+of+you
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+didn+t+really+realize+what+it+was+when+i+first+saw+it+but+this+is+what+helped+me+see+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+what+we+run+at+the+office+that+actually+runs+real+time+here+it+s
found 1 videos: [['/talks/david_pogue_simplicity_sells', '2006']]
selected: /talks/david_pogue_simplicity_sells
sleep 3 seconds to avoid blocking
------<1996>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SergeyBrin_2013.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=great+to+be+back+at+ted+why+don+t+i+just+start+by+firing
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hang+out+with+the+flying+club
found 5 videos: [['/talks/sergey_brin_why_google_glass', '2013'], ['/talks/philippe_petit_the_journey_across_the_high_wire', '2012'], ['/talks/jonathan_foley_the_other_inconvenient_truth', '2012'], ['/talks/david_epstein_are_athletes_really_getting_faster_better_stronger', '2014'], ['/talks/neil_pasricha_the_3_a_s_of_awesome', '2011']]
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+message+from+a+nigerian+prince+he+needs+help
found 1 videos: [['/talks/sergey_brin_why_google_glass', '2013']]
selected: /talks/sergey_brin_why_google_glass
sleep 5 seconds to avoid blocking
------<1997>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SethBerkley_2010.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+worry+about+what+is+going+to+kill+you
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=heart+disease+cancer+a+car+accident+most+of+us+worry+about+things+we+can+t+control+like
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+tragic+earthquake+that+just+occurred+in+haiti++but+what+really+threatens+humanity
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+few+years+ago+professor+vaclav+smil+tried+to+calculate+the+probability+of+sudden+disasters+large+enough+to+change+history
error: request timeout
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=meaning+that+they+could+kill+up+to+one+hundred+million+people+in+the+next+fifty
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+looked+at+the+odds+of+another+world+war+of+a+massive+volcanic+eruption+even+of+an+asteroid+hitting+the+earth
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+he+placed+the+likelihood+of+one+such+event+above+all+others+at+close+to+one+hundred+percent
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+is+a+severe+flu+pandemic
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now++you+might+think+of+flu+as+just+a+really+bad+cold++but+it+can+be+a+death
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thousand+people+in+the+united+states+die+of+seasonal+flu+in+the+developing+world+the+data+is+much+sketchier+but+the+death+toll+is+almost+certainly+higher+you
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+problem+is+if+this+virus+occasionally+mutates+so+dramatically+it+essentially+is+a+new+virus+and+then+we+get+a+pandemic
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+eighteen+a+new+virus+appeared+that+killed+some+fifty+to+one+hundred+million+people+it+spread+like+wildfire+and+some+died+within+hours+of+developing+symptoms
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+we+safer+today++well++we+seem+to+have+dodged+the+deadly+pandemic+this+year+that+most+of+us+feared++but+this+threat+could+reappear+at+any+time
found 1 videos: [['/talks/seth_berkley_hiv_and_flu_the_vaccine_strategy', '2010']]
selected: /talks/seth_berkley_hiv_and_flu_the_vaccine_strategy
sleep 4 seconds to avoid blocking
------<1998>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SethBerkley_2015.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+child+s+symptoms+begin+with+mild+fever++headache++muscle+pains++followed+by+vomiting+and+diarrhea+then+bleeding+from+the+mouth++nose+and+gums
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=death+follows+in+the+form+of+organ+failure+from+low+blood+pressure
found 1 videos: [['/talks/seth_berkley_the_troubling_reason_why_vaccines_are_made_too_late_if_they_re_made_at_all', '2015']]
selected: /talks/seth_berkley_the_troubling_reason_why_vaccines_are_made_too_late_if_they_re_made_at_all
sleep 2 seconds to avoid blocking
------<1999>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SethGodin_2003.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=cover+at+the+end+about+how+a+company+called+silk+tripled+their+sales+how+an+artist+named+jeff+koons+went+from+being+a+nobody+to+making+a+whole+bunch+of+money+and+having+a+lot+of+impact
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+how+frank+gehry+redefined+what+it+meant+to+be+an+architect+and
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+my+biggest+failures+as+a+marketer+in+the+last+few+years+a+record+label+i+started+that+had+a+cd+called+sauce
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=before+i+can+do+that+i+ve+got+to+tell+you+about+sliced+bread+and+a+guy+named+otto+rohwedder
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now++before+sliced+bread+was+invented+in+the++1910s
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+wonder+what+they+said+like+the+greatest+invention+since
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+telegraph+or+something+but+this+guy+named+otto+rohwedder+invented+sliced+bread++and+he+focused+like+most
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=inventors+did+on+the+patent+part+and+the+making+part
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+thing+about+the+invention+of+sliced+bread+is+this+that+for+the+first+fifteen+years+after+sliced+bread+was+available+no+one+bought+it+no+one+knew+about+it++it+was+a+complete+and+total+failure
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+until+wonder+came+along+and+figured+out+how+to+spread+the+idea+of+sliced+bread+no+one+wanted
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+that+the+success+of+sliced+bread+like+the+success+of+almost+everything+we+ve+talked+about+at+this+conference+is+not+always+about
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+the+patent+is+like+or+what+the+factory+is+like
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+about+can+you+get+your+idea+to+spread+or+not
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+think+that+the+way+you+re+going+to+get+what+you+want+or+cause+the+change+that+you+want+to+change+to+happen+is+to+figure+out+a+way+to+get+your+ideas+to+spread
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+doesn+t+matter+to+me+whether+you+re+running+a+coffee+shop+or+you+re+an+intellectual+or+you+re+in+business+or+you+re+flying+hot+air+balloons++i+think+that+all+this+stuff+applies+to+everybody+regardless+of+what+we+do
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+what+we+are+living+in
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+a+century+of+idea+diffusion+that+people+who+can+spread+ideas+regardless+of+what+those+ideas+are+win+when
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+talk+about+it+i+usually
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=pick+business++because+they+make+the+best+pictures+that+you+can+put+in+your+presentation++and+because+it+s+the+easiest+sort+of+way+to+keep+score
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+want+you+to+forgive+me+when+i+use+these+examples+because+i+m+talking+about+anything+that+you+decide+to+spend+your+time+to+do
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+the+heart+of+spreading+ideas+is+tv+and+stuff+like+tv
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=tv+and+mass+media+made+it+really+easy+to+spread+ideas+in+a+certain+way
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+call+it+the+tv+industrial+complex+the+way+the+tv+industrial+complex+works+is+you+buy+some+ads++interrupt+some+people+that+gets+you+distribution+you
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=use+the+distribution+you+get+to+sell+more+products+you+take+the+profit+from+that
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+buy+more+ads+and+it+goes+around+and+around+and+around+the+same+way+that+the+military+industrial+complex+worked+a+long+time+ago
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+model+of+and+we+heard+it+yesterday+if+we+could+only+get+onto+the+homepage+of+google
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+we+could+only+figure+out+how+to+get+promoted+there
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=grab+that+person+by+the+throat+and+tell+them
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+what+we+want+to+do+if+we+did+that+then+everyone+would+pay+attention+and+we+would+win
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+this++tv+industrial+complex+informed+my+entire+childhood+and+probably+yours+i
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=mean+all+of+these+products+succeeded
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+someone+figured+out+how+to+touch+people+in+a+way+they+weren+t+expecting+in+a+way+they+didn+t+necessarily+want+with+an+ad+over+and+over+again+until+they+bought
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+and+the+thing+that+s+happened
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+they+canceled+the+tv+industrial+complex+that+just+over+the+last+few+years+what+anybody+who+markets+anything+has+discovered
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+that+it+s+not+working+the+way+that+it+used+to+this+picture+is+really+fuzzy++i+apologize+i+had+a+bad+cold+when+i
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+product+in+the+blue+box+in+the+center+is+my+poster+child+i+go+to+the+deli+i+m+sick+i+need+to+buy+some+medicine
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+brand+manager+for+that+blue+product+spent+one+hundred+million+dollars+trying+to+interrupt+me+in+one+year+one+hundred+million+dollars+interrupting+me+with+tv+commercials+and+magazine+ads+and+spam
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+coupons+and+shelving+allowances+and+spiff+all+so+i+could+ignore+every+single+message
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=box+because+i+always+have+and+i+m+not+going+to+invest+a+minute+of+my+time
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+solve+her+problem+because+i+don+t+care
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+s+a+magazine+called+hydrate+it+s+one+hundred+and+eighty+pages+about+water
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=laughter+articles+about+water++ads+about+water+imagine+what+the+world+was+like+forty
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+saturday+evening+post+and+time+and+newsweek++now+there+are+magazines+about+water+new+product+from+coke+japan+water+salad
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=laughter+coke+japan+comes+out+with+a+new+product+every+three+weeks++because+they+have+no+idea+what+s+going+to+work+and+what+s+not
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+couldn+t+have+written+this+better+myself+it+came+out+four+days+ago+i+circled+the+important+parts+so+you+can+see+them+here
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+the+voice+of+tom+arnold++hoping+that+that+will+get+people+to+go+to+arby+s+and+buy+a+roast+beef+sandwich
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+i+had+tried+to+imagine+what+could+possibly+be+in+an+animated+tv+commercial+featuring+tom+arnold++that+would+get+you+to+get+in+your+car++drive+across+town+and+buy+a+roast+beef+sandwich
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+he+was+right+when+he+was+talking+to+anyone+who+needs+to+hear+your+idea+the+world+revolves+around+me
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=me+me+me+me+my+favorite+person+me++i+don+t+want+to+get+email+from+anybody++i+want+to+get+memail
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+don+t+just+mean+people+who+buy+stuff+at+the+safeway++i+mean+people+at+the+defense+department+who+might+buy+something+or+people+at+you+know+the+new+yorker+who+might+print+your
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=don+t+care+about+you+at+all+they+just+don+t+care++part+of+the+reason+is+they+ve+got+way+more+choices+than+they+used+to+and+way+less+time
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+in+a+world+where+we+have+too+many+choices+and+too+little+time+the+obvious+thing+to+do+is+just+ignore+stuff
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+my+parable+here+is+you+re+driving+down+the+road+and+you+see+a+cow+and+you
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=keep+driving+because+you+ve+seen+cows+before+cows+are+invisible+cows+are+boring+who+s+going+to+stop+and+pull+over+and+say
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=oh++look+a+cow+nobody
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+if+the+cow+was+purple+isn+t+that+a+great+special+effect+i+could+do+that+again+if+you+want
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+d+notice+it+for+a+while++i+mean+if+all+cows+were+purple+you+d+get+bored+with+those
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+thing+that+s+going+to+decide+what+gets+talked+about+what+gets+done+what+gets+changed+what+gets+purchased+what+gets+built+is+is+it
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+remarkable+is+a+really+cool+word++because+we+think+it+just+means+neat+but+it+also+means+worth+making+a+remark+about
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+is+the+essence+of+where+idea+diffusion+is+going++that+two+of+the+hottest+cars
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=giant+car+big+enough+to+hold+a+mini+in+its+trunk+people+are+paying+full+price+for+both+and+the+only+thing+they+have+in+common
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+that+they+don+t+have+anything+in+common+every+week+the+number+one+best+selling+dvd
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+never+the+godfather+it+s+never+citizen+kane+it+s+always+some
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=third+rate+movie+with+some+second+rate+star++but+the+reason+it+s+number+one+is+because+that+s+the+week+it+came+out+because+it+s+new+because+it+s+fresh+people+saw+it+and+said+i+didn+t+know+that+was+there+and+they+noticed+it+two
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+the+big+success+stories+of+the+last+twenty+years+in+retail+one+sells+things+that+are
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+one+sells+things+that+are+as+cheap+as+they+can+make+them
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+only+thing+they+have+in+common+is+that+they+re+different+we+re+now+in+the+fashion+business+no+matter+what+we+do+for+a+living+we
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=re+in+the+fashion+business++and+people+in+the+fashion+business+know+what+it+s+like+to+be+in+the+fashion+business+they+re+used+to+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+rest+of+us+have+to+figure+out+how+to+think+that+way+how+to+understand+that+it+s+not+about+interrupting+people+with+big+full+page+ads
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+insisting+on+meetings+with+people++but+it+s+a+totally+different+sort+of+process
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=determines+which+ideas+spread++and+which+ones+don+t+they+sold+a+billion+dollars++worth+of+aeron+chairs
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+reinventing+what+it+meant+to+sell+a+chair+they+turned+a+chair+from+something+the+purchasing+department+bought+to+something+that+was+a+status+symbol+about+where+you+sat+at+work
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+guy+lionel+poilne+the+most+famous+baker+in+the+world+he+died+two+and+a+half+months+ago++and+he+was+a+hero+of+mine+and+a+dear+friend
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+lived+in+paris+last+year+he+sold+ten+million+dollars++worth+of+french+bread
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=every+loaf+baked+in+a+bakery+he+owned+by+one+baker+at+a+time+in+a+wood+fired+oven
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+when+lionel+started+his+bakery+the+french+pooh+pooh+ed+it+they+didn+t+want+to+buy+his+bread++it+didn+t+look+like+french+bread+it+wasn+t+what+they+expected+it+was
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+remarkable++and+slowly++it+spread+from+one+person+to+another+person+until+finally++it+became+the+official+bread+of+three+star+restaurants+in+paris++now+he+s+in+london+and+he+ships+by+fedex+all+around+the+world
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+marketers+used+to+do+is+make+average+products+for+average+people+that+s+what+mass+marketing+is+smooth+out+the+edges+go+for+the+center+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+the+big+market+they+would+ignore+the+geeks++and+god+forbid+the+laggards++it+was
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+about+going+for+the+center
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+in+a+world+where+the+tv+industrial+complex+is+broken+i+don+t+think+that+s+a+strategy+we+want+to+use+any+more+i+think+the+strategy+we+want+to+use+is+to+not+market+to+these+people
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+they+re+really+good+at+ignoring+you+but+market+to+these+people+because+they+care
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+when+you+talk+to+them+they+ll+listen+because+they+like+listening+it+s+about+them
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+if+you+re+lucky+they+ll+tell+their+friends+on+the+rest+of+the+curve++and+it+ll+spread+it+ll+spread+to+the+entire+curve+they+have+something+i+call+otaku+it+s+a+great+japanese
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=word++it+describes+the+desire+of+someone+who+s+obsessed+to+say+drive+across+tokyo+to+try+a+new+ramen+noodle+place+because+that+s+what+they+do++they+get
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+market+an+idea+to+come+up+with+any+problem+you+want+to+solve+that+doesn+t+have+a+constituency+with+an+otaku
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=instead+you+have+to+find+a+group+that+really+desperately+cares+about+what+it+is+you+have+to+say+talk+to+them+and+make+it+easy+for+them+to+tell+their+friends+there+s+a+hot+sauce+otaku++but+there+s+no+mustard+otaku
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+why+there+s+lots+and+lots+and+lots+of+kinds+of+hot
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+not+so+many+kinds+of+mustard+not+because+it+s+hard+to+make+interesting+mustard+you+could+make+interesting+mustard
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+people+don+t++because+no+one+s+obsessed+with+it+and+thus+no+one+tells+their+friends++krispy+kreme+has+figured+this+whole+thing+out
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+has+a+strategy+and+what+they+do+is+they+enter+a+city+they+talk+to+the+people+with+the+otaku++and+then+they+spread+through+the+city+to+the+people+who+ve+just+crossed+the+street
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+yoyo+right+here+cost+one+hundred+and+twelve+dollars
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+it+sleeps+for+twelve+minutes+not+everybody+wants+it+but+they+don+t+care++they+want+to+talk+to+the+people+who+do
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+maybe+it+ll+spread+these+guys+make+the+loudest+car+stereo+in+the+world
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+as+loud+as+a+seven+hundred+and+forty+seven+jet+you+can+t+get+in+the+car+s+got+bulletproof+glass+because+it+ll+blow+out+the+windshield+otherwise++but+the+fact
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=remains+that+when+someone+wants+to+put+a+couple+of+speakers+in+their+car++if+they+ve+got+the+otaku+or+they+ve+heard+from+someone+who+does+they+go+ahead+and+they+pick+this
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sell+to+the+people+who+are+listening+and+just+maybe+those+people+tell+their+friends++so+when+steve+jobs+talks+to+fifty+thousand+people+at+his+keynote
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+are+all+tuned+in+from+one+hundred+and+thirty+countries+watching+his++two+hour+commercial+that+s+the+only+thing+keeping+his+company+in+business+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+that+those+fifty+thousand+people+care+desperately+enough+to+watch+a+two+hour+commercial+and+then+tell+their+friends
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=released+in+the+last+two+years+every+one+made+a+profit
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+they+only+sell+them+on+their+website+those+people+who+buy+them+have+the+otaku+and+then+they+tell+their+friends++and+it+spreads+and+it+spreads+this+hospital+crib+cost+ten+thousand+dollars+ten+times+the+standard
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+hospitals+are+buying+it+faster+than+any+other+model+hard+candy+nail+polish+doesn+t+appeal+to+everybody+but+to+the+people+who+love+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+talk+about+it+like+crazy+this+paint+can+right+here
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=saved+the+dutch+boy+paint+company+making+them+a+fortune+it+costs+thirty+five+percent+more+than+regular+paint+because+dutch+boy+made+a+can+that+people+talk+about+because+it+s+remarkable++they+didn+t+just+slap+a+new+ad+on+the+product+they+changed+what+it+meant+to+build+a+paint+product
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=everyday+two+hundred+and+fifty+thousand+people+go+to+this+site++run+by+two+volunteers++and+i+can+tell+you+they+are+hard+graders
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+didn+t+get+this+way+by+advertising+a+lot+they+got+this+way+by+being+remarkable++sometimes+a+little+too+remarkable
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+picture+frame+has+a+cord+going+out+the+back+and+you+plug+it+into+the+wall+my+father+has+this+on+his+desk++and+he+sees+his+grandchildren+everyday
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+every+single+person+who+walks+into+his+office+hears+the+whole+story+of+how+this+thing+ended+up+on+his+desk++and+one+person+at+a+time+the+idea+spreads+these+are+not+diamonds+not+really
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+re+made+from+cremains+after+you+re+cremated+you+can+have+yourself+made+into+a+gem+oh
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+like+my+ring++it+s+my+grandmother
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=business+in+the+whole+mortuary+industry
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+you+don+t+have+to+be+ozzie+osborne+you+don+t+have+to+be+super+outrageous+to+do+this+what+you+have+to+do+is+figure+out+what+people+really+want+and+give+it+to+them+a+couple+of+quick+rules+to+wrap+up+the+first+one+is+design+is+free+when+you+get+to+scale
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+people+who+come+up+with+stuff+that+s+remarkable+more+often+than+not+figure+out+how+to+put+design+to+work+for+them+number+two
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+riskiest+thing+you+can+do+now+is+be+safe+proctor
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+whole+model+of+being+proctor+and+gamble+is+always+about+average+products+for+average+people+that+s+risky
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+safe+thing+to+do+now+is+to+be+at+the+fringes+be+remarkable
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+being+very+good+is+one+of+the+worst+things+you+can+possibly+do++very+good+is+boring++very+good+is+average+it+doesn+t+matter+whether+you+re+making
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+record+album+or+you+re+an+architect++or+you+have+a+tract+on+sociology+if+it+s+very+good+it+s+not+going+to+work+because+no+one+s+going+to+notice+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+my+three+stories+silk+put
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+product+that+does+not+need+to+be+in+the+refrigerated+section+next+to+the+milk+in+the+refrigerated+section++sales+tripled+why+milk+milk+milk+milk+milk+not+milk
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+the+people+who+were+there+and+looking+at+that+section++it+was+remarkable++they+didn+t+triple+their+sales+with+advertising+they+tripled+it+by+doing+something+remarkable
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+is+a+remarkable+piece+of+art+you+don+t+have+to+like+it+but+a+40+foot+tall+dog+made+out+of+bushes+in+the+middle+of+new+york+city+is+remarkable
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=frank+gehry+didn+t+just+change+a+museum+he+changed+an+entire+city+s+economy
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+designing+one+building+that+people+from+all+over+the+world+went+to+see
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+portland+city+council+or+who+knows+where+they+said+we+need+an+architect+can+we+get+frank+gehry
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+he+did+something+that+was+at+the+fringes++and+my+big+failure+i+came+out+with+an+entire
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+record+album+and+hopefully+a+whole+bunch+of+record+albums+in
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+remarkable+new+format+and+i+marketed+it+straight+to+people+with
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+figure+out+who+does+care
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+is+going+to+raise+their+hand+and+say+i+want+to+hear+what+you+re+doing+next+and+sell+something+to+them
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+last+example+i+want+to+give+you+this+is+a+map+of+soap+lake+washington+as+you+can+see+if+that+s+nowhere++it+s+in+the+middle+of+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+they+do+have+a+lake
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+people+used+to+come+from+miles+around+to+swim+in+the+lake++they+don+t+anymore+so+the+founding+fathers+said+we+ve+got+some+money+to+spend+what+can+we+build+here+and+like+most+committees
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+were+going+to+build+something+pretty+safe+and+then+an+artist+came+to+them+this+is+a+true+artist+s+rendering+he+wants+to+build+a
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=center+of+town++that+s+a+purple+cow++that+s+something+worth+noticing+i+don+t+know+about+you+but+if+they+build+it+that+s+where+i+m+going+to+go
found 0 videos: []
error: no video is found.
sleep 5 seconds to avoid blocking
------<2000>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SethGodin_2009.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=get+invited+to+give+weird+talks
found 4 videos: [['/talks/seth_godin_the_tribes_we_lead', '2009'], ['/talks/marc_pachter_the_art_of_the_interview', '2009'], ['/talks/garrett_lisi_an_8_dimensional_model_of_the_universe', '2008'], ['/talks/rick_smolan_the_story_of_a_girl', '2008']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+got+invited+to+speak+to+the+people+who+dress+up+in+big+stuffed+animal+costumes+to+perform+at+sporting+events
found 1 videos: [['/talks/seth_godin_the_tribes_we_lead', '2009']]
selected: /talks/seth_godin_the_tribes_we_lead
sleep 1 seconds to avoid blocking
------<2001>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SethPriebatsch_2010X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+name+s+seth+priebatsch+i+m+the+chief+ninja+of+scvngr+i+m+a+proud+princeton+dropout+also+proud+to+have+relocated+here+to+boston+where+i+actually+grew+up
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=yeah+boston++easy+wins+i+should+just+name+the+counties+that+we+ve
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+also+fairly+determined+to+try+and+build+a+game+layer+on+top+of+the+world
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+sort+of+a+new+concept+and+it+s+really+important+because+while+the+last+decade+was+the+decade+of+social+the+decade+where+the+framework+in+which+we+connect+with+other+people+was+built++this+next
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=decade+will+be+the+decade+where+the+game+framework+is+built+where+the+motivations+we+use+to+actually+influence+behavior+and+the+framework+in+which+that+is+constructed
found 1 videos: [['/talks/seth_priebatsch_the_game_layer_on_top_of_the_world', '2010']]
selected: /talks/seth_priebatsch_the_game_layer_on_top_of_the_world
sleep 3 seconds to avoid blocking
------<2002>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SethShostak_2012X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+work+at+the+seti+institute+that+s+almost+my+name+seti+search+for+extraterrestrial+intelligence+in+other+words+i+look+for+aliens++and+when+i+tell+people+that+at+a+cocktail+party
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+usually+look+at+me+with+a+mildly+incredulous+look+on+their+face+i+try+to+keep+my+own+face+somewhat+dispassionate
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+a+lot+of+people+think+that+this+is+kind+of+idealistic
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ridiculous+maybe+even+hopeless++but+i+just+want+to+talk+to+you+a+little+bit+about+why+i+think+that+the+job+i+have+is+actually+a+privilege
found 1 videos: [['/talks/seth_shostak_et_is_probably_out_there_get_ready', '2012']]
selected: /talks/seth_shostak_et_is_probably_out_there_get_ready
sleep 4 seconds to avoid blocking
------<2003>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SeverineAutesserre_2014G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+speak+about+a+forgotten+conflict++it+s+a+conflict+that+rarely+hits+the+headlines
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+happens+right+here+in+the+democratic+republic+of+congo
found 4 videos: [['/talks/severine_autesserre_to_solve_mass_violence_look_to_locals', '2015'], ['/talks/charmian_gooch_meet_global_corruption_s_hidden_players', '2013'], ['/talks/charmian_gooch_my_wish_to_launch_a_new_era_of_openness_in_business', '2014'], ['/talks/antonio_guterres_refugees_have_the_right_to_be_protected', '2015']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+most+people+outside+of+africa+don+t+know+much+about+the+war+in+congo++so+let+me+give+you+a
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+congolese+conflict+is+the+deadliest+conflict+since+world+war+ii+it+has+caused+almost+four+million+deaths
found 1 videos: [['/talks/severine_autesserre_to_solve_mass_violence_look_to_locals', '2015']]
selected: /talks/severine_autesserre_to_solve_mass_violence_look_to_locals
sleep 5 seconds to avoid blocking
------<2004>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SeyiOyesola_2007G.stm
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+to+kind+of+give+you+a+background+to+where+i+m+coming+from+so+that+a+lot+of+the+things+i+m+going+to+say+and+the+things+i+m+going+to+do+or
found 1 videos: [['/talks/maira_kalman_the_illustrated_woman', '2007']]
selected: /talks/maira_kalman_the_illustrated_woman
sleep 3 seconds to avoid blocking
------<2005>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ShabanaBasijRasikh_2012X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+remember+waking+up+one+morning+to+the+sound+of+joy+in+my+house
found 2 videos: [['/talks/shabana_basij_rasikh_dare_to_educate_afghan_girls', '2013'], ['/talks/young_ha_kim_be_an_artist_right_now', '2013']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+father+was+listening+to+bbc+news+on+his+small+gray+radio
found 1 videos: [['/talks/shabana_basij_rasikh_dare_to_educate_afghan_girls', '2013']]
selected: /talks/shabana_basij_rasikh_dare_to_educate_afghan_girls
sleep 4 seconds to avoid blocking
------<2006>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ShaffiMather_2009I.stm
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=made+me+to+make+a+big+career+change+last+year+becoming+a+full+time+practicing+lawyer+my+experiences
found 1 videos: [['/talks/shaffi_mather_a_new_way_to_fight_corruption', '2009']]
selected: /talks/shaffi_mather_a_new_way_to_fight_corruption
sleep 2 seconds to avoid blocking
------<2007>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ShahRukhKhan_2017.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+don+t+use+botox+as+yet+so+i+m+clean+but+i+do+behave+like+you+saw+like
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+do+that+i+sell+dreams++and+i+peddle+love+to+millions+of+people+back+home+in+india+who+assume+that+i+m+the+best+lover+in+the+world
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+don+t+tell+anyone+i+m+going+to+tell+you+i+m+not+but+i+never+let+that+assumption+go+away
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+also+been+made+to+understand+there+are+lots+of+you+here+who+haven+t+seen+my+work++and+i+feel+really+sad+for+you
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+doesn+t+take+away+from+the+fact+that+i+m+completely++self+obsessed+as+a+movie+star+should+be
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+when+my+my+friends++chris+and+juliet+called+me+here+to+speak+about+the+future+you+naturally+it+follows+i+m+going+to+speak+about+the+present+me
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=believe+that+humanity+is+a+lot+like+me
found 23 videos: [['/talks/ann_curry_how_to_restore_trust_in_journalism', '2018'], ['/talks/nick_bostrom_how_civilization_could_destroy_itself_and_4_ways_we_could_prevent_it', '2019'], ['/talks/nick_bostrom_what_happens_when_our_computers_get_smarter_than_we_are', '2015'], ['/talks/marlon_peterson_am_i_not_human_a_call_for_criminal_justice_reform', '2017'], ['/talks/steven_pinker_is_the_world_getting_better_or_worse_a_look_at_the_numbers', '2018'], ['/talks/juan_enriquez_what_will_humans_look_like_in_100_years', '2016'], ['/talks/shah_rukh_khan_thoughts_on_humanity_fame_and_love', '2017'], ['/talks/dylan_marron_empathy_is_not_endorsement', '2018'], ['/talks/heather_lanier_good_and_bad_are_incomplete_stories_we_tell_ourselves', '2017'], ['/talks/sebastian_thrun_and_chris_anderson_what_ai_is_and_isn_t', '2017'], ['/talks/euna_lee_what_i_learned_as_a_prisoner_in_north_korea', '2017'], ['/talks/ari_wallach_3_ways_to_plan_for_the_very_long_term', '2017'], ['/talks/halla_tomasdottir_and_bryn_freedman_the_crisis_of_leadership_and_a_new_way_forward', '2019'], ['/talks/zachary_r_wood_why_it_s_worth_listening_to_people_you_disagree_with', '2018'], ['/talks/nita_farahany_when_technology_can_read_minds_how_will_we_protect_our_privacy', '2018'], ['/talks/yuval_noah_harari_nationalism_vs_globalism_the_new_political_divide', '2017'], ['/talks/erika_pinheiro_what_s_really_happening_at_the_us_mexico_border_and_how_we_can_do_better', '2019'], ['/talks/anjali_kumar_my_failed_mission_to_find_god_and_what_i_found_instead', '2018'], ['/talks/doug_roble_digital_humans_that_look_just_like_us', '2019'], ['/talks/sarah_parcak_help_discover_ancient_ruins_before_it_s_too_late', '2017'], ['/talks/justin_baldoni_why_i_m_done_trying_to_be_man_enough', '2017'], ['/talks/rodin_lyasoff_how_autonomous_flying_taxis_could_change_the_way_you_travel', '2018'], ['/talks/azim_khamisa_and_ples_felix_what_comes_after_tragedy_forgiveness', '2018']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+is+it+is+it+s+an+aging+movie+star
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=grappling+with+all+the+newness+around+itself++wondering+whether+it+got+it+right+in+the+first+place+and+still+trying+to+find+a+way
found 1 videos: [['/talks/shah_rukh_khan_thoughts_on_humanity_fame_and_love', '2017']]
selected: /talks/shah_rukh_khan_thoughts_on_humanity_fame_and_love
sleep 4 seconds to avoid blocking
------<2008>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ShaiAgassi_2009.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+how+would+you+run+a+whole+country+without+oil++that+s+the+question+that
found 1 videos: [['/talks/juan_enriquez_the_life_code_that_will_reshape_the_future', '2007']]
selected: /talks/juan_enriquez_the_life_code_that_will_reshape_the_future
sleep 3 seconds to avoid blocking
------<2009>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ShaiReshef_2014.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=would+like+to+share+with+you
found 7 videos: [['/talks/sean_follmer_shape_shifting_tech_will_change_work_as_we_know_it', '2016'], ['/talks/keller_rinaudo_a_mini_robot_powered_by_your_phone', '2013'], ['/talks/chris_anderson_ted_s_secret_to_great_public_speaking', '2016'], ['/talks/peter_singer_the_why_and_how_of_effective_altruism', '2013'], ['/talks/carol_fishman_cohen_how_to_get_back_to_work_after_a_career_break', '2016'], ['/talks/rachel_botsman_we_ve_stopped_trusting_institutions_and_started_trusting_strangers', '2016'], ['/talks/clay_shirky_why_sopa_is_a_bad_idea', '2012']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+new+model+of+higher+education+a
found 8 videos: [['/talks/shai_reshef_an_ultra_low_cost_college_degree', '2014'], ['/talks/daphne_koller_what_we_re_learning_from_online_education', '2012'], ['/talks/thomas_piketty_new_thoughts_on_capital_in_the_twenty_first_century', '2014'], ['/talks/stuart_firestein_the_pursuit_of_ignorance', '2013'], ['/talks/blaise_aguera_y_arcas_how_computers_are_learning_to_be_creative', '2016'], ['/talks/michael_green_how_we_can_make_the_world_a_better_place_by_2030', '2015'], ['/talks/casey_gerald_the_gospel_of_doubt', '2016'], ['/talks/amos_winter_the_cheap_all_terrain_wheelchair', '2012']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=model+that+once+expanded+can+enhance+the+collective+intelligence+of+millions+of+creative+and+motivated+individuals+that+otherwise+would+be+left+behind
found 1 videos: [['/talks/shai_reshef_an_ultra_low_cost_college_degree', '2014']]
selected: /talks/shai_reshef_an_ultra_low_cost_college_degree
sleep 3 seconds to avoid blocking
------<2010>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ShakaSenghor_2014.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+killed+a+man++i+was+a+young+drug+dealer+with+a+quick+temper
found 1 videos: [['/talks/shaka_senghor_why_your_worst_deeds_don_t_define_you', '2014']]
selected: /talks/shaka_senghor_why_your_worst_deeds_don_t_define_you
sleep 1 seconds to avoid blocking
------<2011>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ShaneKoyczan_2013.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+was+a+kid++i+hid+my+heart+under+the+bed+because+my+mother+said
found 13 videos: [['/talks/harry_baker_a_love_poem_for_lonely_prime_numbers', '2015'], ['/talks/shane_koyczan_to_this_day_for_the_bullied_and_beautiful', '2013'], ['/talks/sarah_kaminsky_my_father_the_forger', '2011'], ['/talks/bono_the_good_news_on_poverty_yes_there_s_good_news', '2013'], ['/talks/melissa_fleming_a_boat_carrying_500_refugees_sunk_at_sea_the_story_of_two_survivors', '2015'], ['/talks/pamela_meyer_how_to_spot_a_liar', '2011'], ['/talks/aicha_el_wafi_phyllis_rodriguez_the_mothers_who_found_forgiveness_friendship', '2011'], ['/talks/bruce_feiler_the_council_of_dads', '2011'], ['/talks/david_kelley_how_to_build_your_creative_confidence', '2012'], ['/talks/james_a_white_sr_the_little_problem_i_had_renting_a_house', '2015'], ['/talks/khadija_gbla_my_mother_s_strange_definition_of_empowerment', '2015'], ['/talks/nancy_frates_meet_the_mom_who_started_the_ice_bucket_challenge', '2014'], ['/talks/jack_andraka_a_promising_test_for_pancreatic_cancer_from_a_teenager', '2013']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=careful+someday+someone+s+going+to+break+it
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=take+it+from+me+under+the+bed+is+not+a+good+hiding+spot
found 2 videos: [['/talks/jean_paul_mari_the_chilling_aftershock_of_a_brush_with_death', '2015'], ['/talks/shane_koyczan_to_this_day_for_the_bullied_and_beautiful', '2013']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+know+because+i+ve+been+shot+down+so+many+times+i+get+altitude+sickness+just+from+standing+up+for+myself
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+that+s+what+we+were+told+stand+up+for+yourself+and+that+s+hard+to+do+if+you+don+t+know+who+you+are
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+were+expected+to+define+ourselves+at+such+an+early+age
found 2 videos: [['/talks/shane_koyczan_to_this_day_for_the_bullied_and_beautiful', '2013'], ['/talks/colin_grant_how_our_stories_cross_over', '2014']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+if+we+didn+t+do+it+others+did+it+for+us+geek+fatty++slut++fag
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+at+the+same+time+we+were+being+told+what+we+were++we+were+being+asked+what+do+you+want+to+be
found 7 videos: [['/talks/sheryl_sandberg_so_we_leaned_in_now_what', '2014'], ['/talks/leana_wen_what_your_doctor_won_t_disclose', '2014'], ['/talks/suzanne_talhouk_don_t_kill_your_language', '2014'], ['/talks/young_ha_kim_be_an_artist_right_now', '2013'], ['/talks/rodney_brooks_why_we_will_rely_on_robots', '2013'], ['/talks/paul_bloom_the_origins_of_pleasure', '2011'], ['/talks/alaa_murabit_what_my_religion_really_says_about_women', '2015']]
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+always+thought+that+was+an+unfair+question+it+presupposes+that+we+can+t+be+what+we+already+are+we+were+kids++when+i+was+a+kid+i+wanted+to+be+a+man
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+wanted+a+registered+retirement+savings+plan+that+would+keep+me+in+candy+long+enough+to+make+old+age+sweet
found 1 videos: [['/talks/shane_koyczan_to_this_day_for_the_bullied_and_beautiful', '2013']]
selected: /talks/shane_koyczan_to_this_day_for_the_bullied_and_beautiful
sleep 1 seconds to avoid blocking
------<2012>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ShaoLanHsueh_2013.stm
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+the+daughter+of+a+calligrapher
found 1 videos: [['/talks/shaolan_learn_to_read_chinese_with_ease', '2013']]
selected: /talks/shaolan_learn_to_read_chinese_with_ease
sleep 5 seconds to avoid blocking
------<2013>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ShaoLanHsueh_2016U.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+you+ever+been+asked+by+your+chinese+friend+what+is+your+zodiac+sign
found 1 videos: [['/talks/shaolan_the_chinese_zodiac_explained', '2016']]
selected: /talks/shaolan_the_chinese_zodiac_explained
sleep 5 seconds to avoid blocking
------<2014>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SharmeenObaidChinoy_2010U.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+you+to+look+at+children+who+become+suicide+bombers+through+a+completely+different+lens
found 1 videos: [['/talks/sharmeen_obaid_chinoy_inside_a_school_for_suicide_bombers', '2010']]
selected: /talks/sharmeen_obaid_chinoy_inside_a_school_for_suicide_bombers
sleep 4 seconds to avoid blocking
------<2015>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SharonBrous_2016W.stm
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+a+young+rabbi+in+the+spring+of+two+thousand+and+four+and+the+world+was+in+shambles+maybe+you+remember+every+day+we+heard+devastating+reports+from+the
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=war+in+iraq+there+were+waves+of+terror+rolling+across+the+globe+it+seemed+like+humanity+was+spinning+out+of+control
found 1 videos: [['/talks/sharon_brous_it_s_time_to_reclaim_religion', '2016']]
selected: /talks/sharon_brous_it_s_time_to_reclaim_religion
sleep 2 seconds to avoid blocking
------<2016>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ShashiTharoor_2009I.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+a+politician+and+a+government+minister+i+ve+become+rather+concerned+about+the
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+hype+we+re+hearing+about+our+own+country+all+this+talk+about+india+becoming+a+world+leader+even+the+next+superpower++in+fact+the+american
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+elephant+the+tiger+and+the+cell+phone+added+a+gratuitous+subtitle+saying+india+the+next+21st+century+power+and+i+just+don+t+think+that+s+what+india+s+all+about+or+should+be+all+about
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=indeed++what+worries+me+is+the+entire+notion+of+world+leadership+seems+to+me+terribly+archaic+it+s
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=redolent+of+james+bond+movies+and+kipling+ballads+after
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+what+constitutes+a+world+leader++if+it+s+population+we+re+on+course+to+top+the+charts++we+will+overtake+china+by+two+thousand+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+military+strength+well+we+have+the+world+s+fourth+largest+army+is+it+nuclear+capacity++we+know+we+have+that+the+americans+have+even+recognized+it+in+an+agreement
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+it+the+economy+well+we+have+now+the+fifth+largest+economy+in+the+world+in+purchasing+power+parity+terms
found 1 videos: [['/talks/shashi_tharoor_why_nations_should_pursue_soft_power', '2009']]
selected: /talks/shashi_tharoor_why_nations_should_pursue_soft_power
sleep 1 seconds to avoid blocking
------<2017>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ShawnAchor_2011X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+was+seven+years+old+and+my+sister+was+just+five+years+old+we+were+playing+on+top+of+a+bunk+bed++i+was+two+years+older+than+my+sister+at+the+time+i+mean
found 1 videos: [['/talks/shawn_achor_the_happy_secret_to_better_work', '2012']]
selected: /talks/shawn_achor_the_happy_secret_to_better_work
sleep 4 seconds to avoid blocking
------<2018>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SheaHembrey_2011.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+a+bit+of+an+unexpected+background+i+was+in+my+20s+before+i+ever+went+to+an+art+museum
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+grew+up+in+the+middle+of+nowhere+on+a+dirt+road+in+rural+arkansas+an+hour+from+the+nearest+movie+theater
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+it+was+a+great+place+to+grow+up+as+an+artist+because+i+grew+up+around+quirky+colorful+characters+who+were+great+at+making+with+their+hands
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+my+childhood+is+more+hick+than+i+could+ever+possibly+relate+to+you+and+also
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=more+intellectual+than+you+would+ever+expect+for+instance+me+and+my+sister+when+we+were+little+we+would+compete+to+see+who+could+eat+the+most+squirrel+brains+but
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+the+other+side+of+that+though+we
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=were+big+readers+in+our+house+and+if+the+tv+was+on+we+were+watching+a+documentary
found 1 videos: [['/talks/shea_hembrey_how_i_became_100_artists', '2011']]
selected: /talks/shea_hembrey_how_i_became_100_artists
sleep 1 seconds to avoid blocking
------<2019>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SheenaIyengar_2010G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+take+you+around+the+world+in+eighteen+minutes+my+base+of+operations
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+in+the+u+s+but+let+s+start+at+the+other+end+of+the+map++in+kyoto+japan
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=where+i+was+living+with+a+japanese+family+while+i+was+doing+part+of+my+dissertational+research+fifteen+years+ago
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+knew+even+then+that+i+would+encounter+cultural+differences+and+misunderstandings+but+they+popped+up+when+i+least+expected+it
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+my+first+day+i+went+to+a+restaurant+and+i+ordered+a+cup+of+green+tea+with+sugar
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=after+a+pause+the+waiter+said+one+does+not+put+sugar+in+green+tea
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+know+i+said+i+m+aware+of+this+custom+but+i+really+like+my+tea+sweet
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+response+he+gave+me+an+even+more+courteous+version+of+the+same+explanation
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+does+not+put+sugar+in+green+tea
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+understand+i+said+that+the+japanese+do+not+put+sugar+in+their+green+tea+but+i+d+like+to+put+some+sugar+in+my+green+tea
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=surprised+by+my+insistence+the+waiter+took+up+the+issue+with+the+manager+pretty+soon
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+lengthy+discussion+ensued+and+finally+the+manager+came+over+to+me+and+said
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+am+very+sorry+we+do+not+have+sugar
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well++since+i+couldn+t+have+my+tea+the+way+i+wanted+it+i+ordered+a+cup+of+coffee+which+the+waiter+brought+brought+over+promptly
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=resting+on+the+saucer+were+two+packets+of+sugar
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+failure+to+procure+myself+a+cup+of+sweet+green+tea+was+not+due+to+a+simple+misunderstanding
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+was+due+to+a+fundamental+difference+in+our+ideas+about+choice
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=from+my+american+perspective+when+a+paying+customer+makes+a+reasonable+request+based+on+her+preferences+she+has+every
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=right+to+have+that+request+met
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+american+way+to+quote+burger+king+is+to+have+it+your+way+because+as+starbucks+says+happiness+is+in+your+choices
found 1 videos: [['/talks/sheena_iyengar_the_art_of_choosing', '2010']]
selected: /talks/sheena_iyengar_the_art_of_choosing
sleep 5 seconds to avoid blocking
------<2020>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SheenaIyengar_2011S.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+many+choices+you+make+in+a+typical+day
found 12 videos: [['/talks/sheena_iyengar_how_to_make_choosing_easier', '2012'], ['/talks/halla_tomasdottir_a_feminine_response_to_iceland_s_financial_crash', '2010'], ['/talks/rebecca_saxe_how_we_read_each_other_s_minds', '2009'], ['/talks/amanda_bennett_we_need_a_heroic_narrative_for_death', '2013'], ['/talks/eben_bayer_are_mushrooms_the_new_plastic', '2010'], ['/talks/jeff_speck_the_walkable_city', '2013'], ['/talks/susan_cain_the_power_of_introverts', '2012'], ['/talks/jer_thorp_make_data_more_human', '2012'], ['/talks/iwan_baan_ingenious_homes_in_unexpected_places', '2013'], ['/talks/amory_lovins_a_40_year_plan_for_energy', '2012'], ['/talks/atul_gawande_how_do_we_heal_medicine', '2012'], ['/talks/beau_lotto_amy_o_toole_science_is_for_everyone_kids_included', '2012']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=do+you+know+how+many+choices+you+make+in+typical+week++i+recently+did+a+survey+with+over+two+thousand+americans
found 1 videos: [['/talks/sheena_iyengar_how_to_make_choosing_easier', '2012']]
selected: /talks/sheena_iyengar_how_to_make_choosing_easier
sleep 3 seconds to avoid blocking
------<2021>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SheikhaAlMayassa_2010W.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=both+myself+and+my+brother+belong+to+the+under+thirty+demographic++which+pat+said+makes+seventy+percent+but+according+to+our+statistics+it+makes+sixty+percent+of+the+region+s+population
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=qatar+is+no+exception+to+the+region+it+s+a+very+young+nation+led+by+young+people+we+have+been
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=reminiscing+about+the+latest+technologies+and+the+ipods+and+for+me+the+abaya+my+traditional+dress+that+i+m+wearing+today
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+this+is+not+a+religious+garment+nor+is+it+a+religious+statement++instead++it+s+a+diverse+cultural+statement+that+we+choose+to+wear
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+i+remember+a+few+years+ago
found 10 videos: [['/talks/roz_savage_why_i_m_rowing_across_the_pacific', '2010'], ['/talks/hasan_elahi_fbi_here_i_am', '2011'], ['/talks/jessica_jackley_poverty_money_and_love', '2010'], ['/talks/rory_bremner_a_one_man_world_summit', '2009'], ['/talks/josette_sheeran_ending_hunger_now', '2011'], ['/talks/clifford_stoll_the_call_to_learn', '2008'], ['/talks/mark_bittman_what_s_wrong_with_what_we_eat', '2008'], ['/talks/neil_macgregor_2600_years_of_history_in_one_object', '2012'], ['/talks/lewis_pugh_how_i_swam_the_north_pole', '2009'], ['/talks/tan_le_my_immigration_story', '2012']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+journalist+asked+dr+sheikha+who+s+sitting+here++president+of+qatar+university+who+by+the+way+is+a+woman
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+asked+her+whether+she+thought+the+abaya+hindered+or+infringed+her+freedom+in+any+way
found 1 videos: [['/talks/sheikha_al_mayassa_globalizing_the_local_localizing_the_global', '2012']]
selected: /talks/sheikha_al_mayassa_globalizing_the_local_localizing_the_global
sleep 3 seconds to avoid blocking
------<2022>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SheilaNirenberg_2011P.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+study+how+the+brain+processes+information+that+is+how+it+takes+information+in+from+the+outside+world+and+converts+it+into+patterns+of+electrical+activity++and+then+how+it+uses+those+patterns+to+allow+you+to+do+things+to+see+hear
error: request timeout
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+m+really+a+basic+scientist+not+a+clinician++but+in+the+last+year+and+a+half+i+ve+started+to+switch+over
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+use+what+we+ve+been+learning+about+these+patterns+of+activity+to+develop+prosthetic+devices
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+what+i+wanted+to+do+today+is
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=show+you+an+example+of+this+it+s+really+our+first+foray+into+this+it+s+the+development+of+a+prosthetic+device+for+treating+blindness
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+let+me+start+in+on+that+problem
found 12 videos: [['/talks/markham_nolan_how_to_separate_fact_and_fiction_online', '2012'], ['/talks/donald_sadoway_the_missing_link_to_renewable_energy', '2012'], ['/talks/kevin_slavin_how_algorithms_shape_our_world', '2011'], ['/talks/hasan_elahi_fbi_here_i_am', '2011'], ['/talks/brian_goldman_doctors_make_mistakes_can_we_talk_about_that', '2012'], ['/talks/ali_carr_chellman_gaming_to_re_engage_boys_in_learning', '2011'], ['/talks/dee_boersma_pay_attention_to_penguins', '2010'], ['/talks/ernesto_sirolli_want_to_help_someone_shut_up_and_listen', '2012'], ['/talks/hans_rosling_let_my_dataset_change_your_mindset', '2009'], ['/talks/luis_von_ahn_massive_scale_online_collaboration', '2011'], ['/talks/david_mackay_a_reality_check_on_renewables', '2012'], ['/talks/pankaj_ghemawat_actually_the_world_isn_t_flat', '2012']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+are+ten+million+people+in+the+u+s+and+many+more+worldwide+who+are+blind+or+are+facing+blindness
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=due+to+diseases+of+the+retina++diseases+like+macular+degeneration
found 1 videos: [['/talks/sheila_nirenberg_a_prosthetic_eye_to_treat_blindness', '2011']]
selected: /talks/sheila_nirenberg_a_prosthetic_eye_to_treat_blindness
sleep 2 seconds to avoid blocking
------<2023>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SheilaPatek_2004.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=learn+how+to+play+the+lobster+we+have+some+here++and+that+s+not+a+joke+we+really+do+so+come+up+afterwards+and+i+ll+show+you+how+to+play+a+lobster+so+actually+i+started
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=working+on+what+s+called+the+mantis+shrimp+a+few+years
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+they+make+sound+this+is+a+recording+i+made+of+a+mantis+shrimp
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+found+off+the+coast+of+california
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+while+that+s+an+absolutely+fascinating+sound
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+actually+turns+out+to+be+a+very+difficult+project
found 2 videos: [['/talks/aubrey_de_grey_a_roadmap_to_end_aging', '2006'], ['/talks/amy_smith_simple_designs_to_save_a_life', '2006']]
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+figure+out+how+and+why+mantis+shrimp+or+stomatopods+make+sound+i+started+to+think+about+their+appendages++and+mantis+shrimp+are+called+mantis+shrimp+after+the+praying+mantises+which+also+have+a+fast+feeding+appendage
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+started+to+think+well+maybe+it+will
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=be+interesting++while+listening+to+their+sounds+to+figure+out+how+these+animals
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=generate+very+fast+feeding+strikes+and+so+today+i+ll+talk+about
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+extreme+stomatopod+strike+work+that+i+ve+done+in+collaboration+with+wyatt+korff+and+roy+caldwell+so+mantis+shrimp+come+in+two+varieties
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+are+spearers+and+smashers+and+this+is+a+spearing+mantis+shrimp+or+stomatopod++and+he+lives+in+the+sand++and+he+catches+things+that+go+by+overhead
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+a+quick+strike+like+that
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+if+we+slow+it+down+a+bit+this+is+the+mantis+shrimp+the+same+species
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=recorded+at+one+thousand+frames+a+second++played+back+at+fifteen+frames+per+second++and+you+can+see+it+s+just+a+really+spectacular
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+the+limbs++exploding+upward+to+actually+just+catch+a+dead+piece+of+shrimp+that+i
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=had+offered+it+now+the+other+type+of+mantis+shrimp
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+the+smasher+stomatopod++and+these+guys+open+up+snails+for+a+living+and+so+this+guy
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=gets+the+snail+all+set+up+and+gives+it+a+good
found 1 videos: [['/talks/kevin_kelly_how_technology_evolves', '2006']]
selected: /talks/kevin_kelly_how_technology_evolves
sleep 1 seconds to avoid blocking
------<2024>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ShekharKapur_2009I.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+re+all+talking+about+this+great+english+icon+and+saying+she+s+a+fantastic+woman+she+does+everything+how+are+we+going+to+introduce+her+so+we+went+around+the+table+with+the+studio+and+the+producers+and+the+writer+and+they+came
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+hire+him+for+and+the+third+said
found 12 videos: [['/talks/bernie_dunlap_the_life_long_learner', '2008'], ['/talks/seth_godin_the_tribes_we_lead', '2009'], ['/talks/shekhar_kapur_we_are_the_stories_we_tell_ourselves', '2010'], ['/talks/shukla_bose_teaching_one_child_at_a_time', '2010'], ['/talks/nicholas_negroponte_one_laptop_per_child_two_years_on', '2008'], ['/talks/temple_grandin_the_world_needs_all_kinds_of_minds', '2010'], ['/talks/melinda_gates_what_nonprofits_can_learn_from_coca_cola', '2010'], ['/talks/majora_carter_3_stories_of_local_eco_entrepreneurship', '2010'], ['/talks/sugata_mitra_kids_can_teach_themselves', '2008'], ['/talks/stewart_brand_the_long_now', '2008'], ['/talks/ze_frank_my_web_playroom', '2010'], ['/talks/mallika_sarabhai_dance_to_change_the_world', '2009']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+s+find+another+director+i+thought+i+had+better+change+so+we+had+a+lot+of+discussion+on+how+to+introduce+elizabeth+and+i+said+ok+maybe+i+am+too+bollywood+maybe
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=elizabeth+this+great+icon+dancing+what+are+you+talking+about
found 1 videos: [['/talks/shekhar_kapur_we_are_the_stories_we_tell_ourselves', '2010']]
selected: /talks/shekhar_kapur_we_are_the_stories_we_tell_ourselves
sleep 2 seconds to avoid blocking
------<2025>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ShereenElFeki_2009G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+this+is+my+first+time+at+ted++i+ve+decided+to+bring+along+an+old+friend+to+help+break+the+ice+a+bit
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+right+this+is+barbie+she+s+fifty+years+old+and+she+s+looking+as+young+as+ever
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+d+also+like+to+introduce+you+to+what+may+be+an+unfamiliar+face
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+fulla+fulla+is+the+arab+world+s+answer+to+barbie
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+according+to+proponents+of+the+clash+of+civilizations
found 1 videos: [['/talks/shereen_el_feki_pop_culture_in_the_arab_world', '2009']]
selected: /talks/shereen_el_feki_pop_culture_in_the_arab_world
sleep 2 seconds to avoid blocking
------<2026>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ShereenElFeki_2012S.stm
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+actually+less+than+two+years+ago+in+a+kingdom+not+so+very+far+away
found 4 videos: [['/talks/frans_de_waal_moral_behavior_in_animals', '2012'], ['/talks/shereen_el_feki_hiv_how_to_fight_an_epidemic_of_bad_laws', '2012'], ['/talks/carin_bondar_the_birds_and_the_bees_are_just_the_beginning', '2014'], ['/talks/jane_mcgonigal_gaming_can_make_a_better_world', '2010']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+was+a+man+who+traveled+many+miles+to+come+to+work+at+the+jewel+in
found 1 videos: [['/talks/shereen_el_feki_hiv_how_to_fight_an_epidemic_of_bad_laws', '2012']]
selected: /talks/shereen_el_feki_hiv_how_to_fight_an_epidemic_of_bad_laws
sleep 5 seconds to avoid blocking
------<2027>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ShereenElFeki_2013G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+was+in+morocco+in+casablanca+not+so+long+ago++i+met+a+young+unmarried+mother+called+faiza
found 1 videos: [['/talks/shereen_el_feki_a_little_told_tale_of_sex_and_sensuality', '2014']]
selected: /talks/shereen_el_feki_a_little_told_tale_of_sex_and_sensuality
sleep 5 seconds to avoid blocking
------<2028>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SherryTurkle_2012.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=just+a+moment+ago+my+daughter+rebecca
found 1 videos: [['/talks/sherry_turkle_connected_but_alone', '2012']]
selected: /talks/sherry_turkle_connected_but_alone
sleep 4 seconds to avoid blocking
------<2029>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SherwinNuland_2001.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+to+do+pretty+much+what+i+did+the+first+time+which+is+to+choose+a+light+hearted+theme+last+time+i+talked+about+death+and+dying
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+time+i+m+going+to+talk+about+mental+illness
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+it+has+to+be+technological+so+i+ll+talk+about+electroshock+therapy
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know+ever+since+man+had+any+notion+that+some+of+his+other+people+his+colleagues
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=could+be+different+could+be+strange+could+be+severely+depressed+or+what+we+now+recognize+as+schizophrenia
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+was+certain+that+this+kind+of+illness+had+to+come+from+evil+spirits+getting+into+the+body+so+the+way+of+treating
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+diseases+in+early+times+was+to+in+some+way+or+other+exorcise+those+evil+spirits+and+this+is+still+going+on+as+you+know
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+it+wasn+t+enough+to+use+the+priests+when+medicine+became+somewhat+scientific
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+about+four+hundred+and+fifty+bc+with+hippocrates+and+those+boys+they+tried+to+look+for+herbs+plants
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+would+literally+shake+the+bad+spirits+out+so+they+found
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=certain+plants+that+could+cause+convulsions+and+the+herbals+the+botanical+books+of+up+to+the+late+middle+ages+the+renaissance
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+filled+with+prescriptions+for+causing+convulsions+to+shake+the+evil+spirits+out
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=finally+in+about+the+sixteenth+century+a+physician+whose+name+was+theophrastus
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=bombastus+aureolus+von+hohenheim+called+paracelsus+a+name+probably+familiar+to+some+people+here
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=found+that+he+could+predict+the+degree+of+convulsion+by+using+a+measured+amount+of+camphor+to+produce+the+convulsion+can+you+imagine
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=your+closet+pulling+out+a+mothball+and+chewing+on+it+if+you+re+feeling+depressed+it+s+better+than+prozac+but+i+wouldn+t+recommend+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+what+we+see+in+the+seventeenth+eighteenth+century+is+the+continued+search+for+medications+other+than+camphor+that+ll+do+the+trick
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+along+comes+benjamin+franklin+and+he+comes+close+to+convulsing+himself+with+a+bolt+of+electricity+off+the+end+of+his+kite++and+so+people
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+were+largely+treating+depression+began+to+notice+among+their+patients+who+were+also+epileptics+that+if+they+had+an+epileptic+a+series+of+epileptic+fits+a+lot+of+them+in+a+row+the+depression+would+very+frequently+lift+not+only+would+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+ve+got+electricity+we+ll+plug+somebody+into+the+wall+that+always+makes
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hair+stand+up+and+people+shake+a+lot+so+they+tried+it+on+a+few+pigs+and+none+of+the+pigs+were+killed
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+they+went+to+the+police+and+they+said+we+know+that+at+the+rome+railroad+station+there+are+all+these+lost+souls+wandering+around+muttering+gibberish+can+you+bring+one+of+them+to+us
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=someone+who+is+as+the+italians+say+cagoots
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+they+found+this+cagoots+guy+a+39+year+old+man+who+was+really+hopelessly+schizophrenic+who+was+known+had+been+known+for+months
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=literally+defecating+on+himself+talking+nothing+that+made+any+sense+and+they+brought+him+into+the+hospital
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+these+three+psychiatrists+after+about+two+or+three+weeks+of+observation++laid+him+down
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+a+table+connected+his+temples
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+a+very+small+source+of+current+they+thought+well+we+ll
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=try+fifty+five+volts+two+tenths+of+a+second+that+s+not+going+to+do+anything+terrible+to+him+so+they+did+that
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+i+have+the+following+from+a+firsthand+observer+who+told+me+this+about+thirty+five
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+thinking+about+these+things
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+some+research+project+of+mine
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=remember+he+wasn+t+even+put+to+sleep
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=after+this+major+grand+mal+convulsion+sat+right+up
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=looked+at+these+three+fellas+and+said++what+the+fuck+are+you+assholes+trying+to+do
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+i+could+only+say+that+in+italian
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well++they+were+happy+as+could+be+because+he+hadn+t+said+a+rational+word+in+the+weeks+of+observation
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+they+they+plugged+him+in+again+and+this+time+they+used
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+hundred+and+ten+volts+for+half+a+second
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+to+their+amazement++after+it+was+over+he+began+speaking+like+he+was+perfectly+well+he+relapsed+a+little+bit+they+gave+him+a+series+of+treatments
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+he+was+essentially+cured+but+of+course+having+schizophrenia++within+a+few+months+it+returned
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+they+wrote+a+paper+about+this+and+everybody+in+the+western+world+began+using+electricity+to+convulse+people+who+were+either+schizophrenic+or+severely+depressed
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+didn+t+work+very+well+on+the+schizophrenics++but+it+was+pretty+clear+in+the++30s+and+by+the+middle+of+the
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=therapy+was+very+very+effective+in+the+treatment+of+depression+and+of+course+in+those+days+there+were+no+antidepressant+drugs+and+it+became+very+very+popular
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=convulse+them+but+the+real+difficulty+was+that+there+was+no+way+to+paralyze+muscles+so+people+would+have+a+real+grand+mal+seizure
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=bones+were+broken+especially+in+old+fragile+people
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+in+the+1950s+late+1950s+the+so+called+muscle+relaxants+were+developed+by+pharmacologists++and+it+got+so+that+you+could+induce+a+complete+convulsion+an+electroencephalographic+convulsion+you+could+see+it+on+the+brain+waves
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=without+causing+any+convulsion+in+the+body+except+a+little+bit+of+twitching+of+the+toes
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+first+antidepressants+came+out+tofranil+was+the+first+in+the+late
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+were+others+and+they+were+very+effective+and+patients++rights+groups+seemed+to+get+very+upset+about+the+kinds+of+things+that+they+would+witness+and+so+the+whole+idea+of+electroconvulsive+electroshock+therapy
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+has+had+a+renaissance+in+the+last+ten+years++and+the+reason+that+it+has+had+a+renaissance+is+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=probably+about+ten+percent+of+the+people+severe+depressives+do+not+respond+regardless+of+what+is+done+for+them+now
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=why+am+i+telling+you+this+story+at+this+meeting++i+m+telling+you+this+story+because+actually+ever+since+richard+called
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=me+and+asked+me+to+talk+about
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+would+be+new+to+this+audience+that+we+had+never+talked+about+never+written+about+i+ve+been+planning+this+moment
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+reason+really+is+that+i+am+a+man+who+almost+thirty+years+ago+had+his+life+saved
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+two+long+courses+of+electroshock
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=therapy+and+let+me+tell+you+this+story++i+was
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+a+marriage+to+use+the+word+bad+would+be+perhaps+the+understatement+of+the+year++it+was+dreadful
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+are+i+m+sure+enough+divorced+people+in+this+room+to+know+about
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+knows+what+being+someone+who+had+had+a+very+difficult+childhood+a+very+difficult+adolescence+it+had+to+do
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+not+quite+poverty+but+close+it+had+to+do+with+being+brought+up+in+a+family+where+no+one+spoke
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=english+no+one+could+read+or+write+english+it+had+to+do+with+death+and+disease+and+lots+of+other+things+i+was+a+little+prone+to+depression
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+things+got+worse+as+we+really+began+to+hate+each+other++i+became+progressively+depressed+over+a+period+of+a+couple+of+years++trying+to+save+this+marriage
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+was+inevitably+not+to+be+saved
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+my+major+surgical+cases+i+was+scheduling+them+for+twelve+one+o+clock+in+the+afternoon+because+i+couldn+t+get+out+of+bed+before+about+eleven+o+clock+and+anybody+who+s+been+depressed+here
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+couldn+t+even+pull+the+covers+off+myself+well+you+re+in+a+university+medical+center+where+everybody+knows+everybody+and+it+s+perfectly+clear+to+my+colleagues
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+my+referrals+began+to+decrease+as+my+referrals+began+to+decrease++i+clearly+became+increasingly
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=depressed+until+i+thought+my+god
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+can+t+work+anymore+and+in+fact+it+didn+t+make+any+difference+because+i+didn+t+have+any+patients+anymore
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+the+advice+of+my+physician
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+had+myself+admitted+to+the+acute+care+psychiatric+unit+of+our+university+hospital
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+my+colleagues+who+had+known+me+since+medical+school+in+that+place+said+don+t+worry+chap+six+weeks+you+re+back+in+the+operating+room+everything+s+going+to+be+great
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+you+know+what+bovine+stercus+is
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+proved+to+be+a+lot+of+bovine+stercus
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+know+some+people+who+got+tenure+in+that+place+with+lies+like+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+was+one+of+their+failures++but+it+wasn+t+that+simple+because+by+the+time+i+got+out+of
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+not+functional+at+all+i+could+hardly+see+five+feet+in+front+of+myself
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+shuffled+when+i+walked+i+was+bowed+over++i+rarely+bathed+i+sometimes+didn+t+shave+it+was+dreadful
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+was+clear+not+to+me+because+nothing+was+clear+to+me+at+that+time+anymore
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+i+would+need+long+term+hospitalization
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+the+institute+of+living+which+used+to+be+called+the+hartford+retreat+it+was+founded+in+the+eighteenth+century+the+largest+psychiatric+hospital
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+state+of+connecticut+other+than+the+huge+public+hospitals+that+existed+at+that+time
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+tried+everything+they+had+they+tried+the+usual+psychotherapy+they+tried+every+medication+available+in+those+days+and+they+did+have+tofranil+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=other+things+mellaril+who+knows+what+nothing+happened+except+that+i+got+jaundiced+from+one+of+these+things++and+finally
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+well+known+in+connecticut+they+decided+they+better+have+a+meeting+of+the+senior+staff+all+the+senior+staff+got+together+and+i+later
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+decided+that+there+was+nothing+that+could+be+done+for+this+surgeon
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+had+essentially+separated+himself+from+the+world+who+by+that+time
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=had+become+so+overwhelmed+not+just+with+depression
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+feelings+of+worthlessness+and+inadequacy+but+with+obsessional+thinking
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=obsessional+thinking+about+coincidences+and+there+were+particular+numbers+that+every+time+i+saw+them
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=just+awful+awful+stuff+remember+when+you+were+a+kid+and+you+had+to+step+on+every+line+well+i+was+a+grown+man+who+had+all+of+these+rituals
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+got+so+there+was+a+throbbing+there+was+a+ferocious+fear+in+my+head+you+ve+seen+this+painting+by+edvard+munch+the+scream
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+scream+it+was+impossible+so+they+decided+there+was+no+therapy++there+was+no+treatment++but+there+was+one+treatment++which+actually+had+been+pioneered+at+the+hartford+hospital
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+can+imagine+what+it+was+it+was+pre+frontal+lobotomy
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=know+this+again+i+found+this+out+later+that+the+only+thing+that+could+be+done+was+for+this
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=man+to+have+a+pre+frontal+lobotomy++well++as+in+all+hospitals+there+was+a
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=resident+assigned+to+my+case+he+was+twenty+seven+years+old+and+he+would+meet+with+me+two+or+three+times+a+week++and+of+course+i+had+been+there+what+three+or+four+months+at+the+time
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+he+asked+to+meet+with+the+senior+staff+and+they+agreed+to+meet+with+him+because+he+was+very+well+thought+of+in+that+place+they+thought+he
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+he+dug+in+his+heels+and+said+no+i+know+this+man+better+than+any+of+you+i+have+met+with+him+over+and+over+again+you+ve+just+seen+him+from+time+to+time+you+ve+read+reports+and+so+forth
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+really+honestly+believe+that+the+basic+problem+here+is+pure+depression+and+all+of+the+obsessional+thinking+comes+out+of+it
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+know+of+course+what+ll+happen+if+you+do+a+pre+frontal+lobotomy+any+of+the+results+along
error: request timeout
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=from+pretty+bad+to+terrible+terrible+terrible+is+going+to+happen+if+he+does+the+best+he+can
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+will+have+no+further+obsessions+probably+no+depression+but+his+affect+will+be+dulled+he+will+never+go+back+to+surgery+he+will+never+be+the+loving+father+that+he+was+to+his+two+children+his+life+will+be+changed
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+he+has+the+usual+result+he+will+end+up+like++one+flew+over+the+cuckoo+s+nest++and+you+know+about+that+just
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=essentially+in+a+stupor+the+rest+of+his+life
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well++he+said+can+t+we+try+a+course+of+electroshock+therapy+and+you+know+why+they+agreed+they+agreed+to+humor+him
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+just+thought+well+we+ll+give+a+course+of+ten++and+so+we+ll+lose+a+little+time+big+deal+it+doesn+t
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+they+gave+the+course+of+ten+and+the+first+the+usual+course+incidentally+was+six+to+eight+and+still+is+six+to+eight
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=plugged+me+into+the+wires+put+me+to+sleep+gave+me+the+muscle+relaxant+six+didn+t+work+seven+didn+t+work+eight+didn+t+work
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+nine+i+noticed+and+it
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+wonderful+that+i+could+notice+anything
error: request timeout
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thought+this+would+do+any+good+they+thought+this+was+a+temporary+change+but+lo+and+behold+by+sixteen
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+seventeen+there+were+demonstrable+differences+in+the+way+i+felt+by+eighteen+and+nineteen+i+was+sleeping+through+the+night++and+by+twenty
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+had+the+sense+i+really+had+the+sense
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+now+strong+enough+that+by+an+act+of+will+i+could+blow+the+obsessional+thinking+away++i+could+blow+the+depression+away
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+ve+never+forgotten+i+never+will+forget
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+a+sunday+morning+in+january+of
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=standing+in+the+kitchen+by+myself+and+thinking+i+ve+got+the+strength+now+to+do
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+as+though+those+tightly+coiled+wires+in+my+head+had+been+disconnected+and+i+could+think+clearly
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+need+a+formula+i+need+some+thing+to+say+to+myself+when+i+begin+thinking+obsessionally+obsessively
error: request timeout
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+gilbert+and+sullivan+fans+in+this+room+will+remember+ruddigore+and+they+will+remember+mad
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+will+remember+that+she+was+married+to+a+fellow+named+sir+despard+murgatroyd+and+she+used+to+go+nuts++every+five+minutes+or+so+in+the+play
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+he+said+to+her+we+must+have+a+word+to+bring+you+back+to+reality++and+the+word+my+dear+will+be++basingstoke
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+every+time+she+got+a+little+nuts+he+would+say
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=better+and+it+was+very+simple++it+was+ah+fuck+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=much+better+than+basingstoke+at+least+for+me
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+worked+my+god+it+worked++every+time+i+would+begin+thinking+obsessionally+again++once+more+after+twenty
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=things+got+better+and+better+and+within+three+or+four+months
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+discharged+from+that+hospital+and+i+joined+a+group+of+surgeons+where+i+could+work+with+other+people
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+community+not+in+new+haven+but+fairly+close+by+i
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=stayed+there+for+three+years+at+the+end+of+three+years+i+went+back+to+new+haven
error: request timeout
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+brought+my+wife+with+me+actually+to+make+sure+i+could+get+through+this++my+children
error: request timeout
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+live+with+us+we+had+two+more+children+after+that+resuscitated+the+career++even+better+than+it+had+been+before
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=went+right+back+into+the+university
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+began+to+write+books+well+you+know
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+been+a+wonderful+life+it+s+been+as+i+said+close+to+thirty+years
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+stopped+doing+surgery+about+six+years+ago+and+became+a+full+time+writer+as+many+people+know
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+it+s+been+very+exciting+it+s+been+very+happy+every+once+in+a+while+i+have+to+say
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+not+free+of+all+of+this
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+it+s+worked++it+s+always+worked
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=after+never+ever+talking+about+this+to+talk+about+it+now+well++those+of+you+who+know+some+of+these+books+know+that
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+is+about+death+and+dying+one+is+about+the+human+body+and+the+human
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=spirit+one+is+about+the+way+mystical+thoughts
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+constantly+in+our+minds++and+they+have+always+to+do
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+my+own+personal+experiences+one+might+think+reading+these+books
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+people+who+do+think+this+that+based+on+my+life+s
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+history+as+i+ve+portrayed+in+the+books+my+early+life+s+history+i+am+someone
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+has+overcome+adversity+that+i+am+someone+who+has
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=drunk+drank+drunk+of+the+bitter+dregs+of
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+childhood+and+emerged+not+just+unscathed+but+strengthened++i+really+have+it+figured+out+so+that+i+can
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=can+advise+people+about+death+and+dying+so+that+i+can+talk+about+mysticism
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+human+spirit++and+i+ve+always+felt+guilty+about+that
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+always+felt+that+somehow+i+was+an+impostor+because+my+readers+don+t+know+what+i+have+just+told+you
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+known+by+some+people+in+new+haven+obviously+but+it+is+not+generally+known
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+i+have+come+here+to+talk+about+this+today
error: request timeout
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+let+it+be+known+that+this+is+not+an+untroubled+mind+that+has+written
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+of+these+books+but+more+importantly+i+think
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+the+fact+that+a+very+significant+proportion+of+people+in+this+audience+are+under+thirty
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+there+are+many+of+course+who+are+well+over+thirty
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+under+thirty++and+it+looks+to+me+like+almost
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+of+you+are+either+on+the+cusp+of+a+magnificent+and+exciting+career+or+right+into+a+magnificent
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=anything+can+happen+to+you+things+change
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=accidents+happen+something+from+childhood+comes+back+to+haunt+you+you+can+be+thrown+off+the+track+i+hope+it+happens+to+none+of+you
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+will+probably+happen+to+a+small+percentage+of+you+to+those+to+whom+it+doesn+t+happen+there+will+be+adversities
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+i+with+the+bleakness+of+spirit++with+no+spirit++that+i+had+in+the
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+no+possibility+of+recovery++as+far+as+that+group+of+very+experienced+psychiatrists+thought+if+i+can
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=find+my+way+back+from+this
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=believe+me+anybody+can+find+their+way+back+from+any+adversity+that+exists+in+their+lives
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+for+those+who+are+older+who+have+lived+through+perhaps+not+something+as+bad+as+this++but+who+have+lived+through+difficult+times+perhaps+where+they+lost+everything+as+i+did+and+started+out+all+over+again
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=redemption++and+there+is+resurrection
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+are+resurrection+themes+in+every+society+that+has+ever+been+studied++and+it+is+because+not+just+only+do+we+fantasize+about+the+possibility+of+resurrection+and+recovery++but+it+actually
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=happens++and+it+happens+a+lot
found 0 videos: []
error: no video is found.
sleep 5 seconds to avoid blocking
------<2030>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SherwinNuland_2003.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know+i+am+so+bad+at+tech+that+my+daughter+who+is+now+forty+one+when+she+was+five+was+overheard+by+me
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+say+to+a+friend+of+hers++if+it+doesn+t+bleed+when+you+cut+it+my+daddy+doesn+t+understand+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=assignment+i+ve+been+given+may+be+an+insuperable+obstacle+for+me+but+i+m+certainly+going+to+try+what+have+i+heard+during+these+last
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=four+days+this+is+my+third+visit+to+ted+one+was+to+tedmed+and+one+as+you+ve+heard+was+a+regular+ted+two+years+ago
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+heard+what+i+consider+an+extraordinary+thing+that+i+ve+only+heard+a+little+bit+in+the+two+previous+teds+and
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+is+is+an+interweaving+and+an+interlarding+an+intermixing
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+a+sense+of+social+responsibility+in+so+many+of+the+talks
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=global+responsibility+in+fact++appealing+to+enlightened
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+it+goes+far+beyond+enlightened
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+the+speakers+have+been+talking+about+is+the+realization+as+you+listen+to+them+carefully+that+they+re+not+saying+well+this+is+what+we+should+do+this+is+what+i+would+like+you+to+do+it+s+this
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+what+i+have+done+because+i+m+excited+by+it+because+it+s+a+wonderful+thing+and+it+s+done+something+for+me+and+of+course+it+s+accomplished
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+the+old+concept++the+real+greek+concept+of+philanthropy+in+its+original+sense
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+humankind+and+the+only+explanation+i+can+have+for+some+of+what+you+ve+been+hearing+in+the+last+four+days+is+that+it+arises+in+fact
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=out+of+a+form+of+love+and+this+gives+me+enormous+hope+and+hope+of+course+is+the+topic+that+i+m+supposed+to+be+speaking+about+which+i+d+completely+forgotten+about+until+i+arrived
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+when+i+did+i+thought+well+i+d+better+look+this+word+up+in+the+dictionary++so++sarah+and+i+my+wife+walked+over+to+the+public+library+which+is+four+blocks+away+on+pacific+street
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+got+the+oed+and+we+looked+in+there+and+there+are+fourteen+definitions+of+hope
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=none+of+which+really+hits+you
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=between+the+eyes+as+being+the+appropriate+one+and+of+course+that+makes+sense+because+hope
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+an+abstract+phenomenon+it+s+an+abstract+idea+it+s+not+a+concrete
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well++it+reminds+me+a+little+bit+of+surgery++if+there+s+one+operation+for+a+disease+you+know+it+works++if+there+are+fifteen+operations+you+know+that+none+of+them+work++and+that+s+the+way+it+is+with+definitions+of+words+if+you+have+appendicitis+they+take+your+appendix
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+re+cured+if+you+ve+got+reflux+oesophagitis+there+are+fifteen+procedures+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=joe+schmo+does+it+one+way+and+will+blow+does+it+another+way+and+none+of+them+work+and+that+s+the+way+it+is+with+this+word+hope
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+all+come+down+to+the+idea+of+an+expectation+of+something+good+that+is+due+to+happen++and+you+know+what+i+found+out+the
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=root+of+the+word+hope+is+a+stem
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+is+the+same+root+from+which+the+word+curve+comes+from+but+what+it+means+in+the+original
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+change+in+direction+going+in+a+different+way
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+i+find+that+very+very+interesting+and+very+provocative+because+what+you+ve+been+hearing+in+the+last+couple+of+days+is
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+sense+of+going+in+different+directions+directions+that+are+specific+and+unique+to+problems+there+are
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=paradigms+you+ve+heard+that+word+several+times+in+the+last+four+days+and+everyone+s+familiar+with+kuhnian+paradigms+so+when+we+think+of+hope+now++we+have+to+think+of+looking+in+other+directions+than+we+have
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=been+looking+there+s+another+not+definition+but+description+of+hope+that+has+always+appealed+to+me
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+was+one+by+vclav+havel+in+his+perfectly
error: request timeout
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=breaking+the+peace+in+which+he+says+that+hope+does+not+consist+of+the+expectation+that+things+will+come+out+exactly+right
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+the+expectation+that+they+will+make+sense+regardless+of+how+they+come+out+i+can+t+tell+you+how+reassured+i+was
error: request timeout
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+that+glorious+presentation+by+dean+kamen+a+few+days+ago
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+wasn+t+sure+i+heard+it+right+so+i
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=found+him+in+one+of+the+inter+sessions+he+was+talking+to+a+very+large+man+but+i+didn+t+care+i+interrupted+and+i+said+did+you+say+this+he+said+i+think+so+so+here+s+what+it+is+i+ll+repeat+it
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+world+will+not+be+saved+by+the+internet+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+wonderful+do+you+know+what+the+world+will+be+saved+by+i+ll+tell+you+it+ll+be+saved+by+the+human+spirit
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+by+the+human+spirit+i+don+t+mean+anything+divine+i+don+t
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=mean+anything+supernatural+certainly+not+coming+from+this+skeptic+what+i+mean
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+this+ability+that+each+of+us+has
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+be+something+greater+than+herself+or+himself+to+arise+out+of+our+ordinary+selves+and+achieve+something+that+at+the+beginning+we+thought+perhaps+we+were+not
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=capable+of+on+an+elemental+level+we+have+all+felt+that+spirituality
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+the+time+of+childbirth+some+of+you+have+felt+it+in+laboratories+some+of+you+have+felt+it+at+the+workbench
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+feel+it+at+concerts+i+ve+felt+it+in+the+operating+room+at+the+bedside
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+is+an+elevation+of+us+beyond+ourselves+and+i+think+that+it+s+going+to+be+in+time
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+we+ve+been+hearing+about+bit+by+bit+by+bit+from+so+many+of+the+speakers+in+the+last+few+days+and+if+there+s+anything+that+has+permeated+this+room+it+is+precisely
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=whose+name+was+percy+shelley+now+we+all+think+that+shelley+obviously+is+the+great+romantic+poet+that+he+was+many+of+us+tend+to+forget
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+he+wrote+some+perfectly+wonderful+essays+too+and+the+most
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+defence+of+poetry+now+it+s+about+five+six+seven+eight+pages+long+and+it+gets+kind+of+deep+and+difficult+after+about+the+third+page+but+somewhere
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+the+second+page+he+begins
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=talking+about+the+notion+that+he+calls+moral+imagination+and+here+s+what+he+says
error: request timeout
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=generic+man+a+man+to+be+greatly+good+must+imagine+clearly
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+world+through+the+eyes+of+another+and+of
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=see+himself+and+the+world+not+just+the+world+but+see+himself+what+is+it+that+is+expected+of+us
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+the+billions+of+people+who+live
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+what+laurie+garrett+the+other+day+so+appropriately+called+despair+and+disparity+what+is+it+that+they+have
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+ask+of+us+what+is+it+that+we+have+every+right+to+ask+of+ourselves+out+of+our+shared+humanity
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+out+of+the+human+spirit++well+you+know+precisely
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+it+is+there+s+a+great+deal+of+argument+about+whether+we+as+the+great+nation+that+we+are+should+be+the+policeman+of+the
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+world+s+constabulary++but+there+should+be+virtually+no+argument
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+whether+we+should+be+the+world+s+healer+there+has+certainly+been+no+argument+about+that+in+this+room+in+the+past+four+days
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+if+we+are+to+be+the+world+s+healer+every+disadvantaged+person+in+this+world+including+in+the+united+states
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=every+disadvantaged+nation++and+perhaps+our+own+nation+becomes
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=our+patient+so+it+s+fun+to+think+about+the+etymology+of+the+word+patient
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+comes+initially+from+the+latin+patior++to+endure+or+to
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+go+back+to+the+old+indo+european+root+again+and+what+do+you+find+the++indo+european+stem+is+pronounced+payen+we+would+spell+it
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+lo+and+behold+mirabile+dictu+it+is+the+same+root
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+the+word+compassion+comes+from+p+a+e+n+so++the+lesson+is+very+clear
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+lesson+is+that+our+patient+the+world++and+the+disadvantaged+of+the+world
error: request timeout
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=our+compassion++but+beyond+our+compassion+and+far+greater+than+compassion+is+our+moral+imagination+and+our+identification
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+to+think+of+them+as+a+huge+forest+but+as+individual+trees+of+course+in+this+day+and+age++the+trick+is
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+to+let+each+tree+be+obscured+by+that+bush+in+washington+that+can+get+can+get+in+the+way
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+here+we+are+we+are+should+be
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=morally+committed+to+being+the+healer+of+the+world
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+have+had+examples+over+and+over+and+over
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=again+you+ve+just+heard+one+in+the+last+fifteen+minutes
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+only+had+that+commitment++but+had+the+charisma+the+brilliance+and+i+think+in+this+room+it+s+easy+to+use+the+word+brilliant+my+god
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+succeed+at+least+at+the+beginning+of+their+quest+and+who+no+doubt+will+continue+to+succeed+as+long+as+more+and+more+of+us+enlist+ourselves
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
error: no video is found.
sleep 4 seconds to avoid blocking
------<2031>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SherylSandberg_2010W.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+for+any+of+us+in+this+room+today+let+s+start+out+by+admitting+we+re+lucky
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+don+t+live+in+the+world+our+mothers+lived+in+our+grandmothers+lived+in+where+career+choices+for+women+were+so+limited
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=room+today+most+of+us+grew+up+in+a+world+where+we+have+basic+civil+rights+and+amazingly++we+still+live+in+a+world+where+some+women+don+t+have+them
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+all+that+aside++we+still+have+a+problem+and+it+s+a+real+problem++and+the+problem+is+this
found 2 videos: [['/talks/bill_strickland_rebuilding_a_neighborhood_with_beauty_dignity_hope', '2008'], ['/talks/david_agus_a_new_strategy_in_the_war_on_cancer', '2010']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=women+are+not+making+it+to+the+top+of+any+profession+anywhere+in+the+world
found 2 videos: [['/talks/sheryl_sandberg_why_we_have_too_few_women_leaders', '2010'], ['/talks/anil_gupta_india_s_hidden_hotbeds_of_invention', '2010']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+numbers+tell+the+story+quite+clearly+one+hundred
found 3 videos: [['/talks/brian_skerry_the_ocean_s_glory_and_horror', '2010'], ['/talks/elizabeth_murchison_fighting_a_contagious_cancer', '2011'], ['/talks/brian_greene_is_our_universe_the_only_universe', '2012']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+ninety+heads+of+state+nine+are+women
found 1 videos: [['/talks/halla_tomasdottir_a_feminine_response_to_iceland_s_financial_crash', '2010']]
selected: /talks/halla_tomasdottir_a_feminine_response_to_iceland_s_financial_crash
sleep 1 seconds to avoid blocking
------<2032>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SherylSandberg_2013W.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+so+not+my+regular+experience+as+i+know+anyone+else
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+we+first+started+talking+about+maybe+the+subject+wouldn+t+be+social+media+which+we+assumed+it+would+be++but+that+you+had+very+much+on+your+mind
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=positions+particularly+in+the+sector+of+technology+and+social+media++but
found 1 videos: [['/talks/sheryl_sandberg_so_we_leaned_in_now_what', '2014']]
selected: /talks/sheryl_sandberg_so_we_leaned_in_now_what
sleep 1 seconds to avoid blocking
------<2033>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SherylWuDunn_2010G.stm
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=rarely+makes+the+front+pages++it++however+is+enormous+in+both+scale+and+importance+look++you
found 1 videos: [['/talks/sheryl_wudunn_our_century_s_greatest_injustice', '2010']]
selected: /talks/sheryl_wudunn_our_century_s_greatest_injustice
sleep 3 seconds to avoid blocking
------<2034>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ShigeruBan_2013X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=making+buildings+out+of+paper+like+this+cardboard+tube+and+this+exhibition+is+the+first+one+i+did+using+paper
found 1 videos: [['/talks/shigeru_ban_emergency_shelters_made_from_paper', '2013']]
selected: /talks/shigeru_ban_emergency_shelters_made_from_paper
sleep 3 seconds to avoid blocking
------<2035>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ShihChiehHuang_2014U.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+born+in+taiwan++i+grew+up+surrounded+by+different+types+of+hardware+stores
found 1 videos: [['/talks/shih_chieh_huang_sculptures_that_d_be_at_home_in_the_deep_sea', '2014']]
selected: /talks/shih_chieh_huang_sculptures_that_d_be_at_home_in_the_deep_sea
sleep 4 seconds to avoid blocking
------<2036>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ShiloSuleman_2011P.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+story+begins+right+here+actually+in+rajasthan+about+two+years+ago
found 2 videos: [['/talks/shilo_shiv_suleman_using_tech_to_enable_dreaming', '2012'], ['/talks/pawan_sinha_how_brains_learn_to_see', '2010']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+in+the+desert+under+the+starry+skies+with+the+sufi+singer+mukhtiar+ali
found 1 videos: [['/talks/shilo_shiv_suleman_using_tech_to_enable_dreaming', '2012']]
selected: /talks/shilo_shiv_suleman_using_tech_to_enable_dreaming
sleep 2 seconds to avoid blocking
------<2037>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ShimonSchocken_2010X.stm
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+something+that+i+do+with+great+passion+and+commitment+and+when+i+m+on+my+bike++i+feel+that+i+connect+with
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+feel+that+i+m+united+with+this+country+s
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=history+and+biblical+law++and+also+for+me+biking+is+a+matter+of
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+empowerment+when+i+reach+the+summit+of+a+steep+mountain+in+the+middle+of+nowhere++i+feel+young
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=invincible++eternal++it+s+as+if+i+m+connecting+with+some+legacy+or+with+some+energy+far+greater+than
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=myself+you+can+see+my+fellow+riders+at+the+end+of+the+picture+looking+at+me+with+some
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=concern+and+here+is+another+picture+of+them++unfortunately+i+cannot+show+their+faces++neither+can+i
found 1 videos: [['/talks/shimon_schocken_what_a_bike_ride_can_teach_you', '2010']]
selected: /talks/shimon_schocken_what_a_bike_ride_can_teach_you
sleep 4 seconds to avoid blocking
------<2038>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ShimonSchocken_2012G.stm
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=grandfather++salman+schocken+who+was+born
found 1 videos: [['/talks/shimon_schocken_the_self_organizing_computer_course', '2012']]
selected: /talks/shimon_schocken_the_self_organizing_computer_course
sleep 5 seconds to avoid blocking
------<2039>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ShimonSteinberg_2010X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=bug+lover+myself+not+from+childhood++by+the+way++but+rather+late++when+i
found 8 videos: [['/talks/shimon_steinberg_natural_pest_control_using_bugs', '2010'], ['/talks/chimamanda_ngozi_adichie_the_danger_of_a_single_story', '2009'], ['/talks/helen_fisher_the_brain_in_love', '2008'], ['/talks/raghava_kk_what_s_your_200_year_plan', '2012'], ['/talks/doris_kearns_goodwin_lessons_from_past_presidents', '2008'], ['/talks/carne_ross_an_independent_diplomat', '2010'], ['/talks/sarah_kaminsky_my_father_the_forger', '2011'], ['/talks/daniel_wolpert_the_real_reason_for_brains', '2011']]
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=majoring+in+zoology+at+tel+aviv+university+i+kind+of+fell+in+love+with+bugs++and+then+within+zoology+i+took+the+course+or+the+discipline+of+entomology
found 1 videos: [['/talks/shimon_steinberg_natural_pest_control_using_bugs', '2010']]
selected: /talks/shimon_steinberg_natural_pest_control_using_bugs
sleep 2 seconds to avoid blocking
------<2040>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ShirinNeshat_2010W.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+share+with+you+today+is+my+challenge
found 3 videos: [['/talks/roger_doiron_my_subversive_garden_plot', '2011'], ['/talks/rachel_botsman_the_case_for_collaborative_consumption', '2010'], ['/talks/john_wilbanks_let_s_pool_our_medical_data', '2012']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+an+iranian+artist++as+an+iranian+woman+artist+as+an+iranian+woman+artist+living+in+exile+well
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=pluses+and+minuses+on+the+dark+side+politics+doesn+t+seem+to+escape+people+like+me
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=every+iranian+artist+in+one+form+or+another+is+political+politics+have+defined+our+lives
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+re+living+in+iran+you+re+facing+censorship++harassment++arrest+torture+at+times++execution
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+re+living+outside+like+me+you+re+faced+with+life+in+exile
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+separation+from+your+loved+ones+and+your+family
found 4 videos: [['/talks/shirin_neshat_art_in_exile', '2011'], ['/talks/his_holiness_the_karmapa_the_technology_of_the_heart', '2010'], ['/talks/ryan_lobo_photographing_the_hidden_story', '2009'], ['/talks/keith_nolan_deaf_in_the_military', '2012']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=therefore+we+don+t+find+the+moral++emotional++psychological+and+political+space
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+distance+ourselves+from+the+reality+of+social
found 5 videos: [['/talks/shirin_neshat_art_in_exile', '2011'], ['/talks/jessica_jackley_poverty_money_and_love', '2010'], ['/talks/irwin_redlener_how_to_survive_a_nuclear_attack', '2008'], ['/talks/norman_foster_my_green_agenda_for_architecture', '2008'], ['/talks/dan_ariely_our_buggy_moral_code', '2009']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=responsibility++oddly+enough+an+artist+such+as+myself
found 1 videos: [['/talks/shirin_neshat_art_in_exile', '2011']]
selected: /talks/shirin_neshat_art_in_exile
sleep 3 seconds to avoid blocking
------<2041>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ShivaniSiroya_2016U.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+much+do+you+need+to+know+about+a+person+before+you+d+feel+comfortable+making+a+loan
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=suppose+you+wanted+to+lend+one+thousand+dollars+to+the+person+sitting+two+rows+behind+you+what+would+you+need+to+know+about+that+person
found 1 videos: [['/talks/shivani_siroya_a_smart_loan_for_people_with_no_credit_history_yet', '2016']]
selected: /talks/shivani_siroya_a_smart_loan_for_people_with_no_credit_history_yet
sleep 1 seconds to avoid blocking
------<2042>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ShlomoBenartzi_2011S.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=talk+today+about+saving+more+but+not+today
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=tomorrow+i+m+going+to+talk+about+save+more+tomorrow+it+s+a+program+that+richard+thaler+from+the+university+of+chicago
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+devised+maybe+fifteen+years+ago+the+program+in+a+sense+is+an+example
error: request timeout
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+we+could+really+use+behavioral+finance+now+you+might+ask++what+is+behavioral+finance
found 3 videos: [['/talks/shlomo_benartzi_saving_for_tomorrow_tomorrow', '2012'], ['/talks/eric_dishman_take_health_care_off_the_mainframe', '2010'], ['/talks/kathryn_schulz_don_t_regret_regret', '2011']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+let+s+think+about+how+we+manage+our+money
found 3 videos: [['/talks/sandra_fisher_martins_the_right_to_understand', '2011'], ['/talks/majora_carter_3_stories_of_local_eco_entrepreneurship', '2010'], ['/talks/ben_goldacre_battling_bad_science', '2011']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+s+start+with+mortgages+it+s+kind+of+a+recent+topic+at+least+in+the+u+s
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+lot+of+people+buy+the+biggest+house+they+can+afford+and
found 14 videos: [['/talks/shlomo_benartzi_saving_for_tomorrow_tomorrow', '2012'], ['/talks/misha_glenny_the_real_story_of_mcmafia_how_global_crime_networks_work', '2009'], ['/talks/bill_gates_innovating_to_zero', '2010'], ['/talks/xavier_vilalta_architecture_at_home_in_its_community', '2013'], ['/talks/jeremy_jackson_how_we_wrecked_the_ocean', '2010'], ['/talks/courtney_e_martin_this_isn_t_her_mother_s_feminism', '2011'], ['/talks/alastair_parvin_architecture_for_the_people_by_the_people', '2013'], ['/talks/joshua_prince_ramus_building_a_theater_that_remakes_itself', '2010'], ['/talks/willie_smits_how_to_restore_a_rainforest', '2009'], ['/talks/gordon_brown_global_ethic_vs_national_interest', '2009'], ['/talks/catarina_mota_play_with_smart_materials', '2013'], ['/talks/david_pogue_cool_tricks_your_phone_can_do', '2009'], ['/talks/jarrett_j_krosoczka_how_a_boy_became_an_artist', '2013'], ['/talks/emily_levine_a_theory_of_everything', '2009']]
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+they+foreclose++and+then+they+blame+the+banks+for+being+the+bad+guys+who+gave+them+the+mortgages
found 1 videos: [['/talks/shlomo_benartzi_saving_for_tomorrow_tomorrow', '2012']]
selected: /talks/shlomo_benartzi_saving_for_tomorrow_tomorrow
sleep 2 seconds to avoid blocking
------<2043>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ShondaRhimes_2016.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+while+ago+i+tried+an+experiment+for+one+year++i+would+say+yes+to+all+the+things+that+scared+me
found 3 videos: [['/talks/shonda_rhimes_my_year_of_saying_yes_to_everything', '2016'], ['/talks/zeynep_tufekci_we_re_building_a_dystopia_just_to_make_people_click_on_ads', '2017'], ['/talks/blaise_aguera_y_arcas_how_computers_are_learning_to_be_creative', '2016']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=anything+that+made+me+nervous+took+me+out+of+my+comfort+zone++i+forced+myself+to+say+yes+to+did+i+want+to+speak+in+public
found 1 videos: [['/talks/shonda_rhimes_my_year_of_saying_yes_to_everything', '2016']]
selected: /talks/shonda_rhimes_my_year_of_saying_yes_to_everything
sleep 3 seconds to avoid blocking
------<2044>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ShubhenduSharma_2014U.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+an+industrial+engineer+the+goal+in+my+life+has+always+been+to+make+more+and+more+products+in+the+least+amount+of+time+and+resources
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=while+working+at+toyota+all+i+knew+was+how+to+make+cars
found 2 videos: [['/talks/shubhendu_sharma_an_engineer_s_vision_for_tiny_forests_everywhere', '2014'], ['/talks/bruce_feiler_agile_programming_for_your_family', '2013']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=came+to+our+factory+to+make+a+forest+in+it+in+order+to+make+it+carbon+neutral+i+was+so+fascinated
found 1 videos: [['/talks/shubhendu_sharma_an_engineer_s_vision_for_tiny_forests_everywhere', '2014']]
selected: /talks/shubhendu_sharma_an_engineer_s_vision_for_tiny_forests_everywhere
sleep 2 seconds to avoid blocking
------<2045>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ShubhenduSharma_2016S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+can+spread+over+acres+and+acres+of+area+or+it+could+fit+in+a+small+space+as+small+as+your+house+garden
found 1 videos: [['/talks/shubhendu_sharma_how_to_grow_a_forest_in_your_backyard', '2016']]
selected: /talks/shubhendu_sharma_how_to_grow_a_forest_in_your_backyard
sleep 1 seconds to avoid blocking
------<2046>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ShuklaBose_2009I.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+share+with+you+my+journey+of+the+last+six+years+in+the+field+of+service
found 2 videos: [['/talks/shukla_bose_teaching_one_child_at_a_time', '2010'], ['/talks/johan_rockstrom_let_the_environment_guide_our_development', '2010']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=neither+am+i+a+veteran+social+worker+i+was+twenty+six+years+in+the+corporate+world+trying+to+make+organizations+profitable++and+then+in+two+thousand+and+three
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+started+parikrma+humanity+foundation+from+my+kitchen+table+the+first+thing+that+we+did+was+walk+through+the+slums
found 1 videos: [['/talks/shukla_bose_teaching_one_child_at_a_time', '2010']]
selected: /talks/shukla_bose_teaching_one_child_at_a_time
sleep 1 seconds to avoid blocking
------<2047>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ShyamSankar_2012G.stm
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+to+tell+you+about+two+games+of+chess
found 10 videos: [['/talks/paola_antonelli_why_i_brought_pac_man_to_moma', '2013'], ['/talks/shyam_sankar_the_rise_of_human_computer_cooperation', '2012'], ['/talks/joseph_nye_global_power_shifts', '2010'], ['/talks/daniel_wolpert_the_real_reason_for_brains', '2011'], ['/talks/nathan_myhrvold_could_this_laser_zap_malaria', '2010'], ['/talks/sam_harris_science_can_answer_moral_questions', '2010'], ['/talks/caroline_casey_looking_past_limits', '2011'], ['/talks/zainab_salbi_women_wartime_and_the_dream_of_peace', '2010'], ['/talks/jennifer_granholm_a_clean_energy_proposal_race_to_the_top', '2013'], ['/talks/noel_bairey_merz_the_single_biggest_health_threat_women_face', '2012']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+first+happened+in+one+thousand+nine+hundred+and+ninety+seven+in+which+garry+kasparov+a+human+lost+to+deep+blue++a+machine
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+many+this+was+the+dawn+of+a+new+era+one+where+man+would+be+dominated+by+machine
found 1 videos: [['/talks/shyam_sankar_the_rise_of_human_computer_cooperation', '2012']]
selected: /talks/shyam_sankar_the_rise_of_human_computer_cooperation
sleep 4 seconds to avoid blocking
------<2048>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SiamakHariri_2017S.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+school+of+architecture+that+i+studied+at+some+thirty+years+ago+happened+to+be+across+the+street
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=from+the+wonderful+art+gallery+designed+by+the+great+architect
found 1 videos: [['/talks/siamak_hariri_how_do_you_build_a_sacred_space', '2017']]
selected: /talks/siamak_hariri_how_do_you_build_a_sacred_space
sleep 1 seconds to avoid blocking
------<2049>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SiddharthaMukherjee_2015.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+talk+to+you+about
found 16 videos: [['/talks/caitlin_doughty_a_burial_practice_that_nourishes_the_planet', '2017'], ['/talks/parag_khanna_how_megacities_are_changing_the_map_of_the_world', '2016'], ['/talks/julian_treasure_how_to_speak_so_that_people_want_to_listen', '2014'], ['/talks/juno_mac_the_laws_that_sex_workers_really_want', '2016'], ['/talks/johann_hari_everything_you_think_you_know_about_addiction_is_wrong', '2015'], ['/talks/leana_wen_what_your_doctor_won_t_disclose', '2014'], ['/talks/norman_spack_how_i_help_transgender_teens_become_who_they_want_to_be', '2014'], ['/talks/emilie_wapnick_why_some_of_us_don_t_have_one_true_calling', '2015'], ['/talks/alison_killing_what_happens_when_a_city_runs_out_of_room_for_its_dead', '2015'], ['/talks/peter_singer_the_why_and_how_of_effective_altruism', '2013'], ['/talks/scott_dinsmore_how_to_find_work_you_love', '2015'], ['/talks/jennifer_golbeck_your_social_media_likes_expose_more_than_you_think', '2014'], ['/talks/boyd_varty_what_i_learned_from_nelson_mandela', '2013'], ['/talks/paola_antonelli_why_i_brought_pac_man_to_moma', '2013'], ['/talks/martin_pistorius_how_my_mind_came_back_to_life_and_no_one_knew', '2015'], ['/talks/suzanne_simard_how_trees_talk_to_each_other', '2016']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+future+of+medicine+but+before+i+do+that+i+want+to+talk+a+little+bit+about+the+past+now++throughout
found 3 videos: [['/talks/siddhartha_mukherjee_soon_we_ll_cure_diseases_with_a_cell_not_a_pill', '2015'], ['/talks/lisa_genova_what_you_can_do_to_prevent_alzheimer_s', '2017'], ['/talks/siddharthan_chandran_can_the_damaged_brain_repair_itself', '2014']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=much+of+the+recent+history+of+medicine+we+ve+thought+about+illness+and+treatment
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=profoundly+simple+model++in+fact+the+model+is+so+simple
found 7 videos: [['/talks/richard_j_berry_a_practical_way_to_help_the_homeless_find_work_and_safety', '2017'], ['/talks/ole_scheeren_why_great_architecture_should_tell_a_story', '2016'], ['/talks/siddhartha_mukherjee_soon_we_ll_cure_diseases_with_a_cell_not_a_pill', '2015'], ['/talks/tiq_milan_and_kim_katrin_milan_a_queer_vision_of_love_and_marriage', '2016'], ['/talks/bran_ferren_to_create_for_the_ages_let_s_combine_art_and_engineering', '2014'], ['/talks/steve_silberman_the_forgotten_history_of_autism', '2015'], ['/talks/paul_knoepfler_the_ethical_dilemma_of_designer_babies', '2017']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+you+could+summarize+it+in+six+words+have+disease+take+pill++kill+something
found 1 videos: [['/talks/siddhartha_mukherjee_soon_we_ll_cure_diseases_with_a_cell_not_a_pill', '2015']]
selected: /talks/siddhartha_mukherjee_soon_we_ll_cure_diseases_with_a_cell_not_a_pill
sleep 4 seconds to avoid blocking
------<2050>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SiddharthanChandran_2013G.stm
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=very+pleased+to+be+here+today+to+talk+to+you+all+about
found 12 videos: [['/talks/catherine_bracy_why_good_hackers_make_good_citizens', '2014'], ['/talks/esther_perel_rethinking_infidelity_a_talk_for_anyone_who_has_ever_loved', '2015'], ['/talks/michael_nielsen_open_science_now', '2011'], ['/talks/beth_noveck_demand_a_more_open_source_government', '2012'], ['/talks/siddharthan_chandran_can_the_damaged_brain_repair_itself', '2014'], ['/talks/matthew_carter_my_life_in_typefaces', '2014'], ['/talks/charles_hazlewood_trusting_the_ensemble', '2011'], ['/talks/jimmy_nelson_gorgeous_portraits_of_the_world_s_vanishing_people', '2015'], ['/talks/david_mackay_a_reality_check_on_renewables', '2012'], ['/talks/dave_debronkart_meet_e_patient_dave', '2011'], ['/talks/scott_rickard_the_beautiful_math_behind_the_world_s_ugliest_music', '2012'], ['/talks/shereen_el_feki_a_little_told_tale_of_sex_and_sensuality', '2014']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+we+might+repair+the+damaged+brain
found 5 videos: [['/talks/ralitsa_petrova_could_your_brain_repair_itself', '2015'], ['/talks/siddharthan_chandran_can_the_damaged_brain_repair_itself', '2014'], ['/talks/andres_lozano_parkinson_s_depression_and_the_switch_that_might_turn_them_off', '2013'], ['/talks/susan_lim_transplant_cells_not_organs', '2011'], ['/talks/kathryn_schulz_don_t_regret_regret', '2011']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+m+particularly+excited+by+this+field+because+as+a+neurologist+myself++i+believe+that+this+offers+one+of+the+great+ways+that+we+might+be+able+to+offer+hope
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+patients+who+today+live+with+devastating
found 4 videos: [['/talks/siddharthan_chandran_can_the_damaged_brain_repair_itself', '2014'], ['/talks/maryn_mckenna_what_do_we_do_when_antibiotics_don_t_work_any_more', '2015'], ['/talks/monica_lewinsky_the_price_of_shame', '2015'], ['/talks/kathryn_schulz_on_being_wrong', '2011']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+yet+untreatable+diseases+of+the+brain
found 1 videos: [['/talks/siddharthan_chandran_can_the_damaged_brain_repair_itself', '2014']]
selected: /talks/siddharthan_chandran_can_the_damaged_brain_repair_itself
sleep 4 seconds to avoid blocking
------<2051>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SiddharthaRoy_2016X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fresh+out+of+college+i+went+to+work+for+a+consulting+firm
found 1 videos: [['/talks/siddhartha_roy_science_in_service_to_the_public_good', '2017']]
selected: /talks/siddhartha_roy_science_in_service_to_the_public_good
sleep 1 seconds to avoid blocking
------<2052>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SiegfriedWoldhek_2008.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=good+morning+let+s+look+for+a+minute
found 5 videos: [['/talks/dan_gilbert_why_we_make_bad_decisions', '2008'], ['/talks/ben_saunders_why_did_i_ski_to_the_north_pole', '2006'], ['/talks/david_pogue_simplicity_sells', '2006'], ['/talks/nathan_myhrvold_archeology_animal_photography_bbq', '2008'], ['/talks/david_agus_a_new_strategy_in_the_war_on_cancer', '2010']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+the+greatest+icon+of+all+leonardo+da+vinci+we+re+all+familiar+with+his+fantastic+work+his+drawings+his+paintings+his+inventions+his+writings
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+we+do+not+know+his+face+thousands+of+books+have+been+written+about+him
found 10 videos: [['/talks/siegfried_woldhek_the_search_for_the_true_face_of_leonardo', '2008'], ['/talks/dan_dennett_let_s_teach_religion_all_religion_in_schools', '2006'], ['/talks/rachel_botsman_the_case_for_collaborative_consumption', '2010'], ['/talks/dave_eggers_my_wish_once_upon_a_school', '2008'], ['/talks/bono_my_wish_three_actions_for_africa', '2006'], ['/talks/sherwin_nuland_how_electroshock_therapy_changed_me', '2007'], ['/talks/naif_al_mutawa_superheroes_inspired_by_islam', '2010'], ['/talks/doris_kearns_goodwin_lessons_from_past_presidents', '2008'], ['/talks/david_rockwell_a_memorial_at_ground_zero', '2007'], ['/talks/catherine_mohr_surgery_s_past_present_and_robotic_future', '2009']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+there+s+controversy++and+it+remains+about+his+looks
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=even+this++well+known+portrait+is+not+accepted+by+many+art+historians+so+what+do+you+think
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+this+the+face+of+leonardo+da+vinci+or+isn+t+it
error: request timeout
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=leonardo+was+a+man+that+drew+everything
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+no+faces++i+find+that+hard+to+believe+his+contemporaries+made+faces+like+the+ones+you+see+here+en+face
found 1 videos: [['/talks/siegfried_woldhek_the_search_for_the_true_face_of_leonardo', '2008']]
selected: /talks/siegfried_woldhek_the_search_for_the_true_face_of_leonardo
sleep 1 seconds to avoid blocking
------<2053>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SimonAnholt_2014S.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+been+thinking+a+lot+about+the+world+recently
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+how+it+s+changed+over+the+last+twenty+thirty+forty+years
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=twenty+or+thirty+years+ago+if+a+chicken+caught+a+cold+and+sneezed+and+died+in+a+remote+village+in+east+asia+it+would+have+been+a+tragedy+for+the+chicken+and+its+closest
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+don+t+think+there+was+much+possibility+of+us+fearing
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+global+pandemic+and+the+deaths+of+millions
found 6 videos: [['/talks/simon_anholt_which_country_does_the_most_good_for_the_world', '2014'], ['/talks/myriam_sidibe_the_simple_power_of_hand_washing', '2014'], ['/talks/peter_diamandis_abundance_is_our_future', '2012'], ['/talks/sam_harris_can_we_build_ai_without_losing_control_over_it', '2016'], ['/talks/al_gore_the_case_for_optimism_on_climate_change', '2016'], ['/talks/paddy_ashdown_the_global_power_shift', '2012']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=twenty+or+thirty+years+ago++if+a+bank+in+north+america+lent+too+much+money+to+some+people+who+couldn+t+afford+to+pay+it+back
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+was+bad+for+the+lender+and+bad+for+the+borrower+but+we+didn+t+imagine+it+would+bring+the+global+economic+system+to+its+knees+for+nearly+a+decade
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+the+miracle+that+has+enabled+us+to+transship+our+bodies+and+our+minds+and+our+words+and+our+pictures+and+our+ideas+and+our+teaching+and+our+learning+around+the+planet
found 1 videos: [['/talks/simon_anholt_which_country_does_the_most_good_for_the_world', '2014']]
selected: /talks/simon_anholt_which_country_does_the_most_good_for_the_world
sleep 5 seconds to avoid blocking
------<2054>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SimonAnholt_2016X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+many+of+you+know+the+results+of+the+recent+election+were+as+follows+hillary+clinton+the+democratic+candidate+won+a+landslide+victory
found 1 videos: [['/talks/simon_anholt_who_would_the_rest_of_the_world_vote_for_in_your_country_s_election', '2017']]
selected: /talks/simon_anholt_who_would_the_rest_of_the_world_vote_for_in_your_country_s_election
sleep 5 seconds to avoid blocking
------<2055>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SimonBerrow_2010X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=basking+sharks+are+awesome+creatures++they+are+just+magnificent++they+grow+ten+meters+long+some+say+bigger
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+might+weigh+up+to+two+tons
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+say+up+to+five+tons+they+re+the+second+largest+fish+in+the+world++they+re+also+harmless+plankton+feeding+animals+and+they+are+thought+to+be+able+to
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=filter+a+cubic+kilometer+of+water+every+hour
found 1 videos: [['/talks/simon_berrow_how_do_you_save_a_shark_you_know_nothing_about', '2012']]
selected: /talks/simon_berrow_how_do_you_save_a_shark_you_know_nothing_about
sleep 3 seconds to avoid blocking
------<2056>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SimonLewis_2010P.stm
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+everything+seemed+perfect++everywhere+i+went+i+felt+at+home++everyone+i+met++i+felt+i+knew+them+for+as+long+as+i+could+remember+and
found 2 videos: [['/talks/simon_lewis_don_t_take_consciousness_for_granted', '2011'], ['/talks/caroline_casey_looking_past_limits', '2011']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+share+with+you
found 5 videos: [['/talks/sheikha_al_mayassa_globalizing_the_local_localizing_the_global', '2012'], ['/talks/candy_chang_before_i_die_i_want_to', '2012'], ['/talks/shimon_schocken_what_a_bike_ride_can_teach_you', '2010'], ['/talks/jamie_heywood_the_big_idea_my_brother_inspired', '2010'], ['/talks/yves_rossy_fly_with_the_jetman', '2011']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+i+came+to+that+place+and+what+i+ve+learned+since+i+left
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it++this+is+where+it+began
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+raises+an+existential+question+which+is+if+i+m+having+this+experience+of+complete+connection+and+full+consciousness+why+am+i+not+visible+in+the+photograph
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+where+is+this+time+and+place
found 5 videos: [['/talks/jason_mccue_terrorism_is_a_failed_brand', '2012'], ['/talks/don_tapscott_four_principles_for_the_open_world', '2012'], ['/talks/charles_leadbeater_education_innovation_in_the_slums', '2010'], ['/talks/rob_hopkins_transition_to_a_world_without_oil', '2009'], ['/talks/sean_carroll_distant_time_and_the_hint_of_a_multiverse', '2011']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+los+angeles+california+where+i+live
found 14 videos: [['/talks/van_jones_the_economic_injustice_of_plastic', '2011'], ['/talks/elyn_saks_a_tale_of_mental_illness_from_the_inside', '2012'], ['/talks/simon_lewis_don_t_take_consciousness_for_granted', '2011'], ['/talks/peter_hirshberg_the_web_is_more_than_better_tv', '2008'], ['/talks/chris_bliss_comedy_is_translation', '2012'], ['/talks/bryan_stevenson_we_need_to_talk_about_an_injustice', '2012'], ['/talks/vijay_kumar_robots_that_fly_and_cooperate', '2012'], ['/talks/emily_levine_a_theory_of_everything', '2009'], ['/talks/sebastian_thrun_google_s_driverless_car', '2011'], ['/talks/majora_carter_3_stories_of_local_eco_entrepreneurship', '2010'], ['/talks/bill_gross_a_solar_energy_system_that_tracks_the_sun', '2009'], ['/talks/chris_abani_on_humanity', '2008'], ['/talks/scott_fraser_why_eyewitnesses_get_it_wrong', '2012'], ['/talks/nathan_myhrvold_archeology_animal_photography_bbq', '2008']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+a+police+photo+that+s+actually+my+car+we+re+less+than+a+mile+from+one+of+the+largest+hospitals+in+los+angeles+called
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+situation+is+that+a+car+full+of+paramedics+on+their+way+home+from+the+hospital+after+work
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+run+across+the+wreckage++and+they+ve+advised+the+police+that+there+were+no+survivors+inside+the+car+that+the+driver+s+dead+that+i+m+dead
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+police+are+waiting+for+the+fire+department+to+arrive+to+cut+apart+the+vehicle+to+extract+the+body+of+the+driver++and+when+they+do+they+find+that+behind+the+glass
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=find+me+and+my+skull+s+crushed+and+my+collar+bone+is+crushed
found 1 videos: [['/talks/simon_lewis_don_t_take_consciousness_for_granted', '2011']]
selected: /talks/simon_lewis_don_t_take_consciousness_for_granted
sleep 1 seconds to avoid blocking
------<2057>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SimonSinek_2009X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+do+you+explain+when+things+don+t+go+as+we+assume++or+better
found 1 videos: [['/talks/seth_berkley_hiv_and_flu_the_vaccine_strategy', '2010']]
selected: /talks/seth_berkley_hiv_and_flu_the_vaccine_strategy
sleep 5 seconds to avoid blocking
------<2058>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SimonSinek_2014.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+a+man+by+the+name+of+captain+william+swenson
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+recently+was+awarded+the+congressional+medal+of+honor+for+his+actions+on+september+eight+two+thousand+and+nine
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+that+day+a+column+of+american+and+afghan+troops+were+making+their+way+through+a+part+of+afghanistan+to+help
found 1 videos: [['/talks/simon_sinek_why_good_leaders_make_you_feel_safe', '2014']]
selected: /talks/simon_sinek_why_good_leaders_make_you_feel_safe
sleep 1 seconds to avoid blocking
------<2059>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SirenaHuang_2006.stm
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+this+has+nothing+to+do+with+that+so
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+did+a+little+research+on+it+well+this+is+what+i+found+of+course+i+hope+i+can+memorize+it+the
found 1 videos: [['/talks/sirena_huang_an_11_year_old_s_magical_violin', '2006']]
selected: /talks/sirena_huang_an_11_year_old_s_magical_violin
sleep 3 seconds to avoid blocking
------<2060>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SirKenRobinson_2006.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=been+blown+away+by+the+whole+thing+in+fact+i+m+leaving
found 1 videos: [['/talks/maira_kalman_the_illustrated_woman', '2007']]
selected: /talks/maira_kalman_the_illustrated_woman
sleep 4 seconds to avoid blocking
------<2061>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SirKenRobinson_2010.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+here+four+years+ago+and+i+remember+at+the+time+that+the+talks+weren+t+put
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=online++i+think+they+were+given+to+tedsters+in+a+box+a+box+set+of+dvds+which+they+put+on+their+shelves+where+they+are+now
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+actually+chris+called+me+a+week+after+i+d+given+my+talk+and+said+we+re+going+to+start+putting+them+online+can+we+put+yours+online+and+i+said+sure
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+four+years+later++it+s
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=been+downloaded+four+million+times++so+i+suppose+you+could+multiply+that+by+twenty+or+something+to+get+the+number+of+people+who+ve+seen+it+and+as+chris+says++there+is+a+hunger
error: request timeout
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+this+whole+event+has+been+an+elaborate+build+up
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+me+doing+another+one+for+you+so+here
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=laughter+al+gore+spoke+at+the+ted+conference+i+spoke+at+four+years+ago
error: request timeout
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=talked+about+the+climate+crisis+and+i+referenced+that+at+the+end+of+my+last+talk++so+i+want+to+pick+up+from+there+because+i+only+had+eighteen+minutes+frankly
error: request timeout
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+s+right+i+mean+there+is+a+major+climate+crisis++obviously++and+i+think+if+people+don+t+believe+it+they+should+get+out+more
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=laughter+but+i+believe+there+is+a+second+climate+crisis++which+is+as+severe
found 2 videos: [['/talks/sir_ken_robinson_bring_on_the_learning_revolution', '2010'], ['/talks/al_gore_new_thinking_on_the_climate_crisis', '2008']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+has+the+same+origins+and+that+we+have+to+deal+with+with+the+same+urgency++and
found 1 videos: [['/talks/sir_ken_robinson_bring_on_the_learning_revolution', '2010']]
selected: /talks/sir_ken_robinson_bring_on_the_learning_revolution
sleep 4 seconds to avoid blocking
------<2062>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SirKenRobinson_2013S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+moved+to+america+twelve+years+ago+with+my+wife+terry+and+our+two+kids+actually+truthfully+we+moved+to+los+angeles
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+a+short+plane+ride+from+los+angeles+to+america
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+got+here+twelve+years+ago+and+when+i+got+here+i+was+told+various+things+like
error: request timeout
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+you+come+across+this+idea+it+s+not+true+i+ve+traveled+the+whole
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=length+and+breadth+of+this+country++i+have+found+no+evidence+that+americans+don+t+get+irony++it+s+one+of+those+cultural+myths
error: request timeout
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+don+t+know+why+people+think+this++we+ve+invaded+every+country+we+ve+encountered
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=laughter+but+it+s+not+true+americans+don+t+get+irony+but+i+i+just+want+you+to+know+that+that+s+what+people+are+saying
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+you+behind+your+back+you+know+so+when+you+leave+living+rooms+in+europe+people+say++thankfully+nobody+was+ironic+in+your+presence
found 1 videos: [['/talks/sir_ken_robinson_how_to_escape_education_s_death_valley', '2013']]
selected: /talks/sir_ken_robinson_how_to_escape_education_s_death_valley
sleep 2 seconds to avoid blocking
------<2063>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SirMartinRees_2014U.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ten+years+ago+i+wrote+a+book+which+i+entitled+our+final+century+question+mark+my+publishers+cut+out+the+question+mark
found 1 videos: [['/talks/martin_rees_can_we_prevent_the_end_of_the_world', '2014']]
selected: /talks/martin_rees_can_we_prevent_the_end_of_the_world
sleep 3 seconds to avoid blocking
------<2064>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SisonkeMsimang_2016W.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=earlier+this+year++i+was+informed+that+i+would+be+doing+a+ted+talk++so+i+was+excited+then+i+panicked++then+i+was+excited+then+i+panicked
found 1 videos: [['/talks/sisonke_msimang_if_a_story_moves_you_act_on_it', '2017']]
selected: /talks/sisonke_msimang_if_a_story_moves_you_act_on_it
sleep 1 seconds to avoid blocking
------<2065>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SitawaWafula_2017S.stm
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+have+been+in+an+affair+since+i+was+seventeen+years+old++i+wish+i+could+talk+about+butterflies
error: request timeout
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+maps+i+drew+on+the+ground+when+i+think+about+this+affair++but+i+cannot
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+wish+i+could+talk+about+sweet+words+spoken+or+gifts+that+i+received+from+this+affair
found 1 videos: [['/talks/sitawa_wafula_why_i_speak_up_about_living_with_epilepsy', '2017']]
selected: /talks/sitawa_wafula_why_i_speak_up_about_living_with_epilepsy
sleep 5 seconds to avoid blocking
------<2066>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SiyandaMohutsiwa_2016.stm
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+africa+was+a+bar++what+would+your+country+be+drinking+or+doing
found 3 videos: [['/talks/siyanda_mohutsiwa_how_young_africans_found_a_voice_on_twitter', '2016'], ['/talks/joy_sun_should_you_donate_differently', '2014'], ['/talks/victoria_pratt_how_judges_can_show_respect', '2017']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+kicked+it+off+with+a+guess+about+south+africa++which+wasn+t+exactly+according+to+the+rules+because
error: request timeout
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+alluding+to+the+country+s+continual+attempts+to+build+a+postracial+society+after+being+ravaged+for+decades+by+apartheid
error: request timeout
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=south+africa+would+be+drinking+all+kinds+of+alcohol+and+begging+them+to+get+along+in+its+stomach
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+i+waited+and+then+i+had+that+funny+feeling+where+i+wondered+if+i+crossed+the+line+so+i+sent+out+a+few+other+tweets+about+my+own+country
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+a+few+other+african+countries+i+m+familiar+with+and+then+i+waited+again+but+this+time+i+read+through+almost+every+tweet+i+had+ever+tweeted
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+convince+myself+no+to+remind+myself+that+i+m+really+funny
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+if+nobody+gets+it+that+s+fine
found 3 videos: [['/talks/adam_driver_my_journey_from_marine_to_actor', '2016'], ['/talks/paul_greenberg_the_four_fish_we_re_overeating_and_what_to_eat_instead', '2015'], ['/talks/kristie_overstreet_what_doctors_should_know_about_gender_identity', '2018']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+didn+t+have+to+do+that+for+very+long+very+soon++people+were+participating
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+fact+by+the+end+of+that+week+in+july+the+hashtag
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=would+have+garnered+around+sixty+thousand+tweets+lit+up+the+continent
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+made+its+way+to+publications+all+over+the+world+people+were+using+the+hashtag+to+do+many+different+things
found 1 videos: [['/talks/siyanda_mohutsiwa_how_young_africans_found_a_voice_on_twitter', '2016']]
selected: /talks/siyanda_mohutsiwa_how_young_africans_found_a_voice_on_twitter
sleep 1 seconds to avoid blocking
------<2067>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SkylarTibbits_2011U.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=today+i+d+like+to+show+you+the+future+of+the+way+we+make+things
found 9 videos: [['/talks/stephen_wolfram_computing_a_theory_of_all_knowledge', '2010'], ['/talks/rajesh_rao_a_rosetta_stone_for_a_lost_language', '2011'], ['/talks/eames_demetrios_the_design_genius_of_charles_ray_eames', '2009'], ['/talks/amory_lovins_a_40_year_plan_for_energy', '2012'], ['/talks/mikko_hypponen_fighting_viruses_defending_the_net', '2011'], ['/talks/geraldine_hamilton_body_parts_on_a_chip', '2013'], ['/talks/nirmalya_kumar_india_s_invisible_innovation', '2012'], ['/talks/aimee_mullins_the_opportunity_of_adversity', '2010'], ['/talks/dan_meyer_math_class_needs_a_makeover', '2010']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+believe+that+soon+our+buildings+and+machines+will+be+self+assembling+replicating+and+repairing+themselves++so+i+m+going+to+show+you+what+i+believe+is+the+current+state
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+compare+that+to+some+natural+systems
found 16 videos: [['/talks/enric_sala_glimpses_of_a_pristine_ocean', '2010'], ['/talks/skylar_tibbits_can_we_make_things_that_make_themselves', '2011'], ['/talks/benoit_mandelbrot_fractals_and_the_art_of_roughness', '2010'], ['/talks/stephen_cave_the_4_stories_we_tell_ourselves_about_death', '2013'], ['/talks/sean_carroll_distant_time_and_the_hint_of_a_multiverse', '2011'], ['/talks/pavan_sukhdev_put_a_value_on_nature', '2011'], ['/talks/yasheng_huang_does_democracy_stifle_economic_growth', '2011'], ['/talks/sir_ken_robinson_how_to_escape_education_s_death_valley', '2013'], ['/talks/stewart_brand_4_environmental_heresies', '2009'], ['/talks/carl_schoonover_how_to_look_inside_the_brain', '2012'], ['/talks/michael_dickinson_how_a_fly_flies', '2013'], ['/talks/cesar_harada_a_novel_idea_for_cleaning_up_oil_spills', '2012'], ['/talks/elizabeth_murchison_fighting_a_contagious_cancer', '2011'], ['/talks/nina_jablonski_skin_color_is_an_illusion', '2009'], ['/talks/bill_ford_a_future_beyond_traffic_gridlock', '2011'], ['/talks/marla_spivak_why_bees_are_disappearing', '2013']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+in+the+current+state+of+manufacturing++we+have+skyscrapers+two+and+a+half+years+[+of+assembly+time+]+five+hundred+thousand+to+a+million+parts++fairly+complex+new+exciting+technologies+in+steel+concrete+glass
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+have+exciting+machines+that+can+take+us+into+space+five+years+[+of+assembly+time+]+two+point+five+million+parts
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+on+the+other+side+if+you+look+at+the+natural+systems++we+have+proteins
error: request timeout
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=can+fold+in+ten+thousand+nanoseconds+or+dna+with+three+billion+base+pairs+we+can+replicate
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+roughly+an+hour++so
found 12 videos: [['/talks/ken_kamler_medical_miracle_on_everest', '2010'], ['/talks/jonas_eliasson_how_to_solve_traffic_jams', '2012'], ['/talks/david_mackay_a_reality_check_on_renewables', '2012'], ['/talks/seth_shostak_et_is_probably_out_there_get_ready', '2012'], ['/talks/james_balog_time_lapse_proof_of_extreme_ice_loss', '2009'], ['/talks/julian_treasure_the_4_ways_sound_affects_us', '2009'], ['/talks/joy_lin_if_superpowers_were_real_flight', '2013'], ['/talks/skylar_tibbits_can_we_make_things_that_make_themselves', '2011'], ['/talks/dan_buettner_how_to_live_to_be_100', '2010'], ['/talks/stewart_brand_mark_z_jacobson_debate_does_the_world_need_nuclear_energy', '2010'], ['/talks/brene_brown_the_power_of_vulnerability', '2010'], ['/talks/elon_musk_the_mind_behind_tesla_spacex_solarcity', '2013']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+all+of+this+complexity+in+our+natural+systems++but+they+re+extremely+efficient+far+more+efficient+than+anything+we+can+build+far+more+complex+than+anything+we+can+build
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+re+far+more+efficient+in+terms+of+energy+they+hardly+ever+make+mistakes++and+they+can+repair+themselves+for+longevity++so+there+s
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=something+super+interesting+about+natural+systems+and+if+we+can+translate+that+into+our+built+environment
found 1 videos: [['/talks/skylar_tibbits_can_we_make_things_that_make_themselves', '2011']]
selected: /talks/skylar_tibbits_can_we_make_things_that_make_themselves
sleep 4 seconds to avoid blocking
------<2068>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SkylarTibbits_2013U.stm
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=building+a+prototype+for+six+hours+straight+this+is+slave+labor+to+my+own+project
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+what+the+diy+and+maker
error: request timeout
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+is+an+analogy+for+today+s+construction+and+manufacturing+world+with+brute+force+assembly+techniques
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+is+exactly+why+i+started+studying+how+to+program+physical+materials+to+build+themselves
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+there+is+another+world+today+at+the+micro+and+nanoscales+there+s+an+unprecedented+revolution+happening
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+is+the+ability+to+program+physical+and+biological+materials+to+change+shape+change+properties
found 1 videos: [['/talks/skylar_tibbits_the_emergence_of_4d_printing', '2013']]
selected: /talks/skylar_tibbits_the_emergence_of_4d_printing
sleep 4 seconds to avoid blocking
------<2069>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SleepyManBanjoBoys_2013.stm
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+he+said+we+re+three+brothers+from+new+jersey+you+know+the+bluegrass+capital+of+the+world
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=laughter+we+discovered+bluegrass+a+few+years+ago+and+we+fell+in+love+with+it+we+hope+you+guys+will+too
found 1 videos: [['/talks/sleepy_man_banjo_boys_bluegrass_virtuosity_from_new_jersey', '2013']]
selected: /talks/sleepy_man_banjo_boys_bluegrass_virtuosity_from_new_jersey
sleep 5 seconds to avoid blocking
------<2070>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SofiaJawedWessel_2016X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+re+going+to+share+a+lot+of+secrets+today+you+and+i+and+in+doing+so+i+hope+that+we+can+lift+some+of+the+shame+many+of+us+feel+about+sex
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+many+here+have+ever+been
found 16 videos: [['/talks/katherine_hampsten_how_miscommunication_happens_and_how_to_avoid_it', '2018'], ['/talks/esther_perel_rethinking_infidelity_a_talk_for_anyone_who_has_ever_loved', '2015'], ['/talks/julian_treasure_how_to_speak_so_that_people_want_to_listen', '2014'], ['/talks/luhan_yang_how_to_create_a_world_where_no_one_dies_waiting_for_a_transplant', '2018'], ['/talks/audrey_choi_how_to_make_a_profit_while_making_a_difference', '2016'], ['/talks/finn_lutzow_holm_myrstad_how_tech_companies_deceive_you_into_giving_up_your_data_and_privacy', '2018'], ['/talks/bran_ferren_to_create_for_the_ages_let_s_combine_art_and_engineering', '2014'], ['/talks/ben_ambridge_9_myths_about_psychology_debunked', '2015'], ['/talks/floyd_e_romesberg_the_radical_possibilities_of_man_made_dna', '2018'], ['/talks/max_tegmark_how_to_get_empowered_not_overpowered_by_ai', '2018'], ['/talks/paul_bloom_can_prejudice_ever_be_a_good_thing', '2014'], ['/talks/eric_liu_why_ordinary_people_need_to_understand_power', '2014'], ['/talks/ian_bremmer_how_the_us_should_use_its_superpower_status', '2016'], ['/talks/laura_vanderkam_how_to_gain_control_of_your_free_time', '2016'], ['/talks/anne_marie_slaughter_can_we_all_have_it_all', '2014'], ['/talks/chieh_huang_confessions_of_a_recovering_micromanager', '2018']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+me+the+time+i+remember+best+is+when+that+stranger+was+a+student+of+mine+he+came+up+to+me+after+class+that+night
found 3 videos: [['/talks/thordis_elva_and_tom_stranger_our_story_of_rape_and_reconciliation', '2017'], ['/talks/sofia_jawed_wessel_the_lies_we_tell_pregnant_women', '2017'], ['/talks/chimamanda_ngozi_adichie_we_should_all_be_feminists', '2017']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+his+words+confirmed+what+i+already+knew+i+am+so+sorry+professor++if+i+had+known+it+was+you++i+would+never+have+said+those+things
found 2 videos: [['/talks/sofia_jawed_wessel_the_lies_we_tell_pregnant_women', '2017'], ['/talks/jim_holt_why_does_the_universe_exist', '2014']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+person+to+him+until+i+was+his+professor
found 10 videos: [['/talks/ronald_sullivan_how_i_help_free_innocent_people_from_prison', '2017'], ['/talks/hamish_jolly_a_shark_deterrent_wetsuit_and_it_s_not_what_you_think', '2014'], ['/talks/gregory_heyworth_how_i_m_discovering_the_secrets_of_ancient_texts', '2016'], ['/talks/the_ted_interview_sir_ken_robinson_still_wants_an_education_revolution', '2018'], ['/talks/arthur_brooks_a_conservative_s_plea_let_s_work_together', '2016'], ['/talks/worklife_with_adam_grant_the_daily_show_s_secret_to_creativity', '2018'], ['/talks/brian_little_who_are_you_really_the_puzzle_of_personality', '2016'], ['/talks/sofia_jawed_wessel_the_lies_we_tell_pregnant_women', '2017'], ['/talks/adam_alter_why_our_screens_make_us_less_happy', '2017'], ['/talks/safwat_saleem_why_i_keep_speaking_up_even_when_people_mock_my_accent', '2016']]
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+the+foundation+of+sexism++and+we+see+it+reinforced+through+every+aspect+of+our+lives
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+see+it+in+the+government+that+refuses+to
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=punish+men+for+raping+women++we+see+it+in+advertisements+how+many+of+you+have+seen+an+advertisement+that
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=uses+a+woman+s+breast+to+sell+an+entirely+unrelated+product++or
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=movie+after+movie+after+movie+that+portrays+women+as+only+love+interests
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+examples+might+seem+inconsequential+and+harmless+but+they+re+insidious++slowly+building+into+a+culture+that+refuses+to+see+women+as+people
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a++10+year+old+girl+because+her+clothes+were+a+distraction+to+boys+trying+to+learn
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+the+government+that+refuses+to+punish+men+for+raping+women
error: request timeout
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+the+woman+who+is+killed+because+she+asked+a+man+to+stop+grinding+on+her+on+the+dance+floor
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=media+plays+a+large+role+in+perpetuating
error: request timeout
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+s+consider+the+classic+romantic+comedy+we+re+typically+introduced+to+two+kinds+of+women+in+these+movies
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=two+kinds+of+desirable+women+anyway
found 1 videos: [['/talks/sofia_jawed_wessel_the_lies_we_tell_pregnant_women', '2017']]
selected: /talks/sofia_jawed_wessel_the_lies_we_tell_pregnant_women
sleep 2 seconds to avoid blocking
------<2071>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SonaarLuthra_2011G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=cholera+was+reported+in+haiti+for+the+first+time+in+over+fifty+years+last+october+there+was+no+way+to+predict+how+far+it+would+spread+through+water+supplies
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+how+bad+the+situation+would+get
error: request timeout
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=always+ensured+that+help+was+in+short+supply+in+the+areas+that+needed+it+most
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+ve+gotten+good+at+predicting+and+preparing+for+storms+before+they+take+innocent+lives+and+cause+irreversible+damage
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+we+still+can+t+do+that+with+water
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+here+s+why+right+now+if+you+want+to+test+water+in+the+field+you+need+a+trained+technician+expensive+equipment+like+this
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+have+to+wait+about+a+day+for+chemical+reactions+to+take+place+and+provide+results++it+s+too+slow+to+get+a+picture+of+conditions+on+the+ground
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=before+they+change+too+expensive+to+implement+in+all+the+places+that+require+testing+and+it+ignores+the+fact+that+in+the+meanwhile+people+still+need+to+drink+water
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=most+of+the+information+that+we+collected+on+the+cholera+outbreak
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=didn+t+come+from+testing+water++it+came+from
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=forms+like+this+which+documented+all+the+people+we+failed+to+help
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=countless+lives+have+been+saved+by+canaries+in+coalmines+a+simple+and+invaluable+way+for+miners+to+know+whether+they+re+safe
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+been+inspired+by+that+simplicity+as+i+ve+been+working+on+this+problem+with+some+of+the+most+hardworking+and+brilliant+people+i+ve+ever+known
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+think+there+s+a+simpler+solution+to+this+problem+one+that+can+be+used+by+people+who+face+conditions+like+this+everyday
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+in+its+early+stages++but+this+is+what+it+looks+like+right+now
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+call+it+the+water+canary+it+s+a+fast++cheap+device+that+answers+an+important+question+is+this+water+contaminated
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+doesn+t+require+any+special+training+and+instead+of+waiting+for+chemical+reactions+to+take+place
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+means+there+s+no+waiting+for+chemical+reactions+to+take+place+no+need+to+use+reagents+that+can+run+out
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+no+need+to+be+an+expert+to+get+actionable+information
found 1 videos: [['/talks/sonaar_luthra_meet_the_water_canary', '2012']]
selected: /talks/sonaar_luthra_meet_the_water_canary
sleep 3 seconds to avoid blocking
------<2072>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SoniaShah_2013G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=over+the+long+course+of+human+history
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+infectious+disease+that+s+killed+more+humans+than+any+other+is+malaria+it
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+carried+in+the+bites+of+infected+mosquitos+and+it+s+probably+our+oldest+scourge+we+may+have+had+malaria+since+we+evolved+from+the+apes
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+to+this+day+malaria+takes+a+huge+toll+on+our+species+we+ve+got+three+hundred+million+cases+a+year
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+over+half+a+million+deaths
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+this+really+makes+no+sense
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+ve+known+how+to+cure+malaria+since+the++1600s+that+s+when+jesuit+missionaries+in+peru+discovered+the+bark+of+the+cinchona+tree
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+inside+that+bark+was+quinine
error: request timeout
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+malaria+to+this+day++so+we+ve+known+how+to+cure+malaria+for+centuries++we+ve+known+how+to+prevent+malaria+since
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+when+the+british+army+surgeon+ronald+ross+discovered
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+it+was+mosquitos+that+carried+malaria++not+bad+air+or+miasmas+as+was+previously+thought+so
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=malaria+should+be+a+relatively+simple+disease+to+solve++and+yet+to+this+day
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hundreds+of+thousands+of+people+are+going+to+die+from+the+bite+of+a+mosquito+why+is+that+this+is+a+question+that+s
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=personally+intrigued+me+for+a+long+time+i+grew+up+as+the+daughter+of+indian+immigrants+visiting+my+cousins+in+india+every+summer
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+because+i+had+no+immunity+to+the+local+malarias+i+was+made+to+sleep+under
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sweaty+mosquito+net+every+night+while+my+cousins+they+were+allowed+to+sleep+out+on+the+terrace+and+have+this+nice+cool+night+breeze+wafting+over+them
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+really+hated+the+mosquitos+for+that
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+at+the+same+time+i+come+from+a+jain+family+and+jainism+is+a+religion+that+espouses+a+very
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=extreme+form+of+nonviolence++so+jains+are+not+supposed+to+eat+meat+we+re+not+supposed+to+walk+on+grass+because+you+could+you
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=know+inadvertently+kill+some+insects+when+you+walk+on+grass
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+supposed+to+swat+mosquitos++so
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+fearsome+power+of+this+little+insect+was+apparent+to+me+from+a+very+young+age+and+it+s+one+reason+why+i+spent+five+years+as+a+journalist+trying+to+understand
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=why+has+malaria+been+such+a+horrible+scourge+for+all+of+us+for+so+very+long
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+think+there+s+three+main+reasons
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=those+three+reasons+add+up+to+the+fourth+reason+which+is+probably+the+biggest+reason+of+all
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+first+reason+is+certainly+scientific
found 13 videos: [['/talks/steven_pinker_and_rebecca_newberger_goldstein_the_long_reach_of_reason', '2014'], ['/talks/henry_lin_what_we_can_learn_from_galaxies_far_far_away', '2014'], ['/talks/jennifer_doudna_how_crispr_lets_us_edit_our_dna', '2015'], ['/talks/robyn_stein_deluca_the_good_news_about_pms', '2015'], ['/talks/jedidah_isler_the_untapped_genius_that_could_change_science_for_the_better', '2015'], ['/talks/sonia_shah_3_reasons_we_still_haven_t_gotten_rid_of_malaria', '2013'], ['/talks/peter_attia_is_the_obesity_crisis_hiding_a_bigger_problem', '2013'], ['/talks/kristen_marhaver_how_we_re_growing_baby_corals_to_rebuild_reefs', '2015'], ['/talks/cynthia_breazeal_the_rise_of_personal_robots', '2011'], ['/talks/matt_killingsworth_want_to_be_happier_stay_in_the_moment', '2012'], ['/talks/jay_bradner_open_source_cancer_research', '2011'], ['/talks/tali_sharot_the_optimism_bias', '2012'], ['/talks/richard_weller_could_the_sun_be_good_for_your_heart', '2013']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+little+parasite+that+causes+malaria+it+s+probably+one+of+the+most+complex+and+wily+pathogens+known+to+humankind++it+lives+half+its+life+inside+the+cold+blooded+mosquito+and+half+its+life+inside
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+warm+blooded+human+these+two+environments+are+totally+different++but+not+only+that+they+re+both+utterly+hostile
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+the+insect+is+continually+trying+to+fight+off+the+parasite+and+so+is+the+human+body+continually+trying+to+fight+it+off+this+little+creature+survives+under+siege+like+that++but+not+only+does+it+survive
found 1 videos: [['/talks/sonia_shah_3_reasons_we_still_haven_t_gotten_rid_of_malaria', '2013']]
selected: /talks/sonia_shah_3_reasons_we_still_haven_t_gotten_rid_of_malaria
sleep 4 seconds to avoid blocking
------<2073>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SophalEar_2009U.stm
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+to+rebuild+states+after+war++but+today+i+ve+got+a+personal+story+to+share+with+you+this+is+a+picture+of+my+family+my+four
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+picture+is+taken+in+vietnam++so+how+did+a+cambodian+family+end+up+in+vietnam+in+one+thousand+nine+hundred+and+seventy+seven
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+to+explain+that+i+ve+got+a+short+video+clip+to+explain+the+khmer+rouge+regime+during
error: request timeout
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=led+by+peasant+born+pol+pot+the+khmer+rouge+evacuates+people+to+the+countryside
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+order+to+create+a+rural+communist+utopia++much+like+mao+tse+tung+s+cultural+revolution+in+china
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+khmer+rouge+closes+the+doors+to+the+outside+world++but+after+four+years
error: request timeout
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+a+country+of+only+seven+million+people+one+and+a+half+million+were+murdered+by+their+own+leaders+their
found 1 videos: [['/talks/sophal_ear_escaping_the_khmer_rouge', '2009']]
selected: /talks/sophal_ear_escaping_the_khmer_rouge
sleep 3 seconds to avoid blocking
------<2074>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SophieScott_2015.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+talk+to+you+today+about+laughter
found 6 videos: [['/talks/megan_washington_why_i_live_in_mortal_dread_of_public_speaking', '2014'], ['/talks/toby_shapshak_you_don_t_need_an_app_for_that', '2014'], ['/talks/ngozi_okonjo_iweala_how_africa_can_keep_rising', '2016'], ['/talks/anant_agarwal_why_massive_open_online_courses_still_matter', '2014'], ['/talks/cameron_russell_looks_aren_t_everything_believe_me_i_m_a_model', '2013'], ['/talks/dan_bell_inside_america_s_dead_shopping_malls', '2017']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+just+want+to+start+by+thinking+about+the+first+time+i+can+ever+remember+noticing+laughter+this+is+when+i+was+a+little+girl+i+would+ve+been+about+six++and+i+came+across+my+parents
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+were+laughing++they+were+laughing+very+very+hard+they+were+lying+on+the+floor+laughing++they+were+screaming+with+laughter
found 1 videos: [['/talks/sophie_scott_why_we_laugh', '2015']]
selected: /talks/sophie_scott_why_we_laugh
sleep 1 seconds to avoid blocking
------<2075>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SpencerWells_2007G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+are+a+few+of+the+languages+that+i+ve+spoken+little+bits+of+over+the+course+of+the+last+six
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+i+ve+been+to+seventeen+countries+i+think+i+m+up+to+on+this+crazy+tour+i+ve+been+doing
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=checking+out+various+aspects+of+the+project+that+we+re+doing+and+i+m+going+to+tell+you+a+little+bit+about+later+on+and+visiting+some+pretty+incredible+places
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=places+like+mongolia++cambodia++new+guinea+south+africa++tanzania+twice+i+was+here+a+month+ago
found 1 videos: [['/talks/spencer_wells_a_family_tree_for_humanity', '2008']]
selected: /talks/spencer_wells_a_family_tree_for_humanity
sleep 5 seconds to avoid blocking
------<2076>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SrdjaPopovic_2011X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=proud+to+be+here+at+tedxkrakow+i+ll+try+to+speak+a+little+bit+today+about+a+phenomenon+which+can+and+actually+is+changing+the+world
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+whose+name+is+people+power+i
found 6 videos: [['/talks/sherwin_nuland_the_extraordinary_power_of_ordinary_people', '2009'], ['/talks/shashi_tharoor_why_nations_should_pursue_soft_power', '2009'], ['/talks/jacek_utko_can_design_save_newspapers', '2009'], ['/talks/srdja_popovic_how_to_topple_a_dictator', '2011'], ['/talks/rachel_botsman_the_currency_of_the_new_economy_is_trust', '2012'], ['/talks/taryn_simon_the_stories_behind_the_bloodlines', '2012']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+for+those+of+you+who+are+monty+python+lovers+a+monty+python+type+of+sketch+here+it+is
found 1 videos: [['/talks/srdja_popovic_how_to_topple_a_dictator', '2011']]
selected: /talks/srdja_popovic_how_to_topple_a_dictator
sleep 5 seconds to avoid blocking
------<2077>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SrikumarRao_2009S.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+gratitude+at+the+tremendous+good+fortune+that+s+been+bestowed+on+you+that+as+you+go+through+the+day++you+become
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=alive+several+several+times++and
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+your+life+isn+t+like+that+i+d+like+to+humbly+suggest+that+you+re+wasting+your+life
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=life+is+too+short+to+be+wasted+so+what+i+propose+to+do+in+the+next+seventeen+minutes+i+ve+used+up+one+minute+already
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+to+give+you+a+set+of+powerful+tools+which+can+get+you+started
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+being+there+is+that+of+interest+to+you+audience+yes+srikumar
error: request timeout
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+a+conference+on+happiness++but+even+if+it+wasn+t+a+conference+on+happiness+would+it+be+right+if+i+said+that+in+some+way+shape+fashion+or+form
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=devoting+your+entire+life+to+being+happy
found 1 videos: [['/talks/srikumar_rao_plug_into_your_hard_wired_happiness', '2010']]
selected: /talks/srikumar_rao_plug_into_your_hard_wired_happiness
sleep 2 seconds to avoid blocking
------<2078>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SriSwamiDayanandaSaraswati_2009P.stm
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+for+quite+a+long+time
found 8 videos: [['/talks/david_carson_design_and_discovery', '2009'], ['/talks/stefan_sagmeister_the_power_of_time_off', '2009'], ['/talks/paul_collier_new_rules_for_rebuilding_a_broken_nation', '2009'], ['/talks/cary_fowler_one_seed_at_a_time_protecting_the_future_of_food', '2009'], ['/talks/chris_anderson_technology_s_long_tail', '2007'], ['/talks/stewart_brand_the_long_now', '2008'], ['/talks/daniel_goldstein_the_battle_between_your_present_and_future_self', '2011'], ['/talks/thomas_goetz_it_s_time_to_redesign_medical_data', '2011']]
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+cannot+be+consciously+a+contributor
found 1 videos: [['/talks/dayananda_saraswati_the_profound_journey_of_compassion', '2008']]
selected: /talks/dayananda_saraswati_the_profound_journey_of_compassion
sleep 2 seconds to avoid blocking
------<2079>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/StaceyKramer_2010.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+will+a+gift+i+d+like+for+you+to+picture+it+in+your+mind+it+s+not+too+big
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+the+size+of+a+golf+ball+so+envision+what+it+looks+like+all+wrapped+up+but+before+i+show+you+what+s+inside
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+will+tell+you+it+s+going+to+do+incredible+things+for+you
found 8 videos: [['/talks/morgan_spurlock_the_greatest_ted_talk_ever_sold', '2011'], ['/talks/charles_hazlewood_trusting_the_ensemble', '2011'], ['/talks/noel_bairey_merz_the_single_biggest_health_threat_women_face', '2012'], ['/talks/nathan_myhrvold_archeology_animal_photography_bbq', '2008'], ['/talks/bruce_feiler_the_council_of_dads', '2011'], ['/talks/majora_carter_3_stories_of_local_eco_entrepreneurship', '2010'], ['/talks/dan_gilbert_why_we_make_bad_decisions', '2008'], ['/talks/roger_ebert_remaking_my_voice', '2011']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+will+bring+all+of+your+family+together
found 3 videos: [['/talks/susan_cain_the_power_of_introverts', '2012'], ['/talks/patrick_chappatte_the_power_of_cartoons', '2010'], ['/talks/sheryl_wudunn_our_century_s_greatest_injustice', '2010']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+will+feel+loved+and+appreciated+like+never+before+and+reconnect+with+friends+and+acquaintances+you+haven+t+heard+from+in+years
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=adoration+and+admiration+will+overwhelm+you
found 1 videos: [['/talks/stacey_kramer_the_best_gift_i_ever_survived', '2010']]
selected: /talks/stacey_kramer_the_best_gift_i_ever_survived
sleep 3 seconds to avoid blocking
------<2080>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/StacySmith_2016W.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+tell+you+about+a+pressing+social+issue++now++it+s+not+nuclear+arms++it+s+not+immigration+and+it+s+not+malaria
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+here+to+talk+about+movies
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+in+all+seriousness+movies+are+actually+really+important
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+film+we+can+be+wildly+entertained++and+we+can+also+be+transported+through+storytelling
found 1 videos: [['/talks/stacy_smith_the_data_behind_hollywood_s_sexism', '2017']]
selected: /talks/stacy_smith_the_data_behind_hollywood_s_sexism
sleep 3 seconds to avoid blocking
------<2081>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/StanleyMcChrystal_2011.stm
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+a+tuesday+morning+i+conducted+a+parachute+jump+at+fort+bragg+north+carolina
found 1 videos: [['/talks/stanley_mcchrystal_listen_learn_then_lead', '2011']]
selected: /talks/stanley_mcchrystal_listen_learn_then_lead
sleep 1 seconds to avoid blocking
------<2082>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/StanleyMcChrystal_2014U.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+was+a+young+officer+they+told+me+to+follow+my+instincts+to+go+with+my+gut+and+what+i+ve+learned
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+that+often+our+instincts+are+wrong
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+summer+of+two+thousand+and+ten+there+was+a+massive
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=leak+of+classified+documents+that+came+out+of+the+pentagon
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+shocked+the+world++it+shook+up+the+american+government+and+it+made+people+ask+a+lot+of+questions+because
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+sheer+amount+of+information+that+was+let+out+and+the+potential+impacts+were+significant
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+one+of+the+first+questions+we+asked+ourselves+was+why+would+a+young
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=soldier+have+access+to+that+much+information+why+would+we+let+sensitive+things
found 1 videos: [['/talks/stanley_mcchrystal_the_military_case_for_sharing_knowledge', '2014']]
selected: /talks/stanley_mcchrystal_the_military_case_for_sharing_knowledge
sleep 1 seconds to avoid blocking
------<2083>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/StefanaBroadbent_2009G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=tensions+that+are+actually+happening+between+people+and+institutions+institutions+that+are+the+institutions+that+people+inhabit+in+their+daily+life+schools+hospitals
found 1 videos: [['/talks/stefana_broadbent_how_the_internet_enables_intimacy', '2009']]
selected: /talks/stefana_broadbent_how_the_internet_enables_intimacy
sleep 1 seconds to avoid blocking
------<2084>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/StefanLarsson_2013S.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+on+a+sabbatical++and+i+returned+to+the+medical+university+where+i+studied+i+saw+real+patients+and+i+wore
found 1 videos: [['/talks/stefan_larsson_what_doctors_can_learn_from_each_other', '2013']]
selected: /talks/stefan_larsson_what_doctors_can_learn_from_each_other
sleep 2 seconds to avoid blocking
------<2085>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/StefanoMancuso_2010G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+very+old+magazine+i+found+this+observation+test
found 2 videos: [['/talks/stefano_mancuso_the_roots_of_plant_intelligence', '2010'], ['/talks/kary_mullis_play_experiment_discover', '2009']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+the+story+of+the+ark
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+artist+that+drew+this+observation+test+did+some+errors+had+some+mistakes+there+are+more+or+less+twelve
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=mistakes+some+of+them+are+very+easy+there+is+a+funnel
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=an+aerial+part+a+lamp+and+clockwork+key+on+the+ark++some+of+them+are+about+the+animals+the+number++but+there+is+a+much+more+fundamental+mistake+in+the+overall+story+of+the+ark+that+s+not+reported+here
error: request timeout
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+we+have+god+that+is+going+to+submerge+earth
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=permanently+or+at+least+for+a+very+long+period++and+no+one+is+taking+care+of+plants
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=noah+needed+to+take+two+of+every+kind+of+bird+of+every+kind+of+animal+of+every+kind+of+creature+that+moves++but+no+mention+about+plants
error: request timeout
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+another+part+of+the+same+story+all+the+living+creatures
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+just+the+living+creatures+that+came+out
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=from+the+ark++so+birds+livestock+and+wild+animals
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=plants+are+not+living+creatures+this+is+the+point+that+is+a+point+that+is+not+coming+out+from
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+bible+but+it+s+something+that+really+accompanied+humanity++let+s+have+a+look+at+this+nice
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=code+that+is+coming+from+a+renaissance+book+here+we+have+the+description
found 1 videos: [['/talks/stefano_mancuso_the_roots_of_plant_intelligence', '2010']]
selected: /talks/stefano_mancuso_the_roots_of_plant_intelligence
sleep 1 seconds to avoid blocking
------<2086>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/StefanSagmeister_2004.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fifteen+years+ago+i+went+to+visit+a+friend+in+hong+kong+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+the+time+i+was+very+superstitious+so+upon+landing+this+was+still+at+the+old+hong+kong+airport+that+s+kai+tak
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+middle+of+the+city
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+thought+if+i+see+something+good++i+m+going+to+have+a+great+time+here+in+my+two+weeks
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+if+i+see+something+negative+i+m+going+to+be+miserable+indeed
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+the+plane+landed+in+between+the+buildings
found 1 videos: [['/talks/al_gore_averting_the_climate_crisis', '2006']]
selected: /talks/al_gore_averting_the_climate_crisis
sleep 4 seconds to avoid blocking
------<2087>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/StefanSagmeister_2008.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+showed+a+list+under+that+title+i+learned+very+few
found 3 videos: [['/talks/stefan_sagmeister_things_i_ve_learned_in_my_life_so_far', '2008'], ['/talks/stefan_sagmeister_the_power_of_time_off', '2009'], ['/talks/rick_smolan_the_story_of_a_girl', '2008']]
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=made+a+whole+number+of+them+into+projects+since
found 20 videos: [['/talks/stefan_sagmeister_the_power_of_time_off', '2009'], ['/talks/stefan_sagmeister_happiness_by_design', '2007'], ['/talks/margaret_wertheim_the_beautiful_math_of_coral', '2009'], ['/talks/garik_israelian_how_spectroscopy_could_reveal_alien_life', '2009'], ['/talks/ellen_dunham_jones_retrofitting_suburbia', '2010'], ['/talks/jimmy_wales_the_birth_of_wikipedia', '2006'], ['/talks/jonathan_harris_the_web_as_art', '2008'], ['/talks/jane_goodall_how_humans_and_animals_can_live_together', '2008'], ['/talks/jonathan_zittrain_the_web_as_random_acts_of_kindness', '2009'], ['/talks/stefan_sagmeister_things_i_ve_learned_in_my_life_so_far', '2008'], ['/talks/sergey_brin_larry_page_the_genesis_of_google', '2007'], ['/talks/james_balog_time_lapse_proof_of_extreme_ice_loss', '2009'], ['/talks/david_rockwell_a_memorial_at_ground_zero', '2007'], ['/talks/ray_kurzweil_a_university_for_the_coming_singularity', '2009'], ['/talks/majora_carter_3_stories_of_local_eco_entrepreneurship', '2010'], ['/talks/clay_shirky_how_cognitive_surplus_will_change_the_world', '2010'], ['/talks/alan_kay_a_powerful_idea_about_ideas', '2008'], ['/talks/bill_clinton_my_wish_rebuilding_rwanda', '2007'], ['/talks/mae_jemison_teach_arts_and_sciences_together', '2009'], ['/talks/bjorn_lomborg_global_priorities_bigger_than_climate_change', '2007']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+are+inflatable+monkeys+in+every+city+in+scotland
found 1 videos: [['/talks/stefan_sagmeister_things_i_ve_learned_in_my_life_so_far', '2008']]
selected: /talks/stefan_sagmeister_things_i_ve_learned_in_my_life_so_far
sleep 1 seconds to avoid blocking
------<2088>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/StefanSagmeister_2009G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+run+a+design+studio+in+new+york++every+seven+years+i+close+it+for+one+year+to+pursue
found 1 videos: [['/talks/stefan_sagmeister_the_power_of_time_off', '2009']]
selected: /talks/stefan_sagmeister_the_power_of_time_off
sleep 5 seconds to avoid blocking
------<2089>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/StefanSagmeister_2010S.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+best+part+of+last+year+working+on+a+documentary+about+my+own+happiness
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=trying+to+see+if+i+can+actually+train+my+mind+in+a+particular+way++like+i+can
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=train+my+body+so+i+can+end+up+with+an+improved+feeling+of
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=overall++well+being+then+this+january+my+mother+died++and+pursuing+a+film+like+that+just
found 1 videos: [['/talks/stefan_sagmeister_7_rules_for_making_more_happiness', '2011']]
selected: /talks/stefan_sagmeister_7_rules_for_making_more_happiness
sleep 4 seconds to avoid blocking
------<2090>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/StefanWolff_2010G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=today+i+want+to+talk+to+you+about+ethnic+conflict+and+civil+war
found 6 videos: [['/talks/stefan_wolff_the_path_to_ending_ethnic_conflicts', '2010'], ['/talks/srdja_popovic_how_to_topple_a_dictator', '2011'], ['/talks/parag_khanna_mapping_the_future_of_countries', '2009'], ['/talks/inge_missmahl_bringing_peace_to_the_minds_of_afghanistan', '2010'], ['/talks/gordon_brown_global_ethic_vs_national_interest', '2009'], ['/talks/kevin_bales_how_to_combat_modern_slavery', '2010']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+are+not+normally+the+most+cheerful+of+topics++nor+do+they+generally+generate+the+kind+of+good+news
found 1 videos: [['/talks/stefan_wolff_the_path_to_ending_ethnic_conflicts', '2010']]
selected: /talks/stefan_wolff_the_path_to_ending_ethnic_conflicts
sleep 5 seconds to avoid blocking
------<2091>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/StefonHarris_2011S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+tell+you+what+it+is+until+it+happens++i+didn+t+realize+there+was+going+to+be+a+little+music+before+so+i+think+i+m+going+to+start+with+what+i+just+heard
error: request timeout
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=first+of+all+let+s+welcome+mr+jamire+williams+on+the+drums
error: request timeout
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+the+bandstand+as+we+call+it+this+is+an+incredible+space+it+is+really+a+sacred+space++and+one+of+the+things+that+is+really+sacred+about+it+is+that+you+have+no+opportunity+to+think+about+the+future
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+the+past+you+really+are+alive+right+here+in+this
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+are+so+many+decisions+being+made+when+you+walk+on+the+bandstand+we+had+no+idea+what+key+we+were+going+to+play+in+in+the+middle+we+sort+of
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=made+our+way+into+a+song+called+titi+boom+but+that+could+have+happened+maybe+maybe+not+everyone+s+listening+we+re+responding+you+have+no+time+for+projected+ideas
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+the+idea+of+a+mistake
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=from+the+perspective+of+a+jazz+musician+it+s+easier+to
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=talk+about+someone+else+s+mistake
found 1 videos: [['/talks/eames_demetrios_the_design_genius_of_charles_ray_eames', '2009']]
selected: /talks/eames_demetrios_the_design_genius_of_charles_ray_eames
sleep 3 seconds to avoid blocking
------<2092>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/StellaYoung_2014X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+a+very+small+country+town
found 12 videos: [['/talks/dave_troy_social_maps_that_reveal_a_city_s_intersections_and_separations', '2014'], ['/talks/stella_young_i_m_not_your_inspiration_thank_you_very_much', '2014'], ['/talks/jonathan_haidt_can_a_divided_america_heal', '2016'], ['/talks/meera_vijayann_find_your_voice_against_gender_violence', '2014'], ['/talks/khalida_brohi_how_i_work_to_protect_women_from_honor_killings', '2015'], ['/talks/dalia_mogahed_what_it_s_like_to_be_muslim_in_america', '2016'], ['/talks/joshua_prager_in_search_of_the_man_who_broke_my_neck', '2013'], ['/talks/david_mackay_a_reality_check_on_renewables', '2012'], ['/talks/eli_beer_the_fastest_ambulance_a_motorcycle', '2013'], ['/talks/io_tillett_wright_fifty_shades_of_gay', '2013'], ['/talks/vinay_venkatraman_technology_crafts_for_the_digitally_underserved', '2012'], ['/talks/adam_driver_my_journey_from_marine_to_actor', '2016']]
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=had+a+very+normal+low+key+kind+of+upbringing++i+went+to+school++i+hung+out+with+my+friends++i+fought+with+my+younger
found 1 videos: [['/talks/stella_young_i_m_not_your_inspiration_thank_you_very_much', '2014']]
selected: /talks/stella_young_i_m_not_your_inspiration_thank_you_very_much
sleep 1 seconds to avoid blocking
------<2093>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/StephanieBusari_2017S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+tell+you+a+story+about+a+girl++but+i+can+t+tell+you+her+real+name+so+let+s+just+call+her
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hadiza+hadiza+is+twenty+she+s+shy++but+she+has+a+beautiful+smile
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+lights+up+her+face++but+she+s+in+constant
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+she+will+likely+be+on+medication+for+the+rest+of+her+life+do+you+want+to+know+why
found 5 videos: [['/talks/susan_pinker_the_secret_to_living_longer_may_be_your_social_life', '2017'], ['/talks/kristie_overstreet_what_doctors_should_know_about_gender_identity', '2018'], ['/talks/stephanie_busari_how_fake_news_does_real_harm', '2017'], ['/talks/sue_klebold_my_son_was_a_columbine_shooter_this_is_my_story', '2017'], ['/talks/worklife_with_adam_grant_the_office_without_a_holes', '2019']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hadiza+is+a+chibok+girl++and+on+april+fourteen+two+thousand+and+fourteen+she+was+kidnapped
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+boko+haram+terrorists+she+managed+to+escape
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+jumping+off+the+truck+that+was+carrying+the+girls++but+when+she+landed+she+broke+both+her+legs
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+she+had+to+crawl+on+her+tummy+to+hide+in+the+bushes+she+told+me+she+was+terrified+that+boko+haram+would+come+back+for+her
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=she+was+one+of+fifty+seven+girls+who+would+escape+by+jumping+off+trucks+that+day+this+story+quite+rightly+caused+ripples
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=around+the+world+people+like+michelle
found 11 videos: [['/talks/stephanie_busari_how_fake_news_does_real_harm', '2017'], ['/talks/michele_l_sullivan_asking_for_help_is_a_strength_not_a_weakness', '2017'], ['/talks/theo_e_j_wilson_a_black_man_goes_undercover_in_the_alt_right', '2017'], ['/talks/stephen_wilkes_the_passing_of_time_caught_in_a_single_photo', '2016'], ['/talks/andreas_ekstrom_the_moral_bias_behind_your_search_results', '2015'], ['/talks/kimberle_crenshaw_the_urgency_of_intersectionality', '2016'], ['/talks/alice_goffman_how_we_re_priming_some_kids_for_college_and_others_for_prison', '2015'], ['/talks/worklife_with_adam_grant_the_office_without_a_holes', '2019'], ['/talks/dragana_rogulja_how_artificial_light_affects_our_health', '2019'], ['/talks/eli_pariser_what_obligation_do_social_media_platforms_have_to_the_greater_good', '2019'], ['/talks/ocean_ramsey_why_the_world_needs_sharks', '2019']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=lent+their+voices+in+protest+and+at+about+the+same+time+i+was+living+in+london+at+the+time+i+was+sent+from+london+to+abuja+to+cover+the+world+economic+forum
found 1 videos: [['/talks/stephanie_busari_how_fake_news_does_real_harm', '2017']]
selected: /talks/stephanie_busari_how_fake_news_does_real_harm
sleep 1 seconds to avoid blocking
------<2094>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/StephenBurt_2013G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+the+time+and+write+about+it+frequently+and+take+poems+apart+to+see+how+they+work+because+i+m+a+word+person+i+understand+the+world
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=best+most+fully+in+words+rather+than+say+pictures+or+numbers+and+when+i+have+a+new+experience+or+a+new
found 5 videos: [['/talks/stephen_burt_why_people_need_poetry', '2014'], ['/talks/pico_iyer_the_art_of_stillness', '2014'], ['/talks/naomi_klein_addicted_to_risk', '2011'], ['/talks/rory_stewart_time_to_end_the_war_in_afghanistan', '2011'], ['/talks/hannah_fry_the_mathematics_of_love', '2015']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=feeling+i+m+a+little+frustrated+until+i+can+try+to+put+it+into+words+i+think+i+ve+always+been+that+way+i+devoured+science+fiction+as+a+child+i+still+do
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+found+poems+by+andrew+marvell+and+matthew+arnold+and+emily+dickinson+and+william+butler+yeats+because+they+were+quoted+in+science+fiction+and+i+loved+their+sounds+and+i+went+on
found 1 videos: [['/talks/stephen_burt_why_people_need_poetry', '2014']]
selected: /talks/stephen_burt_why_people_need_poetry
sleep 3 seconds to avoid blocking
------<2095>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/StephenCave_2013X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+here+remembers+when+they+first+realized+they+were+going+to+die
found 12 videos: [['/talks/stephen_cave_the_4_stories_we_tell_ourselves_about_death', '2013'], ['/talks/margaret_heffernan_the_dangers_of_willful_blindness', '2013'], ['/talks/jean_paul_mari_the_chilling_aftershock_of_a_brush_with_death', '2015'], ['/talks/sebastian_junger_why_veterans_miss_war', '2014'], ['/talks/fred_swaniker_the_leaders_who_ruined_africa_and_the_generation_who_can_fix_it', '2014'], ['/talks/joseph_kim_the_family_i_lost_in_north_korea_and_the_family_i_gained', '2013'], ['/talks/wes_moore_how_to_talk_to_veterans_about_war', '2014'], ['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013'], ['/talks/sarah_lewis_embrace_the_near_win', '2014'], ['/talks/karen_tse_how_to_stop_torture', '2011'], ['/talks/matthew_o_reilly_am_i_dying_the_honest_answer', '2014'], ['/talks/sarah_kay_if_i_should_have_a_daughter', '2011']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+do+i+was+a+young+boy++and+my+grandfather+had
found 19 videos: [['/talks/bill_ford_a_future_beyond_traffic_gridlock', '2011'], ['/talks/jarrett_j_krosoczka_how_a_boy_became_an_artist', '2013'], ['/talks/fabien_cousteau_what_i_learned_from_spending_31_days_underwater', '2014'], ['/talks/kevin_briggs_the_bridge_between_suicide_and_life', '2014'], ['/talks/stephen_cave_the_4_stories_we_tell_ourselves_about_death', '2013'], ['/talks/alice_goffman_how_we_re_priming_some_kids_for_college_and_others_for_prison', '2015'], ['/talks/raghava_kk_what_s_your_200_year_plan', '2012'], ['/talks/beeban_kidron_the_shared_wonder_of_film', '2012'], ['/talks/bryan_stevenson_we_need_to_talk_about_an_injustice', '2012'], ['/talks/paul_snelgrove_a_census_of_the_ocean', '2012'], ['/talks/dame_ellen_macarthur_the_surprising_thing_i_learned_sailing_solo_around_the_world', '2015'], ['/talks/tony_fadell_the_first_secret_of_design_is_noticing', '2015'], ['/talks/charity_tillemann_dick_singing_after_a_double_lung_transplant', '2011'], ['/talks/sarah_kaminsky_my_father_the_forger', '2011'], ['/talks/shereen_el_feki_a_little_told_tale_of_sex_and_sensuality', '2014'], ['/talks/tan_le_my_immigration_story', '2012'], ['/talks/krista_tippett_reconnecting_with_compassion', '2011'], ['/talks/michael_green_why_we_should_build_wooden_skyscrapers', '2013'], ['/talks/dave_isay_everyone_around_you_has_a_story_the_world_needs_to_hear', '2015']]
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+few+days+later+lying+in+bed+at+night+trying+to+make+sense+of+what+had+happened
found 2 videos: [['/talks/stephen_cave_the_4_stories_we_tell_ourselves_about_death', '2013'], ['/talks/andrew_solomon_depression_the_secret_we_share', '2013']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+did+it+mean+that+he+was+dead+where+had+he+gone+it+was+like
found 14 videos: [['/talks/margaret_heffernan_forget_the_pecking_order_at_work', '2015'], ['/talks/allan_savory_how_to_fight_desertification_and_reverse_climate_change', '2013'], ['/talks/bruce_aylward_humanity_vs_ebola_how_we_could_win_a_terrifying_war', '2015'], ['/talks/jeff_hancock_the_future_of_lying', '2012'], ['/talks/jennifer_pahlka_coding_a_better_government', '2012'], ['/talks/niall_ferguson_the_6_killer_apps_of_prosperity', '2011'], ['/talks/christopher_mcdougall_are_we_born_to_run', '2011'], ['/talks/simon_lewis_don_t_take_consciousness_for_granted', '2011'], ['/talks/paul_greenberg_the_four_fish_we_re_overeating_and_what_to_eat_instead', '2015'], ['/talks/rodney_mullen_pop_an_ollie_and_innovate', '2012'], ['/talks/stephen_cave_the_4_stories_we_tell_ourselves_about_death', '2013'], ['/talks/bobby_ghosh_why_global_jihad_is_losing', '2012'], ['/talks/marc_kushner_why_the_buildings_of_the_future_will_be_shaped_by_you', '2015'], ['/talks/anders_fjellberg_two_nameless_bodies_washed_up_on_the_beach_here_are_their_stories', '2015']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+hole+in+reality+had+opened+up+and+swallowed+him
found 1 videos: [['/talks/stephen_cave_the_4_stories_we_tell_ourselves_about_death', '2013']]
selected: /talks/stephen_cave_the_4_stories_we_tell_ourselves_about_death
sleep 2 seconds to avoid blocking
------<2096>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/StephenColeman_2011X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+i+want+to+talk+to+you+about+today+is+some+of+the+problems+that+the+military+of+the+western+world
found 14 videos: [['/talks/peter_eigen_how_to_expose_the_corrupt', '2010'], ['/talks/ethan_zuckerman_listening_to_global_voices', '2010'], ['/talks/geoff_mulgan_post_crash_investing_in_a_better_world', '2009'], ['/talks/stephen_coleman_non_lethal_weapons_a_moral_hazard', '2012'], ['/talks/carne_ross_an_independent_diplomat', '2010'], ['/talks/danny_hillis_the_internet_could_crash_we_need_a_plan_b', '2013'], ['/talks/madeleine_albright_on_being_a_woman_and_a_diplomat', '2011'], ['/talks/maajid_nawaz_a_global_culture_to_fight_extremism', '2011'], ['/talks/dalia_mogahed_the_attitudes_that_sparked_arab_spring', '2012'], ['/talks/jonas_gahr_store_in_defense_of_dialogue', '2012'], ['/talks/parag_khanna_mapping_the_future_of_countries', '2009'], ['/talks/paddy_ashdown_the_global_power_shift', '2012'], ['/talks/elif_shafak_the_politics_of_fiction', '2010'], ['/talks/aaron_huey_america_s_native_prisoners_of_war', '2010']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=australia++united+states+the+uk+and+so+on+face+in+some+of+the+deployments+that+they+re+dealing+with
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+modern+world+at+this+time+if+you+think+about+the+sorts+of+things+we+ve+sent+australian+military
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=personnel+to+in+recent+years+we+ve+got+obvious+things+like+iraq+and+afghanistan+but+you+ve+also+got+things+like+east+timor+and+the+solomon+islands+and+so+on
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+a+lot+of+these+deployments+that+we+re+sending+military+personnel+to+these+days+aren+t
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=traditional+wars++in+fact+a+lot+of+the+jobs++we+re+asking+military+personnel+to+do+in+those
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=situations+are+ones+that+in+their+own+countries+australia+the+us+and+so+on+would+actually+be+done+by+police+officers
found 1 videos: [['/talks/stephen_coleman_non_lethal_weapons_a_moral_hazard', '2012']]
selected: /talks/stephen_coleman_non_lethal_weapons_a_moral_hazard
sleep 4 seconds to avoid blocking
------<2097>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/StephenFriend_2014.stm
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+was+in+oncology+at+the+children+s+hospital+in+philadelphia
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+father+and+a+son+walked+into+my+office+and+they+both+had+their+right+eye+missing
found 1 videos: [['/talks/stephen_friend_the_hunt_for_unexpected_genetic_heroes', '2014']]
selected: /talks/stephen_friend_the_hunt_for_unexpected_genetic_heroes
sleep 3 seconds to avoid blocking
------<2098>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/StephenHawking_2008.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=bigger+or+older+than+the+universe
found 4 videos: [['/talks/stephen_hawking_questioning_the_universe', '2008'], ['/talks/jill_tarter_join_the_seti_search', '2009'], ['/talks/shekhar_kapur_we_are_the_stories_we_tell_ourselves', '2010'], ['/talks/stephen_petranek_10_ways_the_world_could_end', '2007']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+questions+i+would+like+to+talk+about+are
found 5 videos: [['/talks/murray_gell_mann_beauty_truth_and_physics', '2007'], ['/talks/dimitar_sasselov_how_we_found_hundreds_of_potential_earth_like_planets', '2010'], ['/talks/stephen_hawking_questioning_the_universe', '2008'], ['/talks/maz_jobrani_did_you_hear_the_one_about_the_iranian_american', '2010'], ['/talks/christopher_moot_poole_the_case_for_anonymity_online', '2010']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=where+did+we+come+from+how+did+the+universe+come+into+being
found 10 videos: [['/talks/stephen_hawking_questioning_the_universe', '2008'], ['/talks/george_smoot_the_design_of_the_universe', '2008'], ['/talks/amy_tan_where_does_creativity_hide', '2008'], ['/talks/shekhar_kapur_we_are_the_stories_we_tell_ourselves', '2010'], ['/talks/juan_enriquez_the_next_species_of_human', '2009'], ['/talks/srikumar_rao_plug_into_your_hard_wired_happiness', '2010'], ['/talks/elizabeth_gilbert_your_elusive_creative_genius', '2009'], ['/talks/philip_zimbardo_the_psychology_of_evil', '2008'], ['/talks/brian_greene_making_sense_of_string_theory', '2008'], ['/talks/marcus_du_sautoy_symmetry_reality_s_riddle', '2009']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+we+alone+in+the+universe++is+there+alien+life+out+there
found 13 videos: [['/talks/stephen_hawking_questioning_the_universe', '2008'], ['/talks/garik_israelian_how_spectroscopy_could_reveal_alien_life', '2009'], ['/talks/jill_tarter_join_the_seti_search', '2009'], ['/talks/john_hodgman_aliens_love_where_are_they', '2008'], ['/talks/bernie_dunlap_the_life_long_learner', '2008'], ['/talks/carolyn_porco_this_is_saturn', '2007'], ['/talks/mae_jemison_teach_arts_and_sciences_together', '2009'], ['/talks/martin_rees_is_this_our_final_century', '2007'], ['/talks/roy_gould_curtis_wong_a_preview_of_the_worldwide_telescope', '2008'], ['/talks/stephen_petranek_10_ways_the_world_could_end', '2007'], ['/talks/kevin_kelly_technology_s_epic_story', '2010'], ['/talks/elizabeth_gilbert_your_elusive_creative_genius', '2009'], ['/talks/steven_pinker_the_surprising_decline_in_violence', '2007']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+is+the+future+of+the+human+race++up+until+the
found 5 videos: [['/talks/martin_rees_is_this_our_final_century', '2007'], ['/talks/stephen_petranek_10_ways_the_world_could_end', '2007'], ['/talks/bernie_dunlap_the_life_long_learner', '2008'], ['/talks/stephen_hawking_questioning_the_universe', '2008'], ['/talks/al_gore_new_thinking_on_the_climate_crisis', '2008']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=everyone+thought+the+universe+was+essentially+static+and+unchanging
found 1 videos: [['/talks/stephen_hawking_questioning_the_universe', '2008']]
selected: /talks/stephen_hawking_questioning_the_universe
sleep 1 seconds to avoid blocking
------<2099>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/StephenLawler_2007.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+i+want+to+talk+to+you+about+today+is
found 1 videos: [['/talks/joseph_pine_what_consumers_want', '2009']]
selected: /talks/joseph_pine_what_consumers_want
sleep 4 seconds to avoid blocking
------<2100>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/StephenPalumbi_2010Z.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+can+be+a+very+complicated+thing+the+ocean+and+it+can+be+a+very+complicated+thing+what+human+health+is+and+bringing+those+two+together+might+seem+a+very+daunting+task++but+what+i+m+going+to+try+to+say
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+that+even+in+that+complexity+there+s+some+simple+themes+that+i+think+if+we+understand
found 1 videos: [['/talks/margaret_wertheim_the_beautiful_math_of_coral', '2009']]
selected: /talks/margaret_wertheim_the_beautiful_math_of_coral
sleep 1 seconds to avoid blocking
------<2101>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/StephenPetranek_2002.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+last+ten+years+are+really+extraordinary+to+the+point+where+we+know+more+about
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=universe+and+how+it+works+than
error: request timeout
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+there+was+something+else+that+i+ve+noticed
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+those+changes+were+taking+place+as+people+were+starting+to+find+out+that+hmm+yeah+there+really+is+a+black+hole+at+the+center+of+every+galaxy
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+science+writers+and+editors+i+shouldn
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=say+science+writers+i+should+say+people+who+write+about+science
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+editors+would+sit+down+over+a+couple+of+beers
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=after+a+hard+day+of+work+and+start+talking+about+some+of+these+incredible+perceptions+about+how+the+universe+works+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+would+inevitably+end+up+in+what+i+thought+was+a+very+bizarre+place+which+is+ways+the+world+could+end+very+suddenly
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+first+it+all+seemed+a+little+fantastical+to+me+but+after+challenging+a+lot+of+these+ideas
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+began+to+take+a+lot+of+them+seriously+and+then+september+eleventh+happened
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+thought+ah+god+i+can+t+go+to+the+ted+conference+and+talk+about+how+the+world+is+gonna+end+nobody+wants+to+hear+that+not+after+this
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+got+me+into+a+discussion+with+some+other+people+other+scientists+about
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=maybe+some+other+subjects+and+one+of+the+guys+i+talked+to+who+was+a+neuroscientist+said
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+lot+of+solutions+to+the+problems+you+brought+up+and+reminds+me+of
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=michael+s+talk+yesterday+and+his+mother+saying+you+can+t+have+a+solution+if+you+don+t+have+a+problem
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+we+went+out+looking+for+solutions+to+ways+that+the+world+might+end+tomorrow+and+lo+and+behold+we+found+them
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+leads+me+to+a+videotape+of+a+president+bush
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=press+conference+from+a+couple+of+weeks+ago+can+we+run+that
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+whatever+it+costs+to+defend+our+freedom
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+must+pay+it+i+agree+with+the+president+he+wants+two+trillion+dollars+to+protect+us+from+terrorists+next+year
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+two+trillion+dollar+federal+budget+which+will+land+us+back+into+deficit+spending+real
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=terrorists+aren+t+the+only+threat+we+face+there+are
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=really+serious+calamities+staring+us+in+the+eye+that+we+re+in+the+same+kind+of+denial+about+that+we+were+about
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=terrorism+and+what+could+ve+happened+on+september+eleventh
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+if+we+took+ten+billion+dollars+from+that
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+doled+out+a+billion+dollars+to+each+one+of+these+problems+i+m+going+to+talk+to+you+about+the+vast+majority+could+be+solved
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+rest+we+could+deal+with+so+i+hope+you+find+this+both+fascinating
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+fascinated+by+this+kind+of+stuff+i+gotta+admit
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+me+these+are+richard+s+cockroaches
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+also+hope+because+i+think+the+people+in+this+room+can+literally+change+the+world
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+hope+you+take+some+of+this+stuff+away+with+you+and+when+you+have+an+opportunity+to+be+influential
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+you+try+to+get+some+heavy+duty+money+spent+on+some+of+these+ideas+so+let+s+start
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=number+ten+we+lose+the+will+to+survive
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+live+in+an+incredible+age+of+modern+medicine+we+are+all+much+healthier+than+we+were+twenty+years+ago
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+around+the+world+are+getting+better+medicine
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+mentally+we+re+falling+apart
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+world+health+organization+now+estimates+that+one+out+of+five+people+on+the+planet+is+clinically+depressed
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+world+health+organization+also+says+that+depression+is+the+biggest+epidemic+that+humankind+has+ever+faced
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=soon+genetic+breakthroughs+and+even+better+medicine+are+going+to
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=allow+us+to+think+of+one+hundred+as+a+normal+life
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+female+child+born+tomorrow+on+average+median+will+live+to+age+eighty+three+our+life
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=longevity+is+going+up+almost+a+year+for+every+year+that+passes
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+the+problem+with+all+of+this+getting+older+is+that+people+over+sixty+five+are+the+most+likely+people+to+commit+suicide
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+what+are+the+solutions+we+don+t+really+have+mental+health+insurance+in+this
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+ninety+eight+percent+of+all+people+with+depression+and+i+mean+really+severe+depression+i+have+a+friend+with+stunningly+severe+depression
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+a+curable+disease+with+present+medicine+and+present+technology+but+it+is+often+a+combination+of+talk+therapy+and+pills+pills+alone+don+t+do+it
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+ought+to+be+able+to+go+to+a+psychiatrist
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+a+psychologist+and+put+down+your+ten+dollar+co+pay+and+get+treated+just+like+you+do+when+you+got+a+cut+on+your+arm+it+s+ridiculous+secondly
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=drug+companies+are+not+going+to+develop+really+sophisticated+psychoactive+drugs+we+know+that+most
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=mental+illnesses+have+a+biological+component+that+can+be+dealt+with+and+we+know+just+an+amazing+amount+more+about
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+brain+now+than+we+did+ten+years+ago
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+need+a+pump+push+from+the+federal+government+through+nih+and+national+science+nsf
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+places+like+that+to+start+helping+the+drug+companies+develop+some+advanced+psychoactive+drugs
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=moving+on+number+nine+don+t+laugh+aliens+invade+earth+ten+years+ago+you+couldn+t+have+found+an+astronomer+well+very+few
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=astronomers+in+the+world+who+would+ve+told+you+that+there+are+any+planets+anywhere+outside+our+solar+system+one+thousand+nine+hundred+and+ninety+five+we+found+three
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+count+now+s+up+to+eighty+we+re+finding+about+two+or+three+a+month
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+of+the+ones+we+ve+found+by+the+way+are+in+this+little+teeny+tiny+corner+where+we+live+in+the+milky+way
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+must+be+millions+of+planets+in+the+milky+way+and+as+carl+sagan
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=insisted+for+many+years+and+was+laughed+at+for+it+there+must+be+billions+and+billions+in+the+universe
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+a+few+years+nasa+is+gonna+launch+four+or+five+telescopes+out+to+jupiter+where+there+s+less+dust+and+start+looking+for+earth+like+planets
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+we+cannot+see+with+present+technology+nor+detect
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+becoming+obvious+that+the+chance+that+life+does+not+exist+elsewhere+in
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+universe+and+probably+fairly+close+to+us+is+a+fairly+remote+idea
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+chance+that+some+of+it+isn+t+more+intelligent+than+ours+is+also+a+remote+idea
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=remember+we+ve+only+been+an+advanced+civilization+an+industrial+civilization+if+you+would+for+two+hundred+years+although+every+time+i+go+to+pompeii+i+m+amazed+that
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+had+the+equivalent+of+a+mcdonald+s+on+every+street+corner+too+so+i+don+t+know+how+much+civilization+really+has+progressed
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=since+ad+seventy+nine+but+there+s+a+great+likelihood
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+really+believe+this+and+i+don+t+believe+in+aliens+but+and+i+don+t+believe+there+are+any+aliens+on+the+earth+or+anything+like+that+but
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+a+likelihood+that+we+will+confront+a+civilization+that+is+more+intelligent+than+our+own
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+if+they+come+to+you+know+suck+up+our+oceans+for+the+hydrogen+and+swat+us+away+like+flies
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+way+we+swat+away+flies+when+we+go+into+the+rainforest+and+start+logging+it+we+can+look+at+our+own+history+the+late+physicist+gerard+o+neill+said
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=advanced+western+civilization+has+had+a+destructive+effect+on+all+primitive+civilizations+it+has+come+in+contact+with
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=even+in+those+cases+where+every+attempt+was+made
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+protect+and+guard+the+primitive+civilization
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+re+the+primitive+civilization+so+what+are+the+solutions+to+this
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thank+god+you+can+all+read+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=may+seem+ridiculous+but+we+have+a+really+lousy+history
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+anticipating+things+like+this+and+actually+being+prepared+for+them+how+much+energy+and+money+does+it+take+to+actually+have+a+plan
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+negotiate+with+an+advanced+species
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+re+gonna+hear+more+from+me+about+this+we+have+to+become+an+outward+looking+space+faring+nation+we+have+got+to+develop+the+idea+that+the+earth+doesn+t+last+forever+our+sun+doesn+t+last+forever+if+we+want+humanity+to+last+forever
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+have+to+colonize+the+milky+way
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=way+and+that+is+not+something+that+is+beyond+comprehension+at+this+point+it+ll
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=also+help+us+a+lot+if+we+meet+an+advanced+civilization+along+the+way+if+we+re+trying+to+be+an+advanced+civilization+number+eight
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=number+eight+the+ecosystem+collapses+last+july+in+science+the+journal+science
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=nineteen+oceanographers+published+a+very+very+unusual+article+it+wasn+t+really+a+research+report+it+was+a+screed+they+said+we+ve+been+looking+at+the+oceans+for+a+long+time+now+and+we+wanna+tell+you+they+re+not+in+trouble+they+re+near+collapse
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+earth+are+in+real+real+danger+we+re+living+in+a+time+of+mass+extinctions+that+exceeds+the+fossil+record+by+a+factor+of+ten+thousand
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+have+lost+twenty+five+percent+of+the+unique+species+in+hawaii+in+the+last+twenty+years+california+is+expected+to+lose+twenty+five+percent+of+its+species+in+the+next+forty+years
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+marginal+tree+you+cut+down+that+tree+the+rain+forest+collapses+as+an+ecosystem+there+s+really+a+tree+like+that+out+there+that+s+really+what+it+comes+to
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+when+that+ecosystem+collapses+it+could+take+a+major+ecosystem+with+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+our+atmosphere+so+what+do+we+do+about+this+what+are+the+solutions
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+is+some+modeling+of+ecosystems+going+on+now+the+problem
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+ecosystems+is+that+we+understand+them+so+poorly+that+we+don+t+know+they+re+really+in+trouble+until+it+s+almost+too+late
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+need+to+know+earlier+that+they+re+getting+in+trouble+and+we+need+to
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=be+able+to+pump+possible+solutions+into+models+and+with+the+kind+of+computing+power+we+have+now+there+is+as+i+say+some+of+this+going+on+but+it+needs+money+national+science+foundation+needs+to+say+you+know
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=almost+all+the+money+that+s+spent+on+science+in+this+country+comes+from+the+federal+government+one+way
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+get+to+prioritize+you+know+there+are+people+at+the+national+science+foundation+who+get+to+say+this+is+the+most+important+thing+this+is+one+of+the+things+they+ought+to+be+thinking+more+about+secondly+we+need+to+create+huge+biodiversity+reserves+on+the+planet+and+start+moving+them+around
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+been+an+experiment+for+the+last+four+or+five+years+on+the+georges+bank
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+the+grand+banks+off+of+newfoundland
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+a+no+take+fishing+zone+they+can+t+fish+there+for+a+radius+of+two+hundred+miles
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+an+amazing+thing+has+happened+almost+all+the+fish+have+come+back+and+they+re+reproducing+like+crazy
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+re+going+to+have+to+start+doing+this+around+the+globe+we+re+gonna+have+to+have+no+take+zones+we+re+gonna+have+to+say+no+more+logging+in+the+amazon+for+twenty+years+let+it+recover
error: request timeout
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+all+remember+ted+kaczynski+the+unabomber+one+of+the+things+he+raved+about
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+that+a+particle+accelerator+experiment+could+go+haywire+and+set+off+a+chain+reaction+that+would+destroy+the+world
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+lot+of+very+sober+minded+physicists+believe+it+or+not+have+had+exactly+the+same+thought
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+spring+there+s+a+collider+at+brookhaven+on+long+island+this+spring+it+s+going+to+have+an+experiment+in+which+it+creates+black+holes+they
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=expecting+to+create+little+tiny+black+holes+they+expect+them+to+evaporate
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=other+collider+experiments+there+s+one+that+s+gonna+take+place+next+summer+at+cern+have+the+possibility+of+creating+something+called+strangelets+which+are+kind+of+like+antimatter+whenever+they+hit+other+matter+they+destroy+it
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=most+physicists+say+that+the+accelerators+we+have+now+are+not+really+powerful+enough+to+create+black+holes+and+strangelets+that+we+need+to+worry+about+and+they+re+probably+right+but+all+around+the+world+in+japan+in+canada
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+talk+about+this+of+reviving+this+in+the+united+states+we+shut+one+down+that+was+gonna+be+big+but+there+s+talk+of+building+very+big+accelerators
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+can+we+do+about+this+what
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+ve+got+the+fox+watching+the+hen+house+here+we+need+to
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+need+the+advice+of+particle+physicists+to+talk+about+particle+physics+and+what+should+be+done+in+particle+physics+but
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+need+some+outside+thinking+and+watchdogging+of+what+s+going+on+with+these+experiments
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=secondly+we+have+a+natural+laboratory+surrounding+the+earth+we+have
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=an+electromagnetic+field+around+the+earth+and+it+s+constantly
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=bombarded+by+high+energy+particles+like+protons+and+we+don+t+in+my+opinion+we+don+t+spend+enough+time
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=looking+at+that+natural+laboratory+and+figuring+out+first+what+s+safe+to+do+on+earth
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=number+six+biotech+disaster+it+s+one+of+my+favorite+ones+because+we+ve+done+several+stories+on+bt+corn
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=corn+is+a+corn+that+creates+its+own+pesticide+to+kill+a+corn+borer+you+may+of+heard+of+it+heard+it+called+starling
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=especially+when+all+those+taco+shells+were+taken
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=out+of+the+supermarkets+about+a+year+and+a+half+ago+this+stuff+was+supposed+to+only+be+feed+for+animals+in+the+united+states+and+it+got+into+the+human+food+supply+and
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=somebody+should+ve+figured+out+that+it+would+get+in+the+human+food+supply+very+easily+but+the+thing+that+s+alarming+is+a+couple+of+months+ago+in+mexico
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=where+bt+corn+and+all+genetically+altered+corn+is+totally+illegal
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+found+bt+corn+genes+in+wild+corn+plants+now+corn+originated+we+think+in+mexico
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+the+genetic+biodiversity+storehouse+of+corn
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+brings+back+a+skepticism+that+has+gone+away+recently+that+superweeds+and+superpests
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=could+spread+around+the+world+from+biotechnology+that+literally+could+destroy+the+world+s+food+supply+in+very+short+order
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+what+do+we+do+about+that
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+treat+biotechnology+with+the+same+scrutiny+we+apply+to+nuclear+power+plants
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+that+simple+this+is+an+amazingly+unregulated+field+when+the+starling+disaster+happened+there+was+a+battle+between+the+epa+and+the
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=over+who+really+had+authority+and+over+what+parts+of+this+and+they+didn+t+get+it+straightened+out+for+months+that+s+kind+of+crazy
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=number+five+one+of+my+favorites+reversal+of+the+earth+s+magnetic+field
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=believe+it+or+not+this+happens+every+few+hundred+thousand+years+and+has+happened+many+times+in+our+history+north+pole+goes+to+the+south+south+pole+goes+to+the+north+and+vice+versa
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=occurs+is+that+we+lose+our+magnetic+field+around+the+earth+over+the+period+of+about+one+hundred+years+and+that+means+that+all+these+cosmic+rays+and+particles+that
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+can+we+do+about+this
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+can+we+do+about+this
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+can+we+do+about+this
found 0 videos: []
sleep 1 seconds to avoid blocking
error: no video is found.
sleep 4 seconds to avoid blocking
------<2102>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/StephenPetranek_2015.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=strap+yourselves+in+we+re+going+to+mars
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+just+a+few+astronauts+thousands+of+people+are+going+to+colonize+mars+and+i+am+telling+you+that+they+re+going+to+do+this
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+of+you+will+end+up+working+on+projects+on+mars++and+i+guarantee+that+some+of+your+children+will+end+up+living+there
found 1 videos: [['/talks/stephen_petranek_your_kids_might_live_on_mars_here_s_how_they_ll_survive', '2016']]
selected: /talks/stephen_petranek_your_kids_might_live_on_mars_here_s_how_they_ll_survive
sleep 2 seconds to avoid blocking
------<2103>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/StephenRitz_2012X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+teacher+and+this+is+my+world++and+along+the+way+i+ve+started+noticing+i+m+on+my
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=third+generation+of+kids+that+they+re+getting+bigger+they+re+getting+sicker
found 1 videos: [['/talks/stephen_ritz_a_teacher_growing_green_in_the_south_bronx', '2012']]
selected: /talks/stephen_ritz_a_teacher_growing_green_in_the_south_bronx
sleep 3 seconds to avoid blocking
------<2104>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/StephenWilkes_2016.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+driven+by+pure+passion+to+create+photographs+that+tell+stories+photography+can+be+described+as+the+recording+of+a+single+moment
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=each+moment+or+photograph+represents+a+tangible+piece+of+our+memories+as+time+passes
found 1 videos: [['/talks/stephen_wilkes_the_passing_of_time_caught_in_a_single_photo', '2016']]
selected: /talks/stephen_wilkes_the_passing_of_time_caught_in_a_single_photo
sleep 1 seconds to avoid blocking
------<2105>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/StephenWolfram_2010.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+want+to+talk+today+about+an+idea++it+s+a+big+idea+actually+i+think+it+ll+eventually+be+seen+as+probably+the+single+biggest+idea+that+s+emerged+in+the+past+century+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+the+idea+of+computation+now+of+course+that+idea+has+brought+us+all+of+the+computer+technology+we+have+today+and+so+on++but+there+s+actually+a+lot
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=more+to+computation+than+that+it+s+really+a+very+deep+very+powerful+very+fundamental+idea++whose+effects+we+ve+only+just+begun+to+see
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well++i+myself+have+spent+the+past+thirty+years+of+my+life+working+on+three+large+projects
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+really+try+to+take+the+idea+of+computation+seriously+so+i+started+off
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+a+young+age+as+a+physicist+using+computers+as+tools+then+i+started+drilling+down+thinking+about+the
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+might+want+to+do+trying+to+figure+out+what+primitives+they+could+be+built+up+from+and+how+they+could+be+automated+as+much+as+possible
found 1 videos: [['/talks/stephen_wolfram_computing_a_theory_of_all_knowledge', '2010']]
selected: /talks/stephen_wolfram_computing_a_theory_of_all_knowledge
sleep 5 seconds to avoid blocking
------<2106>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SteveHoward_2013G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+spent+my+life+working+on+sustainability
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+set+up+a+climate+change+ngo+called+the+climate+group++i+worked+on+forestry+issues+in+wwf++i+worked+on+development+and+agriculture+issues+in+the+u+n+system
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+total+and+then+three+years+ago+i+found+myself+talking+to
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ikea+s+ceo+about+joining+his+team
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+many+people+here++well++i+want+to+maximize+my+personal+impact+in+the+world+so
error: request timeout
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=why+i+joined+the+team+there+but+first+let+s+just+take+three+numbers+the+first+number+is+three+three+billion
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+the+number+of+people+joining+the+global+middle+class+by+two+thousand+and+thirty+coming+out+of+poverty+it
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+fantastic+for+them+and+their+families++but+we+ve+got+two+billion+people+in+the+global+middle+class+today++and+this+swells+that+number+to+five+a+big+challenge+when+we+already+have+resource+scarcity
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+second+number+is+six+this+is+six+degrees+centigrade+what+we+re+heading+towards+in+terms+of+global+warming+we+re+not+heading+towards+one+degree+or+three
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+four+degrees+we+re+heading+toward+six+degrees
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+if+you+think+about+it+all+of+the+weird+weather+we+ve+been+having+the+last+few+years++much+of+that+is+due+to+just+one+degree+warming
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+need+co2+emissions+to+peak+by+the+end+of+this+decade+globally+and+then+come+down+it
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+not+inevitable++but+we+need+to+act+decisively
error: request timeout
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+the+number+of+cities+in+the+world+that+had+a+million+or+more+people+when+my+grandmother+was+born+you+can+see+my+grandmother+there+that+was+in+the+beginning+of+the+last+century
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+just+twelve+cities+she+was+born+in+manchester+england+the+ninth+largest+city+in+the+world+now+there+are+five+hundred+cities++nearly+with+a+million+people+or+more+in+them
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+if+you+look+at+the+century+from+one+thousand+nine+hundred+and+fifty+to+two+thousand+and+fifty+that+s+the+century+when+we+build+all+the+world+s+cities
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+century+that+we+re+in+the+middle+of+right+now+every+other+century+was+kind+of+practice++and+this+lays+down+a+blueprint+for+how+we+live
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+think+about+it+we+re+building+cities+like+never+before++bringing+people+out+of+poverty+like+never+before
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+changing+the+climate+like+never+before+sustainability+has+gone+from+a+nice+to+do+to+a+must+do
found 1 videos: [['/talks/steve_howard_let_s_go_all_in_on_selling_sustainability', '2013']]
selected: /talks/steve_howard_let_s_go_all_in_on_selling_sustainability
sleep 4 seconds to avoid blocking
------<2107>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SteveJurvetson_2007.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=m+a+venture+capitalist+on+weekends++i+love+rockets++i+love+photography+i+love+rockets+i+m+going+to+talk+about+a+hobby+that+can+scale+and+show+you+photos+i+ve+taken+over+the+years+with+kids+like+these+that+hopefully+will+grow+up+to+love+rocketry+and+eventually
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+richard+branson+or+diamandis+my+son+designed+a+rocket+that+became+stable+a+golf+ball+rocket+i+thought+it+was+quite+an+interesting+experiment+in
found 1 videos: [['/talks/steve_jurvetson_model_rocketry', '2008']]
selected: /talks/steve_jurvetson_model_rocketry
sleep 5 seconds to avoid blocking
------<2108>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SteveKeil_2011X.stm
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+start+a+revolution++now+before+you+get+up+in+arms+or+you+break+into+song+or+you+pick+a+favorite+color++i+want+to+define+what+i+mean
found 1 videos: [['/talks/steve_keil_a_manifesto_for_play_for_bulgaria_and_beyond', '2011']]
selected: /talks/steve_keil_a_manifesto_for_play_for_bulgaria_and_beyond
sleep 4 seconds to avoid blocking
------<2109>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/StevenAddis_2012.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=photography+has+been+my+passion+ever+since+i+was+old+enough+to+pick+up+a+camera++but+today+i+want+to+share+with+you
found 1 videos: [['/talks/steven_addis_a_father_daughter_bond_one_photo_at_a_time', '2012']]
selected: /talks/steven_addis_a_father_daughter_bond_one_photo_at_a_time
sleep 5 seconds to avoid blocking
------<2110>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/StevenCowley_2009G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+are+we+going+to+get+fusion+it+s+really
found 2 videos: [['/talks/morgan_spurlock_the_greatest_ted_talk_ever_sold', '2011'], ['/talks/juan_enriquez_the_life_code_that_will_reshape_the_future', '2007']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=been+a+long+time+since+we+ve+known+about+fusion+we+ve+known+about+fusion+since+one+thousand+nine+hundred+and+twenty+when+sir+arthur+stanley+eddington+and+the+british+association+for+the+advancement+of+science
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=conjectured+that+that+s+why+the+sun+shines
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=always+been+very+worried+about+resource+i+don+t+know+about+you+but+when+my+mother+gave+me+food+i+always+sorted+the+ones+i
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=liked++and+i+ate+the+disliked+ones+first+because+the+ones+you+like+you+want+to+save++and+as+a+child+you+re+always
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+once+it+was+sort+of
found 8 videos: [['/talks/mikko_hypponen_fighting_viruses_defending_the_net', '2011'], ['/talks/jessica_jackley_poverty_money_and_love', '2010'], ['/talks/zainab_salbi_women_wartime_and_the_dream_of_peace', '2010'], ['/talks/chris_anderson_ted_s_nonprofit_transition', '2008'], ['/talks/reed_kroloff_a_tour_of_modern_architecture', '2008'], ['/talks/pete_alcorn_the_world_in_2200', '2009'], ['/talks/richard_seymour_how_beauty_feels', '2011'], ['/talks/frank_gehry_my_days_as_a_young_rebel', '2008']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=explained+to+me+how+fast+we+were+using+up+the+world+s+resources
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+got+very+upset+about+as+upset+as+i+did+when+i+realized+that+the+earth+will+only+last+about+five+billion+years+before+it+s+swallowed+by+the+sun
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=big+events+in+my+life+a+strange+child
found 9 videos: [['/talks/steven_cowley_fusion_is_energy_s_future', '2009'], ['/talks/benoit_mandelbrot_fractals_and_the_art_of_roughness', '2010'], ['/talks/peter_ward_a_theory_of_earth_s_mass_extinctions', '2009'], ['/talks/john_hodgman_aliens_love_where_are_they', '2008'], ['/talks/rory_sutherland_sweat_the_small_stuff', '2010'], ['/talks/rachel_sussman_the_world_s_oldest_living_things', '2010'], ['/talks/pamela_meyer_how_to_spot_a_liar', '2011'], ['/talks/saul_griffith_everyday_inventions', '2007'], ['/talks/simon_lewis_don_t_take_consciousness_for_granted', '2011']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=energy+at+the+moment+is+dominated+by
found 6 videos: [['/talks/steven_cowley_fusion_is_energy_s_future', '2009'], ['/talks/david_christian_the_history_of_our_world_in_18_minutes', '2011'], ['/talks/michael_pawlyn_using_nature_s_genius_in_architecture', '2011'], ['/talks/geoffrey_west_the_surprising_math_of_cities_and_corporations', '2011'], ['/talks/geoff_mulgan_post_crash_investing_in_a_better_world', '2009'], ['/talks/ray_anderson_the_business_logic_of_sustainability', '2009']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=probably+the+only+person+who+really+enjoys+it+when+mister+putin+turns+off+the+gas+tap+because+my+budget+goes+up
found 1 videos: [['/talks/steven_cowley_fusion_is_energy_s_future', '2009']]
selected: /talks/steven_cowley_fusion_is_energy_s_future
sleep 1 seconds to avoid blocking
------<2111>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/StevenJohnson_2003.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+take+you+back+basically+to+my+hometown+and+to+a+picture+of+my+hometown+of+the+week+that+emergence+came+out++and+it+s+a+picture+we+ve+seen+several+times
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=right+there+in+the+west+village+so+the+plume+was+luckily+blowing+west+away+from+us+we+had+a
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=baby+in+the+house+that+was+ours+we+hadn+t+taken+it+from+somebody+else
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+thoughts+that+i+had+dealing+with+these+two+separate+emergences+of+a+of+a+book+and+a+baby++and+having+this+event+happen+so+close
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+my+first+thought+when+i+was+still+kind+of+in+the+apartment+looking+out+at+it+all+or+walking+out+on+the+street+and+looking+out+on+it+just+in+front+of+our+building+was
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+i+d+made+a+terrible+miscalculation+in+the+book+that+i+d+just+written+because+so+much+of+that+book+was+a+celebration+of+the
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=potential+of+density+of+largely+urban+density+of+connecting+people+and+putting+them+together+in+one+place+and+putting+them+on+sidewalks+together+and+having+them+share+ideas+and+share+physical+space+together
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+seemed+to+me+looking+at+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+tower+burning+and+then+falling+those+towers+burning+and+falling+that+in+fact+one+of+the+lessons+here+was+that+density+kills++and+that+of+all+the+technologies+that+were+exploited
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=probably+the+single+group+of+technologies+that+that+cost+the+most+lives+were+those+that+enable+fifty+thousand+people+to+live
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+two+buildings+one+hundred+and+ten+stories+above+the+ground
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+they+hadn+t+been+crowded+you+compare+the+loss+of+life+at+the+pentagon+to+the+to+the+twin+towers+and+you+can+see+that+very+powerfully++and+so+i+started
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know+density+density+i+m+not+sure+if+you+know+this+was+the+right+call
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+kind+of+ruminated+on+that+for+a+couple+of+days++and+then+about+two+days+later+the+wind+started+to+change+a+little+bit+and+you+could
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+could+sense+that+the+air+was+not+healthy++and+so+even+though+there+were+no+cars+still
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+west+village+where+we+lived+my+wife+sent+me+out+to+buy+a+you+know+a+large+air+filter+at+the+bed+bath+and+beyond
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+was+located+about+twenty+blocks+away+north
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+i+went+out+and+obviously+i+m+physically+a+very+strong+person+as+you+can+tell+so+i
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=wasn+t+worried+about+carrying+this+thing+twenty+blocks+and+i+walked+out+and+this+really+miraculous+thing+happened+to+me+as+i+was+walking+north
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+buy+this+air+filter++which+was+that+the+streets+were+completely+alive
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+was+an+incredible+it+was+you+know+a+beautiful+day+as+it+was+for+about+a+week+after
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+west+village+had+never+seemed+more+lively+i+walked+up+along+hudson+street+where+jane+jacobs+had+lived+and+written+her+great+book+that+so+influenced+what+i+was+writing+in+emergence
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=past+the+white+horse+tavern+that+great+old+bar+where
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=dylan+thomas+drank+himself+to+death+and+the+bleecker+street+playground+was+filled+with+kids+and+all+the+people+who+lived+in+the
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=owned+restaurants+and+bars+in+the+neighborhood+were+all+out+there+had+them+all+open+people+were+out+there+were+no+cars+so+it+seemed+even+better+in+some+ways++and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+a+beautiful+urban+day++and+the+incredible+thing+about+it+was+that+the+city+was+working
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+city+was+there+all+the+things+that+make+a+great+city+successful+and+all+the+things+that+make+a+great+city+stimulating+they+were+all+on+display+there
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+those+streets++and+i
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+the+power+of+a+city+i+mean+the+power+of+the+city+we+talked+about+cities+as+being+centralized+in+space+but+what+makes+them+so+strong+most+of+the+time+is+they+re+decentralized+in+function
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+don+t+have+a+center+executive+branch+that+you+can+take+out+and+cause+the+whole+thing+to+fail++if+they+did+it+probably+was+right+there+at+ground+zero+i+mean+you+know+the+emergency+bunker+was+right+there+was+destroyed+by+the
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+the+attacks+and+obviously+the+the+damage+done+to+the+building+and+the+lives+but+nonetheless+just+twenty+blocks+north+two+days+later++the+city+had+never+looked+more
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=alive+if+you+d+gone+into+the+minds+of+the+people+well+you+would+have+seen+a+lot+of+trauma+and+you+would+have+seen+a+lot+of+heartache
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+would+have+seen+a+lot+of+things+that+would+take+a+long+time+to+recover+but+the+system+itself+of+this+city
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+thriving++so+i+took+heart+in+seeing+that+so
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+wanted+to+talk+a+little+bit+about+the+reasons+why+that+works
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+well+and+how+some+of+those+reasons+kind+of+map+on
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+where+the+web+is+going+right+now+the+question+that+i+found+myself+asking+to+people+when+i+was+talking+about+the+book+afterwards+is+when+you+ve+talked+about+emergent+behavior+when+you+ve+talked+about+collective+intelligence++the+best+way+to+get+people+to+kind+of+wrap+their+heads+around+that+is+to+ask
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+decides+that+soho+should+have+this+personality+and+that+the+latin+quarter+should+have+this+personality+well+there+are+some+kind+of+executive+decisions+but+mostly+the+answer+is+everybody+and+nobody+everybody+contributes+a+little+bit
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=no+single+person+is+really+the+the+ultimate+actor+behind+the+personality+of+a+neighborhood++same+thing+to+the+question+of+who+was+keeping+the+streets+alive
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=post+9+eleven+in+my+neighborhood+well+it+was+the+whole+city+the+whole+system+kind+of+working+on+it+and+everybody+contributing+a+small+little+part
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+is+increasingly+what+we+re+starting+to+see+on+the+web
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+a+bunch+of+interesting+ways+most+of+which+weren+t+around+actually+except+in+very+experimental+things+when+i+was+writing+emergence+and+when+the+book+came+out+so+it+s+been+a+very
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=optimistic+time+i+think+and+i+want+to+just+talk+about+a+few+of+those+things++i+think+that+there+is+effectively+a+new+kind+of+model+of+interactivity+that+s+starting+to+emerge+online+right+now+and+the+old+one
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=looked+like+this+this+is+not+the+future
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=king+of+england+although+it+looks+like+it+it+s+some+guy+it+s+a+geocities+homepage+of+some+guy+that+i+found
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=online+who+s+interested+if+you+look+at+the+bottom+in+soccer+and+jesus+and+garth+brooks+and+clint+beckham+and+my+hometown+those+are+his+links++but+nothing+really+says+this+model+of+interactivity+which+was+so
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=exciting+and+captures+the+the+real+the+web+zeitgeist+of+one+thousand+nine+hundred+and+ninety+five+than
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=put+up+a+picture+of+your+dog+and+link+to+it+and+somebody+reading+the+page+has+the+power+to+click+on+that+link+or+not+click+on+that+link++and+you+know+i+don+t+want+to+belittle+that+that+in+a+sense+to
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+jeff+was+talking+about+yesterday+that+was+in+a+sense+the+kind+of+interface+electricity+that+powered+a+lot+of+the
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+explosion+of+interest+in+the+web+that+you+could+put+up+a+link+and+somebody+could+click+on+it+and+it+could+take+you+anywhere+you+wanted+to+go++but+it+s+still+a+very+one+to+one+kind+of+relationship+there+s+one+person
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=putting+up+the+link+and+there+s+another+person+on+the+other+end+trying+to+decide+whether+to+click+on+it+or+not
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+new+model+is+much+more+like+this+and+we+ve+already+seen+a+couple+of+references+to+this
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+what+happens+when+you+search+steven+johnson+on+google+about+two+months+ago++i+had+the+great+breakthrough+one+of+my+great+kind
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=shining+achievements+which+is+that+my+website+finally+became+a+top+result+for+steven+johnson
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+some+theoretical+physicist+at+mit+named+steven+johnson+who+has+dropped+two+spots+i+m+happy+to+say
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+mean+i+ll+look+at+a+couple+of+things+like+this+but+google+is+obviously+the+greatest+technology+ever+invented+for+navel+gazing++it+s+just+that+there+are+so+many+other+people+in+your+navel+when+you
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=creating+this+page+obviously+and+we+all+know+this+but+it+s+worth+just+thinking+about+it+is+not+some+person+deciding+that+i+am+the+the+number+one
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+rather+somehow+the+entire+web+of+people+putting+up+pages+and+deciding+to+link+to+my+page+or+not+link+to+it+and+google+just+sitting+there+and+running+the+numbers
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+there+s+this+collective+decision+making+that+s+going+on+this+page+is+effectively+collectively+authored+by+the+web
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+google+is+just+helping+us+kind+of+to+put+the+authorship+in+one+kind+of+coherent+place++now+they+re+more+innovative+well+google+s+pretty+innovative+but+there+are+some+new
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=twists+on+this+there+s+this+incredibly+interesting+new+site+technorati+that+s+filled+with+lots+of+little+widgets+that+are+expanding+on+these+and+these+are
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=looking+in+the+in+the+blog+world+and+the
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+the+weblogs+out+there+that+he+s+tracking+and+he+s+tracking+how+many+other+weblogs+linked+to+those+weblogs
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+you+have+kind+of+an+authority+a+weblog+that+has+a+lot+of+links+to+it+is+more+authoritative+than+a+weblog+that+has+few+links+to+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+at+any+given+time+on+any+given+page+on+the+web+actually+you+can+say+what+does+the+weblog+community+think+about+this+page
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+can+get+a+list+this+is+what+they+think+about+my+site+it+s+ranked+by+blog+authority+you+can+also+rank+it+by+the+latest+posts
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+when+i+was+talking+in+emergence+i+talked+about+the+limitations+of+the+one+way+linking+architecture+that+basically+you+could+link+to+somebody+else+but+they+wouldn+t+necessarily+know+that+you+were+pointing+to+them
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+was+one+of+the+reasons+why+the+web+wasn+t+quite+as+emergent+as+it+could+be+because+you+needed+two+way+linking+you+needed+that+kind+of+feedback+mechanism+to+be+able+to+really+do+interesting+things+well+something+like+technorati
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+s+interesting+here+is+that+this+is+a+quote+from+dave+weinberger+where+he+talks+about+everything+being
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=purposive+in+the+web+there+s+nothing+artificial+he+has+this+line+where+he+says+you+know+you+re+going+to
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=put+up+a+link+there+if+you+see+a+link+somebody+decided+to+put+it+there+and+he+says+the+link+to+one+site+didn+t+just+grow+on+the+the+other+page+like+a+tree+fungus
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+in+fact+i+think+that+s+not+entirely+true+anymore
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+could+put+up+a+feed+of+all+those+links
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=generated+by+technorati+on+the+right+hand+side+of+my+page+and+they+would+change+as+the+overall
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ecology+of+the+web+changes+that+little+list+there+would+change+i+wouldn+t+really+be+directly+in+control+of+it+so+it+s+much+closer+in+a+way+to+a+data+fungus+in+a+sense+wrapped+around+that+page+than
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+is+to+a+deliberate+link+that+i+ve+placed+there
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+what+you+re+having+here+is+basically+a+global+brain+that+you+re+able+to+do+lots+of+kind+of+experiments+on+to+see+what+it+s+thinking
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+there+are+all+these+interesting+tools+google+does+the+google+zeitgeist
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+looks+at+search+requests+to+test+what+s+going+on+what+people+are+interested+in+and+they+publish+it+with+lots+of+fun+graphs
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+m+saying+a+lot+of+nice+things+about+google+so+i+ll+be+i+ll+be+saying+one+little+critical+thing+there+s+a+problem+with+the+google+zeitgeist+which+is+it+often+comes+back+with+news+that+a+lot+of+people+are+searching+for+britney+spears+pictures
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+is+not+necessarily+news+the+columbia+blows+up+suddenly+there+are+a+lot+of+searches+on+columbia+well+you+know+we+should+expect+to+see+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+not+necessarily+something+we+didn+t+know+already++so+the+key+thing+in+terms+of+these+new+tools+that+are+kind+of+plumbing+the+depths+of+the+global+brain+that+are+sending+kind+of+trace+dyes+through+that+whole+bloodstream
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+question+is+are+you+finding+out+something+new+and+one+of+the+things+that+i
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=experimented+with+is+this+thing+called+google+share+which+is+basically++you+take+an+abstract+term++and
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+search+google+for+that+term++and+then+you+search+the+results+that+you+get
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+basically+the+number+of+pages+that+mention+this+term++that+also+mention+this+page+the+percentage+of+those+pages+is+that+person+s+google+share+of+that+term
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+you+can+do+kind+of+interesting+contests+like+for+instance+this+is+a+google+share+of+the+ted+conference++so
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=richard+saul+wurman+has+about+a+fifteen+percent+google+share+of+the+ted+conference+our+good+friend+chris
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=has+about+a+six+percent+but+with+a+bullet+i+might+add
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+the+interesting+thing+is+you+can+broaden+the+search+a+little+bit+and+it+turns+out+actually+that+forty+two+percent+is+the+the+mola+mola+fish+i+had+no+idea+no+that+s+not+true
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+made+that+up+because+i+just+wanted+to+put+up+a+slide+of+the+mola
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+also+did+and+i+don+t+want+to+start+a+little+fight+in+the+next+panel+but+i+did+a+google+share+analysis+of+evolution+and+natural+selection
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+right+here+now+this+is+a+big+category+you+have+smaller+percentages+so+this+is+zero+point+seven+percent
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=dan+dennett+who+ll+be+speaking+shortly+right+below+him+zero+point+five+percent+steven+pinker++so+dennett+s+in
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=lead+a+little+bit+there++but+what+s+interesting+is+you+can+then+broaden+the+search+and+actually+see+interesting+things+and+get+a+sense+of+of+what+else+is+out+there+so
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=gary+bauer+is+not+too+far+behind+has+slightly+different+theories+about+about+evolution+and+natural+selection++and+right+behind+him+is
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+see+we+re+in+the+ascot+which+is+always+good+and+by+the+way+chris+that+would+ve+been+a+really+good+panel++i+think
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hubbard+apparently+started+to+reach+but+besides+that+i+think+it+would+be+good+next+year
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=another+quick+thing+this+is+a+slightly+different+thing+but+this+analysis+some+of+you+may+have+seen+it+just+came+out+this+is+bursty+words+looking+at+the
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=historical+record+of+state+of+the+union+addresses
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+these+are+words+that+suddenly+start+to+appear+out+of+nowhere+so+they+re+kind+of++you+know+memes+that+start+taking+off+that+didn+t+have+a+lot+of+historical+precedent+before
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+are+the+bursty+words+around+1860s+slaves+emancipation+slavery+rebellion+kansas++that+s+britney+spears+i+mean+you+know++ok+interesting+they+re+talking+about+slavery+in+one+thousand+eight+hundred+and+sixty
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+thousand+nine+hundred+and+thirty+five+relief+depression+recovery+banks+and+ok+i+didn+t+learn+anything+new+there+as+well+that+s+pretty+obvious+one+thousand+nine+hundred+and+eighty+five+right+at+the+center+of+the+reagan+years
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+have+a+lot+of+syllables+so+you+know+you+can+actually+download+it+s+hard+to+remember+those
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+seriously+actually+what+you+can+see+there+in+a+way+that+would+be+very+hard+to+detect+otherwise+is+reagan+reinventing+the+political+language+of+the+country
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+and+shifting+to+a+much+more+intimate+much+more+folksy+much+more+telegenic+contracting+all+those+verbs+you+know+twenty+years+before+it+was+still
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+you+can+do+but+with+reagan+it+s+that+s+where+there+s+nancy+and+i+that+kind+of+language
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+something+we+kind+of+knew+but+you+didn+t+actually+notice+syntactically+what+he+was+doing+i+ll
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=go+very+quickly+the+question+now+and+this+is+the+really+interesting+question+is+what+kind+of+higher+level+shape+is+emerging+right+now+in+the+overall+web+ecosystem+and+particularly+in+the+ecosystem+of+the+blogs+because+they+are+really+kind+of
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=think+what+happens+there+will+also+happen+in+the+wider+system+now+there+was+a+very+interesting+article+by+clay+shirky+that+got+a+lot+of+attention+about+a+month+ago++and+this+is+basically+the+distribution+of+links
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+the+web+to+all+these+various+different+blogs
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+follows+a+power+law+so+that+there+are+a+few+extremely+well+linked+to+popular+blogs+and+a+long+tail+of+blogs+with+very+few+links++so+twenty+percent+of+the+blogs+get+eighty
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=percent+of+the+of+the+links
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+this+is+a+very+interesting+thing+it+s+caused+a+lot+of+controversy+because+people+thought+that+this+was+the+ultimate+kind+of+one+man+one+modem+democracy+where+anybody+can+get+out+there+and+get+their+voice+heard
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+the+question+is+why+is+this+happening+it+s+not+being+imposed+by+fiat+from+above+it+s+an+emergent+property+of+the+blogosphere+right+now
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+s+great+about+it+is+that+people+are+working+on+within+seconds+of+clay+publishing+this+piece+people+started+working+on+changing+the+underlying+rules+of+the+system+so+that+a+different+shape
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=would+start+appearing+and+basically+the+shape+appears+largely+because+of+a+kind+of+a+first+mover+advantage+if+you+re+the+first+site+there+everybody+links+to+you+if+you+re+the+second+site+there++most+people+link+to+you+and+so+very+quickly+you+can+accumulate+a+bunch+of+links+and+it+makes+it+more+likely+for+newcomers+to+link+to+you+in+the+future+and+then+you+get+this+kind+of
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+what+dave+sifry+at+technorati+started+working+on+literally+as+shirky+started
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=after+he+published+his+piece+was+something+that+basically+just+gave+a+new+kind+of+priority+to+newcomers++and+he+started+looking+at+interesting+newcomers+that+don+t+have+a+lot+of+links+that+suddenly+get
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+bunch+of+links+in+the+last
found 0 videos: []
error: no video is found.
sleep 3 seconds to avoid blocking
------<2112>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/StevenJohnson_2006S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+haven+t+ordered+yet
found 1 videos: [['/talks/spencer_wells_a_family_tree_for_humanity', '2008']]
selected: /talks/spencer_wells_a_family_tree_for_humanity
sleep 4 seconds to avoid blocking
------<2113>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/StevenJohnson_2010G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=few+minutes+ago++i+took+this+picture
found 13 videos: [['/talks/clifford_stoll_the_call_to_learn', '2008'], ['/talks/nathan_myhrvold_archeology_animal_photography_bbq', '2008'], ['/talks/carl_safina_the_oil_spill_s_unseen_villains_and_victims', '2010'], ['/talks/george_smoot_the_design_of_the_universe', '2008'], ['/talks/melissa_garren_the_sea_we_ve_hardly_seen', '2012'], ['/talks/richard_pyle_a_dive_into_the_reef_s_twilight_zone', '2009'], ['/talks/peter_hirshberg_the_web_is_more_than_better_tv', '2008'], ['/talks/eric_giler_a_demo_of_wireless_electricity', '2009'], ['/talks/bruce_aylward_how_we_ll_stop_polio_for_good', '2011'], ['/talks/sarah_jones_a_one_woman_global_village', '2009'], ['/talks/james_balog_time_lapse_proof_of_extreme_ice_loss', '2009'], ['/talks/joel_levine_why_we_need_to_go_back_to_mars', '2010'], ['/talks/gordon_brown_wiring_a_web_for_global_good', '2009']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+ten+blocks+from+here++this+is+the+grand+cafe+here+in+oxford++i+took+this+picture+because+this+turns+out+to+be+the+first+coffeehouse+to
found 1 videos: [['/talks/steven_johnson_where_good_ideas_come_from', '2010']]
selected: /talks/steven_johnson_where_good_ideas_come_from
sleep 5 seconds to avoid blocking
------<2114>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/StevenJohnson_2016V.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=northwest+border+of+modern+day+slovenia
found 1 videos: [['/talks/steven_johnson_the_playful_wonderland_behind_great_inventions', '2016']]
selected: /talks/steven_johnson_the_playful_wonderland_behind_great_inventions
sleep 1 seconds to avoid blocking
------<2115>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/StevenLevitt_2004.stm
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ll+be+talking+not+about+my+own+tragedy+but+other+people+s+tragedy+it+s+a+lot+easier+to+be+lighthearted+about+other+people+s+tragedy
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=than+your+own+and+i+want+to+keep+it+in+the+spirit+of+the+conference++so
found 1 videos: [['/talks/steven_levitt_the_freakonomics_of_crack_dealing', '2006']]
selected: /talks/steven_levitt_the_freakonomics_of_crack_dealing
sleep 5 seconds to avoid blocking
------<2116>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/StevenLevitt_2005G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=once+upon+a+time+there+was+a+dread+disease+that+afflicted+children+and+in+fact++among+all+the+diseases+that+existed
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+this+land+it+was+the+worst+it+killed+the+most+children+and+along+came+a+brilliant+inventor+a+scientist+who+came+up+with+a+partial+cure+for+that+disease
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+wasn+t+perfect++many+children+still+died+but
found 2 videos: [['/talks/jacqueline_novogratz_patient_capitalism', '2007'], ['/talks/chris_abani_telling_stories_from_africa', '2007']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+certainly+better+than+what+they+had+before++and+one+of+the+good+things+about+this+this+cure+was+that
found 2 videos: [['/talks/aubrey_de_grey_a_roadmap_to_end_aging', '2006'], ['/talks/james_howard_kunstler_the_ghastly_tragedy_of_the_suburbs', '2007']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+free++virtually+free++and+was+very+easy+to+use+but+the+worst+thing+about+it+was+that+you+couldn+t+use+it+on+the+youngest+children+on
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+consequence+a+few+years+later+another+scientist+perhaps+maybe+this+scientist+not+quite+as+brilliant+as+the+one+who+had+preceded+him++but+building+on+the+invention+of+the+first+one
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=came+up+with+a+second+a+second+cure++and+the+beauty+of+the+second+cure+for+this+disease+was+that+it+could+be+used+on+infants+and
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+problem+with+this+cure+was
found 2 videos: [['/talks/sherwin_nuland_how_electroshock_therapy_changed_me', '2007'], ['/talks/david_deutsch_chemical_scum_that_dream_of_distant_quasars', '2006']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+very+expensive+and+it+was+very+complicated+to+use+and+although+parents+tried+as+hard+as+they+could+to+use+it+properly
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=almost+all+of+them+ended+up+using+it+wrong+in+the+end
found 4 videos: [['/talks/larry_brilliant_the_case_for_optimism', '2007'], ['/talks/james_nachtwey_my_wish_let_my_photographs_bear_witness', '2007'], ['/talks/richard_branson_life_at_30_000_feet', '2007'], ['/talks/ben_saunders_why_did_i_ski_to_the_north_pole', '2006']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+what+they+did+of+course+since+it+was+so+complicated+and+expensive+they+only+used+it+on+the++zero+year+olds+and+the+one+year+olds
found 1 videos: [['/talks/amory_lovins_winning_the_oil_endgame', '2007']]
selected: /talks/amory_lovins_winning_the_oil_endgame
sleep 4 seconds to avoid blocking
------<2117>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/StevenPetranek_2002.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+advances+that+have+taken+place+in+astronomy++cosmology
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+biology+in+the+last+ten+years++are+really+extraordinary
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+the+point+where+we+know+more+about+our+universe
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=many+of+you+might+imagine++but+there+was+something+else+that+i+ve+noticed
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+those+changes+were+taking+place+as+people+were+starting+to+find+out+that+hmm+yeah+there+really+is+a+black+hole+at+the+center+of+every+galaxy+the
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=science+writers+and+editors+i+shouldn+t+say+science+writers+i+should+say+people+who+write+about+science
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+editors+would+sit+down+over+a+couple+of+beers
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=after+a+hard+day+of+work+and+start+talking+about+some+of+these+incredible+perceptions+about+how+the+universe+works++and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+would+inevitably+end+up+in+what+i+thought+was+a+very+bizarre+place+which+is+ways+the+world+could+end+very+suddenly
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=at+first+it+all+seemed+a+little+fantastical+to+me+but
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=after+challenging+a+lot+of+these+ideas++i+began+to+take+a+lot+of+them+seriously+and+then+september+eleven+happened
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+thought+ah+god+i+can+t+go+to+the+ted+conference+and+talk+about+how+the+world+is+going+to+end
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=nobody+wants+to+hear+that+not+after+this++and+that+got+me+into+a+discussion+with+some+other+people+other+scientists+about
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=maybe+some+other+subjects+and+one+of+the+guys+i+talked+to+who+was+a+neuroscientist+said+you+know+i+think+there+are+a+lot+of+solutions+to+the+problems+you+brought+up
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=michael+s+talk+yesterday+and+his+mother+saying+you+can+t+have+a+solution+if+you+don+t+have+a
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=problem+so+we+went+out+looking+for+solutions+to+ways+that+the+world+might+end+tomorrow++and+lo+and+behold++we+found+them
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+whatever+it+costs+to+defend+our+freedom
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+must+pay+it+sp+i+agree+with+the+president+he+wants+two+trillion+dollars+to
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=protect+us+from+terrorists+next+year+a+two+trillion+dollar+federal+budget+which+will+land+us+back+into+deficit+spending+real+fast
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+only+threat+we+face+there+are
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=really+serious+calamities+staring+us+in+the+eye+that+we+re+in+the+same+kind+of+denial+about+that+we+were+about
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=terrorism+and+what+could+ve+happened+on+september+eleven
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+would+propose+therefore++that+if+we+took+ten+billion+dollars+from+that+two+point+one+three
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+doled+out+a+billion+dollars+to+each+one+of+these+problems+i+m+going+to+talk+to+you+about+the+vast+majority+could+be+solved
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+rest+we+could+deal+with++so++i+hope+you+find+this
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+fascinated+by+this+kind+of+stuff+i+gotta+admit
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+me+these+are+richard+s+cockroaches
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+also+hope++because+i+think+the+people+in+this+room+can+literally+change+the+world
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+hope+you+take+some+of+this+stuff+away+with+you+and+when+you+have+an+opportunity+to+be+influential
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+you+try+to+get+some+heavy+duty+money+spent+on+some+of+these+ideas++so+let+s+start
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=number+ten+we+lose+the+will
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+live+in+an+incredible+age+of+modern+medicine+we+are+all+much+healthier+than+we+were+twenty+years+ago
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+around+the+world+are+getting+better+medicine
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+mentally++we+re+falling+apart+the+world+health+organization+now+estimates
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+one+out+of+five+people+on+the+planet+is+clinically+depressed
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+world+health+organization+also+says+that+depression+is+the
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=biggest+epidemic+that+humankind+has+ever+faced
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=soon+genetic+breakthroughs+and+even+better+medicine+are+going+to
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=allow+us+to+think+of+one+hundred+as+a+normal+lifespan
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+female+child+born+tomorrow+on+average+median+will+live+to+age+eighty+three+our+life
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=longevity+is+going+up+almost+a+year+for+every+year+that+passes
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+the+problem+with+all+of+this+getting+older+is+that+people+over+sixty+five+are+the+most+likely+people+to+commit+suicide
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+what+are+the+solutions++we+don+t+really+have+mental+health+insurance+in+this
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=often+a+combination+of+talk+therapy+and+pills+pills+alone+don+t+do+it++especially+in+clinically+depressed+people
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+ought+to+be+able+to+go+to+a+psychiatrist
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+a+psychologist+and+put+down+your++10+dollar+copay++and+get+treated+just+like+you+do+when+you+got+a+cut+on+your+arm+it+s+ridiculous++secondly
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=drug+companies+are+not+going+to+develop+really+sophisticated+psychoactive+drugs++we+know+that+most
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=mental+illnesses+have+a+biological+component+that+can+be+dealt+with+and+we+know+just+an+amazing+amount+more+about+the
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+than+we+did+ten+years+ago++we+need+a+pump+push+from+the+federal+government++through+nih+and+national+science+nsf
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+places+like+that+to+start+helping+the+drug+companies+develop+some+advanced+psychoactive+drugs++moving+on+number+nine
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=aliens+invade+earth++ten+years+ago+you+couldn+t+have+found+an+astronomer+well+very+few+astronomers
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+world+who+would+ve+told+you+that+there+are+any+planets+anywhere+outside+our+solar+system+one+thousand+nine+hundred+and+ninety+five+we+found+three
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+count+now+is+up+to+eighty+we+re+finding+about+two+or+three+a+month
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+of+the+ones+we+ve+found+by+the+way+are+in+this+little+teeny+tiny+corner+where+we+live+in+the+milky+way
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+must+be+millions+of+planets+in+the+milky+way++and+as+carl+sagan+insisted
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+many+years+and+was+laughed+at+for+it++there+must+be+billions+and+billions+in+the+universe
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+a+few+years+nasa+is+going+to+launch+four+or+five+telescopes+out+to+jupiter+where+there+s+less+dust+and+start+looking+for+earth+like+planets
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+we+cannot+see+with+present+technology+nor+detect
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+becoming+obvious+that+the+chance+that
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=life+does+not+exist+elsewhere+in
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+universe+and+probably+fairly+close+to+us+is+a+fairly+remote+idea
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+chance+that+some+of+it+isn+t+more+intelligent+than+ours+is+also+a+remote+idea
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=remember+we+ve+only+been+an+advanced+civilization+an+industrial+civilization+if+you+would+for+two+hundred+years+although+every+time+i+go+to+pompeii+i+m+amazed+that
error: request timeout
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+mcdonald+s+on+every+street+corner+too+so+i+don+t+know+how+much+civilization+really+has+progressed+since+ad+seventy+nine+but
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+a+great+likelihood+i+really+believe+this++and+i+don+t+believe+in+aliens++and+i+don+t+believe+there+are+any+aliens+on+the+earth+or+anything+like+that+but
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+a+likelihood+that+we+will+confront+a+civilization+that+is+more+intelligent+than+our+own+now+what+will+happen
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+if+they+come+to+you+know++suck+up+our+oceans+for+the+hydrogen+and+swat+us+away+like+flies
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+swat+away+flies+when+we+go+into+the+rainforest+and+start+logging+it+we+can+look+at+our+own+history+the+late+physicist+gerard+o+neill+said
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=advanced+western+civilization+has+had+a+destructive+effect+on+all+primitive+civilizations+it+has+come+in+contact+with
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=even+in+those+cases+where+every+attempt+was+made
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+protect+and+guard+the+primitive+civilization+if+the+aliens+come+visiting
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=re+the+primitive+civilization++so+what+are+the+solutions+to+this
error: request timeout
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+all+read+it+may+seem+ridiculous+but+we+have+a+really+lousy+history+of+anticipating+things+like+this+and+actually+being+prepared+for+them+how+much+energy+and+money
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=does+it+take+to+actually+have+a+plan+to+negotiate+with+an+advanced+species
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=secondly++and+you+re+going+to+hear+more+from+me+about+this+we+have+to+become+an
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=nation+we+have+got+to+develop+the+idea+that+the+earth+doesn+t+last+forever+our+sun+doesn+t+last+forever++if+we+want+humanity+to+last+forever
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+have+to+colonize+the+milky+way
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+is+not+something+that+is+beyond+comprehension+at+this+point+it+ll
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=also+help+us+a+lot+if+we+meet+an+advanced+civilization+along+the+way++if+we+re+trying+to+be+an+advanced+civilization
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=number+eight+the+ecosystem+collapses+last+july+in+science++the+journal+science
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=nineteen+oceanographers+published+a+very+very+unusual+article+it+wasn+t+really+a+research+report+it+was+a+screed++they+said++we+ve+been+looking+at+the+oceans+for+a+long+time+now++and+we+want+to+tell+you+they+re+not+in+trouble+they+re+near+collapse
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+earth+are+in+real+real
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=danger++we+re+living+in+a+time+of+mass+extinctions+that+exceeds+the+fossil+record+by+a+factor+of+ten+thousand
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+have+lost+twenty+five+percent+of+the+unique+species+in+hawaii+in+the+last+twenty+years++california+is+expected+to+lose+twenty+five+percent+of+its+species+in+the+next+forty+years
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=somewhere+in+the+amazon+forest+is+the+marginal+tree++you+cut+down+that+tree++the+rain+forest+collapses
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+an+ecosystem++there+s+really+a+tree+like+that+out+there+that+s+really+what+it+comes+to
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+when+that+ecosystem+collapses+it+could+take+a+major+ecosystem+with+it++like+our+atmosphere
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+what+do+we+do+about+this+what+are+the+solutions
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+is+some+modeling+of+ecosystems+going+on+now++the+problem+with
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+ecosystems+is+that+we+understand+them+so+poorly+that+we+don+t+know+they+re+really+in+trouble+until+it+s+almost+too+late
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+they+re+getting+in+trouble++and+we+need+to
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=be+able+to+pump+possible+solutions+into+models++and+with+the+kind+of+computing+power+we+have+now+there+is+as+i+say+some+of+this+going+on+but+it+needs+money+national+science+foundation+needs+to+say
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+the+money+that+s+spent+on+science+in+this+country+comes+from+the+federal+government+one+way+or+another
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+get+to+prioritize++you+know+there+are+people+at+the+national+science+foundation+who+get+to+say+this+is+the+most+important+thing++this+is+one+of+the+things+they+ought+to+be+thinking+more+about++secondly+we+need+to+create+huge
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=biodiversity+reserves+on+the+planet+and+start+moving+them+around+there+s+been+an+experiment+for+the+last+four+or+five+years+on+the+georges+bank
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+an+amazing+thing+has+happened+almost+all+the+fish+have+come+back++and+they+re+reproducing+like+crazy
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+re+going+to+have+to+start+doing+this+around+the+globe+we+re+going+to+have+to+have+no+take+zones+we+re+going+to+have+to+say+no+more+logging+in+the+amazon+for+twenty+years++let+it+recover
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+all+remember+ted+kaczynski+the+unabomber+one+of+the+things+he+raved+about
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+that+a+particle+accelerator+experiment+could+go+haywire
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+set+off+a+chain+reaction+that+would+destroy+the+world
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+lot+of+very+sober+minded+physicists+believe+it+or+not+have+had+exactly+the+same+thought+this+spring+there+s+a+collider+at+brookhaven+on+long+island
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+an+experiment+in+which+it+creates+black+holes+they+are+expecting
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+create+little+tiny+black+holes++they+expect+them+to+evaporate
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=other+collider+experiments+there+s+one+that+s+going+to+take+place+next+summer+at+cern
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+the+possibility+of+creating+something+called+strangelets+which+are+kind+of+like+antimatter+whenever+they+hit+other+matter+they+destroy+it
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=most+physicists+say+that+the+accelerators+we+have+now+are+not+really+powerful+enough+to+create+black+holes+and+strangelets+that+we+need+to+worry+about++and+they+re+probably+right+but+all+around+the+world++in+japan+in+canada
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+talk+about+this+of+reviving+this+in+the+united+states+we+shut+one+down+that+was+going+to+be+big++but+there+s+talk+of+building+very
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+can+we+do+about+this++what+are+the+solutions++we+ve+got+the+fox+watching+the+henhouse+here++we+need+to
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+need+the+advice+of+particle+physicists+to+talk+about+particle+physics+and+what+should+be+done+in+particle+physics+but
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=outside+thinking+and+watchdogging+of+what+s+going+on+with+these+experiments++secondly+we+have+a+natural+laboratory+surrounding+the+earth+we+have
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=an+electromagnetic+field+around+the+earth++and+it+s+constantly+bombarded
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+high+energy+particles+like+protons++and+in+my+opinion+we+don+t+spend+enough+time
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=looking+at+that+natural+laboratory+and+figuring+out+first+what+s+safe+to+do+on+earth
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=number+six+biotech+disaster+it+s+one+of+my+favorite+ones+because+we+ve+done+several+stories+on+bt+corn+bt+corn+is+a+corn
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+creates+its+own+pesticide+to+kill+a+corn+borer
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+may+of+heard+of+it+heard+it+called+starlink++especially+when+all+those+taco+shells+were+taken
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=out+of+the+supermarkets+about+a+year+and+a+half+ago++this+stuff+was+supposed+to+only+be+feed+for+animals+in+the+united+states+and+it+got+into+the+human+food+supply++and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=somebody+should+ve+figured+out+that+it+would+get+in+the+human+food+supply+very+easily+but+the+thing+that+s+alarming+is+a+couple+of+months+ago+in+mexico
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=where+bt+corn+and+all+genetically+altered+corn+is+totally+illegal
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+found+bt+corn+genes+in+wild+corn+plants+now++corn+originated+we+think++in+mexico
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+the+genetic+biodiversity+storehouse+of+corn++this+brings+back+a+skepticism+that+has+gone
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=superweeds+and+superpests+could+spread+around+the+world+from+biotechnology++that+literally+could+destroy+the+world+s+food+supply+in+very+short+order+so+what
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+treat+biotechnology+with+the+same+scrutiny+we+apply+to+nuclear+power+plants
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+that+simple++this+is+an+amazingly+unregulated+field+when+the+starlink+disaster+happened+there+was+a+battle+between
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+really+had+authority+and+over+what+parts+of+this++and+they+didn+t+get+it+straightened+out+for+months+that+s+kind+of+crazy
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=number+five+one+of+my+favorites+reversal+of+the+earth+s+magnetic+field++believe+it+or+not+this+happens+every+few+hundred+thousand+years++and+has+happened+many+times+in+our+history++north+pole+goes+to+the+south+south+pole+goes+to+the+north+and+vice
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+this+occurs+is+that+we+lose+our+magnetic+field+around+the+earth
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=over+the+period+of+about+one+hundred+years++and+that+means+that+all+these+cosmic+rays+and+particles+that+are+to+come+streaming+at+us+from+the+sun+that+this
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=field+protects+us+from+are+well+basically++we+re+gonna+fry
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=can+we+do+about+this++oh+by+the+way+we+re+overdue+it+s
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=been+seven+hundred+and+eighty+thousand+years+since+this+happened+so+it+should+have+happened+about+four+hundred+and+eighty+thousand
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=years+ago+oh+and+here+s+one+other+thing+scientists+think+now+our+magnetic+field+may+be
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=maybe+we+re+in+the+throes+of+it+one+of+the+problems+of+trying+to+figure+out+how+healthy+the+earth+is+is+that+we
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+you+know+we+don+t+have+good+weather+data+from+sixty+years+ago+much+less+data+on+things+like+the+ozone+layer++so
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+a+fairly+simple+solution+to+this++there+s+going+to+be+a+lot+of+cheap+rocketry+that+s+going+to+come+online+in+about+six+or+seven+years
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+gets+us+into+the+low+atmosphere+very
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=cheaply++you+know++we+can+make+ozone+from+car+tailpipes++it+s+not+hard+it+s+just+three+oxygen+atoms
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+brought+the+entire+ozone+layer+down+to+the+surface+of+the+earth+it+would+be+the+thickness+of+two+pennies+at+fourteen+pounds+per+square+inch+you+don+t+need+that+much+up+there
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+need+to+learn+how+to+repair+and+replenish
error: request timeout
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=solar+flares+are+enormous+magnetic+outbursts+from+the+sun+that+bombard+the+earth+with+high+speed+subatomic+particles
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+far+our+atmosphere+has+done+and+our+magnetic+field+has+done+pretty+well+protecting+us+from+this++occasionally++we+get+a+flare+from+the+sun+that
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=communications+and+so+forth++and+electricity
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+the+alarming+thing+is+that+astronomers+recently+have+been+studying+stars+that+are+similar+to+our+sun+and+they+ve+found+that+a+number+of+them
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+they+re+about+the+age+of+our+sun+brighten+by+a+factor+of+as+much+as+twenty
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=doesn+t+last+for+very+long++and+they+think+these+are+super+flares+millions+of+times+more+powerful+than+any+flares+we+ve+had+from+our+sun+so+far
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=side+to+it+in+studying+stars+like+our+sun+we+ve+found+that+they+go+through+periods+of+diminishment+when+their
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=total+amount+of+energy+that+s+expelled+from+them+goes+down+by+maybe+one+percent+one+percent+doesn+t+sound+like+a+lot+but+it+would+cause+one+hell+of+an+ice+age+here+so
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+can+we+do+about+this
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+one+of+my+favorite+subjects+i+wrote+a+story+about+this+in+life+magazine+in
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=rocket+science+but+it+s+not+hard+rocket+science
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=everything+that+we+need+to+make+an+atmosphere+on+mars+and+to+make+a+livable+planet+on+mars++is+probably+there+and
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=send+little+nuclear+factories+up+there+that+gobble+up+the+iron+oxide+on+the+surface+of+mars
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+spit+out+the+oxygen+the+problem+is+it+takes+three+hundred+years+to+terraform+mars
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=really+more+like+five+hundred+years+to+do+it+right++there+s+no+reason+why+we+shouldn+t+start+now+number+three
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+new+global+epidemic+people+have+been+at+war+with+germs+ever+since+there+have+been+people+and+from+time+to+time+the
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+had+a+flu+epidemic+in+the+united+states+that+killed+twenty+million+people+that+was+back+when+the+population
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+around+one+hundred+million+people++the+bubonic+plague+in+europe+in+the+middle+ages+killed+one+out+of
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=four+europeans++aids+is+coming+back
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ebola+seems+to+be+rearing+its+head+with+much+too+much+frequency
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+old+diseases+like+cholera+are+becoming+resistant+to+antibiotics++we+ve+all
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=learned+what+the+kind+of+panic+that+can+occur+when+an+old+disease+rears+its+head+like+anthrax
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+very+simple+germ+like+staph+for+which+we+have+one+antibiotic+that+still+works+mutates+and+we+know+staph+can+do
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+staph+cell+can+be+next+to+a+muscle+cell+in+your+body+and+borrow+genes+from+it+when+antibiotics+come+and+change+and+mutate
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+danger+is+that+some+germ+like+staph+will+be+will+mutate+into+something+that+s+really+virulent+very+contagious++and+will+sweep
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=populations+before+we+can+do+anything+about+it+that+s+happened+before++about+twelve+thousand+years+ago++there+was+a+massive
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=massive+wave+of+mammal+extinctions+in+the+americas++and+that+is+thought+to+have+been+a+virulent+disease++so+what+can+we+do+about
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+it+is+nuts+we+give+antibiotics
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=every+cow+every+lamb+every+chicken+they+get+antibiotics+every+day+all+you+know+you+go+to+a+restaurant+you+eat+fish+i+got+news+for+you+it+s+all+farmed+you+know
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+gotta+ask+when+you+go+to+a+restaurant+if+it+s+a+wild+fish+cause+they+re+not+going+to+tell
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+re+giving+away+the+code+this+is+like+being+at+war+and+giving+somebody+your+secret+code++we+re+telling
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+gotta+fix+that+we+gotta+outlaw+that+right+away++secondly+our+public+health+system+as+we+saw+with+anthrax++is+a+real+disaster+we+have+a+real+major
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=outbreak+of+disease+in+the+united+states++we+are+not+prepared+to+cope+with+it+now++there+is+money
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+federal+budget+next+year+to+build+up+the+public+health+service+but+i+don+t+think+to+any+extent+that+it+really+needs+to+be+done++number+two+my+favorite
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+meet+a+rogue+black+hole++you+know++ten+years+ago+or+fifteen+years+ago+really+you+walk+into+an+astronomy+convention
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+say+you+know+there+s+probably+a+black+hole+at+the+center+of+every+galaxy+and+they+re+going+to+hoot+you+off+the+stage
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+now+if+you+went+into+one+of+those+conventions+and+you+said+well+i+don+t+think
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=our+comprehension+of+the+way+the+universe+works+is+really+has+just+gained
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+think+that+there+are+about+ten+million+dead+stars+in+the+milky+way+alone+our+galaxy
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+these+stars+have+compressed+down+to+maybe+something+like+twelve+fifteen+miles+wide++and+they+are+black+holes+and+they+are+gobbling+up+everything+around+them
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+is+why+we+can+t+see+them++most+of+them+should+be+in+orbit+around+something+but
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=galaxies+are+very+violent+places+and+things+can+be+spun+out+of+orbit++and+also+space+is+incredibly+vast+so+even+if+you
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=flung+a+million+of+these+things+out+of+orbit+the+chances+that+one+would+actually+hit+us+is+fairly+remote++but
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+only+it+only+has+to+get+close+about+a+billion+miles+away+one+of+these+things
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+a+billion+miles+away+here+s+what+happens+to+earth+s+orbit++it+becomes+elliptical+instead+of+circular
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+for+three+months+out+of+the+year+the+surface+temperatures+go+up+to+one+hundred+and+fifty+to+one+hundred+and+eighty+for+three+months+out+of+the+year+they+go+to+fifty+below+zero
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+won+t+work+too+well++what+can+we+do+about+this+and+this+is+my+scariest
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=gotta+think+about+being+a+colonizing+race++and+finally+number+one
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=biggest+danger+to+life+as+we+know+it+i+think+a+really+big+asteroid+heads+for+earth
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+important+thing+to+remember+here+this+is
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=exploded+over+siberia+and+flattened+forests+for+maybe+one+hundred+miles+it+had+the+effect+of+about+one+thousand+hiroshima+bombs
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=astronomers+estimate+that+little+asteroids+like+that+come+about+every+hundred+years+in
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=miles+away+from+earth++nothing+to+worry+about+right
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+passed+directly+through+earth+s+orbit++we+were+in+that+that+spot+six+hours+earlier
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+small+asteroid+say+a+half+mile+wide+would+touch+off+firestorms+followed+by+severe+global+cooling+from+the+debris+kicked+up+carl+sagan+s+nuclear+winter
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thing+an+asteroid+five+miles+wide
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=causes+major+extinctions+we+think+the+one+that+got+the+dinosaurs+was+about+five+miles+wide++where+are+they
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+something+called+the+kuiper+belt++which+some+people+think+pluto+s+not+a+planet++that+s+where+pluto+is+it+s+in+the+kuiper+belt
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+also+something+a+little+farther+out+called+the+oort+cloud++there+are+about+one+hundred+thousand
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=balls+of+ice+and+rock+comets+really+out+there
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+that+are+fifty+miles+in+diameter+or+more++and+they+regularly+take+a+little+spin+in+towards+the+sun+and
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+more+concern+i+think+is
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+asteroids+that+exist+between+mars+and+jupiter
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+folks+at+the+sloan+digital+sky+survey+told+us+last+fall+they+re+making+the+first+map+of+the+universe
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=three+dimensional+map+of+the+universe+that+there+are+probably+seven+hundred+thousand+asteroids+between+mars+and+jupiter
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+are+a+half+a+mile+big+or+bigger+so+you+say+yeah+well
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+are+really+the+chances+of+this+happening++andrew+can+you+put+that+chart+up
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+a+chart+that+dr+clark+chapman+at+the+southwest+research+institute+presented+to+congress+a+few+years+ago++you+ll+notice+that+the+chance+of+an
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=impact+killing+you+is+about+one+in+twenty+thousand++according+to+the+work+they+ve+done++now+look+at+the+one+right+below+that+passenger+aircraft
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=crash+one+in+twenty+thousand++we+spend+an+awful+lot+of+money
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=trying+to+be+sure+that+we+don+t+die+in+airplane+accidents++and+we+re+not+spending+hardly+anything
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+this++and+yet++this+is+completely+preventable+we+finally+have+just+in+the+last+year++the+technology+to+stop+this+cold+could+we+have+the+solutions
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=nasa+s+spending+three+million+dollars+a+year+three+million+bucks+that+is+like+pocket+change
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+search+for+asteroids+because+we+can+actually+figure+out+every+asteroid+that+s+out+there++and+if+it+might+hit+earth++and+when
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hit+earth++and+they+re+trying+to+do+that+but+it+s+going+to+take+them+ten+years++at+spending+three+million+dollars+a+year+and+even+then+they+claim+they+ll+only+have+about+eighty+percent+of+them+catalogued
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=comets+are+a+tougher+act+we+don+t+really+have+the+technology+to+predict
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=comet+trajectories+or+when+one+with+our+name+on+it+might+arrive++but+we+would+have+lots+of+time
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+we+see+it+coming+we+really+need+a+dedicated+observatory++you+ll+notice+that+a+lot+of+comets+are+named+after+people+you+never+heard+of+amateur
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=astronomers+that+s+because+nobody+s+looking+for+them+except+amateurs++we+need+a+dedicated+observatory+that+looks+for+comets
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+need+to+figure+out+how+to+blow+up+an+asteroid+or+alter+its+trajectory+now++a+year+ago+we+did+an+amazing+thing+we+sent+a+probe+out+to+this
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+pulled+one+of+those+sneaky+nasa+things+where+they+had+extra+batteries+and+extra+gas+aboard+and+everything+and+then+at+the+last+minute+they+landed+when+the+mission+was+over+they+actually+landed+on+the+thing
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+rocket+ship+on+an+asteroid+it+s+not+a+big+deal+now+the+trouble+with+just+sending+a+bomb+out
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+this+thing+is+that+you+don+t+have+anything+to+push+against+in+space+because+there+s+no+air++a+nuclear+explosion+is+just+as+hot++but
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+don+t+really+have+anything+big+enough
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+melt+a+22+mile+long+asteroid+or+vaporize+it+would+be+more+like+it++but+we+can+learn+to+land+on+these+asteroids+that+have+our+name+on+them
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+put+something+like+a+small+ion+propulsion
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=slowly+after+a+period+of+time+push+it+into+a+different+trajectory+which+if+we+ve+done+our+math+right
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=would+keep+it+from+hitting+earth++this+is+just+a+matter+of+finding++em+going+there+and+doing+something+about+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+know+your+head+is+spinning+from+all+this+stuff
found 0 videos: []
error: no video is found.
sleep 4 seconds to avoid blocking
------<2118>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/StevenPinker_2003.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=spoke+to+you+about+a+book+that+i+was+just+in+the+process+of+completing+that+has+come+out+in+the+interim++and+i+would+like+to+talk+to+you+today+about+some+of+the+controversies+that+that
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+book+is+called+the+blank+slate
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=based+on+the+popular+idea+that+the+human+mind+is+a+blank+slate++and+that+all+of+its+structure+comes+from+socialization+culture+parenting+experience
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+blank+slate+was+an+influential+idea+in+the++20th+century+here+are+a+few+quotes+indicating+that+man+has+no+nature+from+the+historian+jose+ortega+y+gasset
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+human+brain+is+capable+of+a+full+range+of+behaviors+and+predisposed+to+none+from+the+late+scientist+stephen+jay+gould
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+are+a+number+of+reasons+to+doubt+that+the+human+mind+is+a+blank+slate++and+some+of+them+just+come+from+common+sense+as+many+people+have
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=told+me+over+the+years+anyone+who+s+had+more+than+one+child+knows+that+kids+come+into+the+world+with+certain+temperaments+and+talents+it+doesn+t+all+come+from+the+outside
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=has+both+a+child+and+a+house+pet+has+surely+noticed+that+the+child+exposed+to+speech+will+acquire+a+human+language++whereas+the+house+pet+won+t+presumably+because+of+some+innate+different+between+them
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=anyone+who+s+ever+been+in+a+heterosexual+relationship+knows+that+the+minds+of+men+and+the+minds+of+women+are+not+indistinguishable++there+are+also
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=results+from+the+scientific+study+of+humans+that+indeed+we+re+not+born+blank+slates
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+them+from+anthropology+is+the+study+of+human+universals+if+you+ve+ever+taken+anthropology+you+know+that+it+s+a
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=pleasure+of+anthropologists+to+show+how+exotic+other
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=cultures+can+be+and+that+there+are+places+out+there+where+supposedly++everything+is+the+opposite+to+the+way+it+is+here++but+if+you
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+common+to+the+world+s+cultures+you+find+that+there+is+an+enormously+rich+set+of
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=behaviors+and+emotions+and+ways+of+construing+the+world+that+can+be+found+in+all+of+the+world+s+6+000+odd+cultures
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+anthropologist+donald+brown+has+tried+to+list+them+all+and+they+range+from+aesthetics
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=statuses+all+the+way+down+to+weaning++weapons++weather++attempts+to+control+the+color+white+and+a+worldview
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=also++genetics+and+neuroscience+are+increasingly+showing+that+the+brain+is+intricately
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=structured+this+is+a+recent+study+by+the+neurobiologist+paul+thompson+and+his+colleagues+in+which+they+using
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=mri+measured+the+distribution+of+gray+matter+that+is+the
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+outer+layer+of+the+cortex+in+a+large+sample+of+pairs+of+people+they+coded+correlations+in+the+thickness+of+gray+matter+in+different+parts+of+the+brain+using+a+false+color+scheme+in+which
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=no+difference+is+coded+as+purple++and+any+color+other+than+purple+indicates+a+statistically
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+what+happens+when+you+pair+people+up+at+random+by+definition
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=two+people+picked+at+random+can+t+have+correlations+in+the+distribution+of+gray+matter+in+the+cortex+this+is+what+happens+in
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+who+share+half+of+their+dna+fraternal+twins++and+as+you+can+see+large+amounts+of+the+brain+are+not+purple+showing+that+if+one+person+has
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=bit+of+cortex+in+that+region+so+does+his+fraternal+twin++and+here+s
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+happens+if+you+get+a+pair+of+people+who+share+all+their+dna+namely+clones+or+identical+twins
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+can+see+huge+areas+of+cortex+where+there+are+massive+correlations+in+the+distribution+of+gray+matter+now
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=differences+in+anatomy+like+the+shape+of+your+ear+lobes+but+they+have+consequences+in+thought+and+behavior
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+are+well+illustrated+in+this+famous+cartoon+by+charles+addams+separated+at+birth+the+mallifert+twins+meet+accidentally+as+you+can+see+there+are
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=two+inventors+with+identical+contraptions+in+their+lap+meeting+in+the+waiting+room+of+a+patent+attorney++now+the+cartoon+is+not
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=such+an+exaggeration+because+studies+of+identical+twins+who+were+separated+at+birth+and+then+tested+in+adulthood+show+that+they+have+astonishing
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+happens+in+every+pair+of+identical+twins+separated+at+birth+ever+studied+but+much+less+so+with+fraternal+twins+separated+at+birth+my+favorite+example+is+a+pair+of+twins+one+of+whom+was+brought+up
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+a+catholic+in+a+nazi+family+in+germany+the+other+brought+up+in+a+jewish+family+in+trinidad+when+they+walked+into+the+lab+in+minnesota+they+were+wearing
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=identical+navy+blue+shirts+with+epaulettes
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=both+of+them+liked+to+dip+buttered+toast+in+coffee+both+of+them+kept+rubber+bands+around+their+wrists
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=both+of+them+flushed+the+toilet+before+using+it+as+well+as+after++and+both+of+them+liked+to
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=surprise+people+by+sneezing+in+crowded+elevators+to+watch+them+jump++now
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+story+might+seem+to+good+to+be+true++but+when+you+administer
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=batteries+of+psychological+tests++you+get+the+same+results+namely+identical+twins+separated+at+birth+show+quite+astonishing+similarities++now++given
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=both+the+common+sense+and+scientific+data+calling+the+doctrine+of+the+blank+slate+into+question+why+should+it+have+been+such+an+appealing+notion+well+there+are+a+number+of+political+reasons+why+people+have+found+it+congenial+the+foremost+is+that+if+we+re+blank+slates+then+by
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=definition+we+are+equal+because+zero+equals+zero+equals+zero
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+if+something+is+written+on+the+slate+then+some+people+could+have+more+of+it+than+others++and+according+to+this+line+of+thinking+that+would+justify+discrimination+and+inequality
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=another+political+fear+of+human+nature+is+that
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+we+are+blank+slates++we+can+perfect+mankind+the+age+old+dream+of+the+perfectibility+of+our+species+through+social+engineering
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=whereas+if+we+re+born+with+certain+instincts++then+perhaps+some+of+them+might+condemn+us+to+selfishness+prejudice+and+violence
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+in+the+book+i+argue+that+these+are+in+fact+non+sequiturs
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+just+to+make+a+long+story+short+first+of+all+the+concept+of+fairness+is+not+the+same+as+the+concept+of+sameness+and+so+when+thomas+jefferson+wrote+in+the
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=declaration+of+independence+we+hold+these+truths+to+be
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=self+evident+that+all+men+are+created+equal
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=he+did+not+mean+we+hold+these+truths+to+be+self+evident+that+all+men+are+clones
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=rather+that+all+men+are+equal+in+terms+of+their+rights++and+that+every+person+ought+to+be+treated+as+an+individual++and+not+prejudged+by+the+statistics+of+particular+groups+that+they+may+belong+to
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=even+if+we+were+born+with+certain+ignoble+motives+they+don+t+automatically+lead+to+ignoble+behavior
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+is+because+the+human+mind+is+a+complex+system+with+many+parts+and+some+of+them+can+inhibit+others
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+example+there+s+excellent+reason+to+believe+that+virtually+all+humans+are+born+with+a+moral+sense
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+we+have+cognitive+abilities+that+allow+us+to+profit+from+the+lessons+of+history+so+even+if+people+did+have+impulses+towards
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=selfishness+or+greed+that+s+not+the+only+thing+in+the+skull++and+there+are+other+parts+of+the+mind+that+can+counteract+them+in+the+book+i
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=go+over+controversies+such+as+this+one++and+a+number+of+other+hot+buttons+hot+zones+chernobyls+third+rails+and+so+on
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=including+the+arts+cloning+crime+free+will+education
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=resource+depletion+social+engineering+technological+risk+and+war++and+needless+to+say++there+were+certain+risks+in+taking+on
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+subjects+when+i+wrote+a+first+draft+of+the+book+i+circulated+it+to+a+number+of+colleagues+for+comments++and
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=reactions+that+i+got+better+get+a+security+camera
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=don+t+expect+to+get+any+more+awards++job+offers+or+positions+in+scholarly+societies
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=tell+your+publisher+not+to+list+your+hometown+in+your+author+bio
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+was+indeed+reason+to+to+be+nervous+and+there+were+moments+in+which+i+did+feel+nervous+knowing+the+history+of
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+has+happened+to+people+who+ve+taken+controversial
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=stands+or+discovered+disquieting+findings+in+the+behavioral+sciences++there+are+many+cases+some+of+which+i+talk+about+in+the+book+of
error: request timeout
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=slandered++called+nazis+physically+assaulted++threatened+with+criminal+prosecution+for
error: request timeout
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+never+know+when+you+re+going+to+come+across+one+of+these+booby+traps+my+favorite+example+is+a+pair+of+psychologists+who+did+research+on++left+handers+and+published+some+data+showing+that++left+handers+are
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+average+more+susceptible+to+disease+more+prone+to+accidents+and+have+a+shorter+lifespan+it+s+not+clear+by+the+way+since+then+whether+that+is+an+accurate
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=generalization+but+the+data+at+the+time+seemed+to+support+that+well++pretty+soon+they+were+barraged+with
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=enraged+letters++death+threats++ban+on+the+topic+in+a+number+of+scientific+journals++coming+from+irate
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=were+literally+afraid+to+open+their+mail+because+of+the
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+venom+and+vituperation+that+they+had+inadvertently+inspired++well++the+night+is+young+but+the+book+has+been+out+for
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=nothing+terrible+has+happened++none+of+the+dire+professional+consequences+has+taken+place+i
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=exiled+from+the+city+of+cambridge+but+what+i+wanted+to+talk+about+are+two+of+these+hot+buttons+that+have
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=aroused+the+strongest+response+in+the+80+odd+reviews+that+the+blank+slate
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=has+received+i+ll+just+put+that+list+up+for
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+few+seconds+and+see+if+you+can+guess+which
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+various+reviews+and+radio+interviews+it+s+not+violence+and+war+it+s+not+race++it+s+not+gender+it+s+not+marxism+it+s+not+nazism
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+parenting+so+let+me+tell+you+what
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+you+decide+if+whether+they+the+claims+are+really+that+outrageous++let+me+start+with+the+arts
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+note+that+among+the+long+list+of+human+universals+that+i+presented+a+few+slides+ago
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+art+there+is+no+society+ever+discovered+in+the+remotest+corner+of+the+world+that+has+not+had+something+that+we
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=would+consider+the+arts++visual+arts+decoration+of+surfaces+and+bodies+appears+to+be+a+human+universal+the+telling+of+stories
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=stories++music++dance+poetry+found+in+all+cultures+and+many+of+the
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=give+us+pleasure+in+the+arts+can+be+found+in+all+human+societies+a+preference+for+symmetrical+forms+the+use+of+repetition
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+variation+even+things+as+specific+as+the+fact+that+in+poetry+all+over+the+world+you+have+lines+that+are+very+close+to+three+seconds+long+separated+by+pauses
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+the+other+hand+in+the+second+half+of+the+20th+century++the+arts+are+frequently+said+to+be+in+decline++and+i+have+a+collection+probably+ten+or+fifteen+headlines+from
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+the+arts+are+in+decline
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+our+time+i+ll+give+you+a+couple+of+representative+quotes+we+can+assert+with+some+confidence+that+our+own+period+is+one+of+decline+that+the+standards+of+culture+are+lower+than+they+were
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fifty+years+ago++and+that+the+evidences+of+this+decline+are+visible+in+every+department+of+human+activity+that+s+a+quote+from+t+s+eliot+a+little+more+than+fifty+years+ago++and+a+more+recent+one
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=theaters+are+surviving+primarily+by+commercializing+their+repertory+symphony+orchestras+are+diluting+their+programs+public+television+is+increasing+its+dependence+on+reruns+of+british+sitcoms
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=classical+radio+stations+are+dwindling+museums+are+resorting+to+blockbuster+shows++dance+is+dying+that+s+from+robert+brustein+the+famous+drama+critic+and+and+director+in+the
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+a+surprise+to+anyone+in+this+room++but+by+any+standard
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+have+never+been+flourishing+to+a+greater+extent++there+are
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+course++entirely+new+art+forms+and+new+media+many+of+which+you+ve+heard+over+these+few+days+by+any
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=economic+standard+the+demand+for+art+of+all+forms+is+skyrocketing+as+you+can+tell+from+the
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+opera+tickets+by+the+number+of+books+sold+by+the+number+of+books+published+the+number+of
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=musical+titles+released+the+number+of+new+albums+and+so+on+the+only+grain+of+truth+to+this
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=complaint+that+the+arts+are+in+decline+come+from+three
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=spheres+one+of+them+is+in
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+kinds+of+works+performed+by+major+symphony+orchestras+where+most+of+the+repertory
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+before+one+thousand+nine+hundred+and+thirty
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+the+works+shown+in+major+galleries+and+prestigious+museums
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+literary+criticism+and+analysis+probably+forty+or+fifty+years+ago++literary+critics+were+a+kind+of+cultural+hero++now+they+re+kind+of+a+national
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=humanities+and+arts+programs+in+the+universities+which+by+many+measures++indeed+are+in+decline
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=students+are+staying+away+in+droves++universities+are+disinvesting+in+the+arts+and+humanities
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=diagnosis+they+didn+t+ask+me+but+by+their+own+admission+they+need+all+the+help+that+they+can+get
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+would+like+to+suggest+that+it+s+not+a+coincidence+that+this+supposed+decline+in+the+elite+arts+and+criticism
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=occurred+in+the+same+point+in+history
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+which+there+was+a+widespread+denial+of+human+nature
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+famous+quotation+can+be+found+if+you+look+on+the+web+you+can+find+it+in+literally+scores+of
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=english+core+syllabuses+in+or+about+december+one+thousand+nine+hundred+and+ten+human+nature+changed+a
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=paraphrase+of+a+quote+by+virginia+woolf+and+there+s
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+debate+as+to+what+she+actually+meant+by+that+but+it+s+very+clear+looking
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+used+now+as+a+way+of+saying+that+all
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=forms+of+appreciation+of+art+that+were+in+place+for+centuries+or+millennia
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the++20th+century+were+discarded+the+beauty+and+pleasure+in+art+probably+a+human+universal
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=were+began+to+be+considered+saccharine+or+kitsch++or+commercial
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=barnett+newman+had+a+famous+quote+that+the+impulse+of+modern+art+is+the+desire+to+destroy+beauty+which+was+considered+bourgeois+or+tacky+and+here+s+just
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+example+i+mean+this+is+perhaps+a+representative+example+of
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+visual+depiction+of+the+female+form+in+the+15th+century++here+is+a+representative+example+of+the+depiction+of+the+female+form+in+the
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+see++there+something+has+changed+in+the+way+the+elite+arts+appeal+to+the+senses
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=indeed+in+movements+of+modernism+and+post+modernism
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+was+visual+art+without+beauty++literature+without+narrative+and+plot+poetry+without+meter+and+rhyme++architecture+and+planning+without+ornament+human+scale+green+space
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=music+without+melody+and+rhythm+and+criticism+without+clarity++attention+to+aesthetics+and+insight+into+the+human+condition
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=laughter+let+me+give+just+you+an+example+to+back+up+that+last+statement+but+here+there+one+of+the+most+famous+literary
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=english+scholars+of+our+time+is+the+berkeley+professor+judith+butler++and+here+is+an+example+of
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+her+analyses+the+move+from+a+structuralist+account+in+which+capital+is+understood+to+structure+social+relations+in
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=relatively+homologous+ways+to+a+view+of+hegemony+in+which+power+relations+are+subject+to+repetition+convergence+and+rearticulation+brought+the+question+of+temporality+into+the+thinking+of+structure++and+marked
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+shift+from+the+form+of+althusserian+theory+that+takes+structural+totalities+as+theoretical+objects+well
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=argument+in+the+blank+slate+was+that
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=elite+art+and+criticism+in+the+20th+century+although+not+the+arts+in+general+have+disdained+beauty+pleasure+clarity+insight+and+style
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+are+staying+away+from+elite+art+and+criticism
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+a+puzzle+i+wonder+why++well+this+turned+out+to+be+probably+the+most+controversial+claim+in+the+book+someone+asked+me+whether+i+stuck+it
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ire+from+discussions+of+gender+and+nazism+and+race+and+so+on++i+won+t
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=comment+on+that++but+it+certainly
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=inspired+an+energetic+reaction+from+many
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=university+professors++well+the+other+hot+button+is+parenting+and+the+starting+point+is+the+for+that+discussion
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+the+fact+that+we+have+all
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=been+subject+to+the+advice+of+the+parenting+industrial+complex+now+here+is
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+is+a+representative+quote+from+a+besieged+mother+i+m+overwhelmed+with+parenting+advice+i+m+supposed+to+do+lots+of+physical+activity+with+my+kids+so+i+can+instill+in+them+a+physical+fitness+habit+so+they+ll+grow+up+to+be
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+m+supposed+to+do+all+kinds+of+intellectual+play+so+they+ll+grow+up+smart++and+there+are+all+kinds+of+play+clay+for+finger+dexterity++word+games+for+reading+success++large+motor+play+small
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=motor+play+i+feel+like+i+could+devote+my+life+to+figuring+out+what+to+play+with+my+kids+i+think+anyone+who+s+recently+been+a+parent+can+sympathize+with+this+this+mother
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+don+t+control+for+heritability+they+measure+some+correlation+between+what+the+parents+do
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+the+children+turn+out+and+assume+a+causal+relation+that+the+parenting+shaped+the+child
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=parents+who+talk+a+lot+to+their+kids+have+kids+who+grow+up+to+be+articulate+parents+who+spank+their+kids+have+kids+who+grow+up+to+be+violent+and+so+on+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=very+few+of+them+control+for+the+possibility+that+parents+pass+on+genes+for
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=increase+the+chances+a+child+will+be+articulate+or+violent+and+so+on
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=until+the+studies+are+redone+with+adoptive+children+who+provide+an+environment+but+not+genes+to+their+kids+we+have+no+way+of+knowing+whether+these+conclusions+are+valid
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+genetically+controlled+studies+have+some+sobering+results
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=remember+the+mallifert+twins+separated+at+birth+then+they+meet+in+the+patent+office+remarkably+similar
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+would+have+happened+if+the+mallifert+twins+had+grown+up+together+you+might+think+well++then+they+d+be+even+more+similar+because+not+only+would+they+share+their+genes++but+they+would+also+share+their+environment+that+would+make+them+super+similar+right
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=wrong+identical+twins+or+any+siblings+who+are+separated+at+birth
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+no+less+similar+than+if+they+had+grown+up+together++everything+that+happens+to+you+in+a+given+home+over
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+of+those+years+appears+to+leave+no+permanent+stamp+on+your+personality+or+intellect
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+complementary+finding+from+a+completely+different+methodology+is+that+adopted+siblings+reared+together+the+mirror+image+of+identical+twins+reared+apart+they+share+their+parents+their+home+their+neighborhood
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=don+t+share+their+genes+end+up+not+similar+at+all+ok+two+different
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=bodies+of+research+with+a+similar
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+it+suggests+is+that+children+are+shaped+not+by+their+parents+over+the+long+run++but+in+part+only+in+part+by+their+genes+in+part+by+their+culture
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+culture+of+the+country+at+large+and+the+children+s+own+culture+namely+their+peer+group+as+we+heard+from+jill+sobule+earlier+today+that+s+what+kids+care+about
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=larger+than+most+people+are+prepared+to+acknowledge+by+chance+chance+events+in+the+wiring+of+the+brain+in+utero++chance+events+as+you+live+your+life
found 0 videos: []
error: no video is found.
sleep 5 seconds to avoid blocking
------<2119>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/StevenPinker_2005G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+honorary+perpetual+secretary+of+l+academie+francaise+the+french+academy+he+is+splendidly+attired+in+his
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=usage+in+french+and+perpetuating+the+language
found 1 videos: [['/talks/steven_pinker_what_our_language_habits_reveal', '2007']]
selected: /talks/steven_pinker_what_our_language_habits_reveal
sleep 1 seconds to avoid blocking
------<2120>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/StevenPinker_2007.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=images+like+this+from+the+auschwitz+concentration+camp+have+been+seared+into+our+consciousness+during+the+twentieth+century
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+have+given+us+a+new+understanding+of
found 3 videos: [['/talks/david_deutsch_a_new_way_to_explain_explanation', '2009'], ['/talks/joann_kuchera_morin_stunning_data_visualization_in_the_allosphere', '2009'], ['/talks/steven_pinker_the_surprising_decline_in_violence', '2007']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+we+are+where+we+ve+come+from+and+the+times+we+live+in
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+witnessed+the+atrocities+of+stalin+hitler+mao++pol+pot+rwanda+and+other+genocides
found 1 videos: [['/talks/steven_pinker_the_surprising_decline_in_violence', '2007']]
selected: /talks/steven_pinker_the_surprising_decline_in_violence
sleep 1 seconds to avoid blocking
------<2121>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/StevenPinker_2012.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=reason+appears+to+have+fallen+on+hard+times
found 1 videos: [['/talks/steven_pinker_and_rebecca_newberger_goldstein_the_long_reach_of_reason', '2014']]
selected: /talks/steven_pinker_and_rebecca_newberger_goldstein_the_long_reach_of_reason
sleep 3 seconds to avoid blocking
------<2122>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/StevenSchwaitzberg_2012X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=want+to+talk+to+you+about+two+things+tonight+number+one+teaching+surgery
found 1 videos: [['/talks/steven_schwaitzberg_a_universal_translator_for_surgeons', '2013']]
selected: /talks/steven_schwaitzberg_a_universal_translator_for_surgeons
sleep 3 seconds to avoid blocking
------<2123>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/StevenStrogatz_2004.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+is+sync+connected+to+happiness+and+it+occurred+to+me+that
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+some+reason+we+take+pleasure+in+synchronizing
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+like+to+dance+together+we+like+singing+together++and+so+if+you+ll+put+up+with+this+i+would+like+to
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=help+with+a+first+experiment+today+the+experiment+is
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+notice+by+the+way+that+when+you+applauded+that+you+did+it+in+a+typical+north+american+way+that+is+you+were+raucous+and+incoherent
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+were+not+organized++it+didn+t+even+occur+to+you+to+clap+in+unison
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=do+you+think+you+could+do+it+i+would+like+to
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=see+if+this+audience+would+no++you+haven+t+practiced+as+far+as+i+know
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=can+you+get+it+together+to+clap+in+sync+whoa
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+that+s+what+we+call+emergent+behavior
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+didn+t+expect+that+but+i+mean+i+expected+you+could+synchronize+it+didn+t+occur+to+me+you+you+d+increase+your+frequency++it+s+interesting
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+what+do+we+make+of+that+first+of+all+we+know+that+you+re+all+brilliant
found 3 videos: [['/talks/aubrey_de_grey_a_roadmap_to_end_aging', '2006'], ['/talks/sasa_vucinic_why_we_should_invest_in_a_free_press', '2006'], ['/talks/majora_carter_greening_the_ghetto', '2006']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+a+room+full+of+intelligent+people+highly+sensitive+some+trained+musicians+out+there
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+that+what+enabled+you+to+synchronize+so+to+put+the+question+a+little+more+seriously
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+s+ask+ourselves+what+are+the+minimum+requirements+for+what+you+just+did+for+spontaneous
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=do+you+need+for+instance+to+be+as+smart+as+you+are
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=do+you+even+need+a+brain+at+all
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=just+to+synchronize++do+you+need+to+be+alive
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+mean+that+s+a+spooky+thought+right+inanimate+objects+that+might+spontaneously+synchronize+themselves++it+s+real+in+fact
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ll+try+to+explain+today+that+that+sync+is+maybe+one+of+if+not+one+of+the+most+perhaps+the+most+pervasive+drive+in+all+of+nature++it+extends+from+the+subatomic+scale
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+the+farthest+reaches+of+the+cosmos++it+s+a+deep+tendency+toward+order+in+nature+that+that
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=opposes+what+we+ve+all+been+taught+about+entropy+i+mean+i+m+not+saying+the+law+of+entropy+is+wrong+it+s+not+but+there+is+a+countervailing+force+in+the+universe+the+tendency+towards+spontaneous+order
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+our+theme+now+to+get+into+that
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+me+begin+with+what+might+have+occurred+to+you+immediately+when+you+hear+that+that+we+re+talking+about+synchrony+in+nature++which+is+the
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+fish+swimming+in+organized+schools+so
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+are+not+particularly+intelligent+creatures+and+yet+as+we+ll+see+they+exhibit+beautiful+ballets+this+is
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=avoid+predators+to+confuse+predators+let+me+be
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=re+so+used+to+choreography+giving+rise+to+synchrony
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+creatures+are+not+choreographed+they+re+choreographing+themselves+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=only+today+is+science+starting+to+figure+out+how+it+works
found 1 videos: [['/talks/eva_vertes_meet_the_future_of_cancer_research', '2006']]
selected: /talks/eva_vertes_meet_the_future_of_cancer_research
sleep 1 seconds to avoid blocking
------<2124>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/StevenStrogatz_2004R.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+trying+to+think+how+is+sync+connected+to+happiness+and+it+occurred+to+me+that
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+some+reason+we+take+pleasure+in+synchronizing+we+we+like+to+dance+together
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+like+singing+together+and+so+if+you+ll+put+up+with+this+i+would+like+to
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=enlist+your+your+help+with+a+a+first+experiment+today+the+experiment+is
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+notice+by+the+way+that+when+you+applauded+that+you+did+it+in+a+typical+north+american+way+that+is+you+were+raucous+and+incoherent
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+didn+t+even+occur+to+you+to+clap+in+unison
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=do+you+think+you+could+do+it+i+would+like+to+see+if+this+audience+would+no+you+haven+t+practiced+as+far+as+i+know
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=can+you+get+it+together+to+clap+in+sync
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=whoa+now+that+s+what+we+call+emergent+behavior
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+but+i+mean+i+mean+i+expected+you+could+synchronize+it+didn+t+occur+to+me+you+you+d+increase+your+frequency+it+s+interesting
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+what+do+we+make+of+that+first+of+all+we+know+that+you+re+all+brilliant
found 3 videos: [['/talks/aubrey_de_grey_a_roadmap_to_end_aging', '2006'], ['/talks/sasa_vucinic_why_we_should_invest_in_a_free_press', '2006'], ['/talks/majora_carter_greening_the_ghetto', '2006']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+a+room+full+of+intelligent+people+highly+sensitive+some+trained+musicians
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+that+what+enabled+you+to+synchronize+so+so+to+put+the+question+a+little+more+seriously
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+s+ask+ourselves+what+are+the+minimum+requirements+for+what+you+just+did+for+spontaneous+synchronization
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=do+you+need+for+instance+to+be+as+smart+as+you+are
found 2 videos: [['/talks/dan_dennett_let_s_teach_religion_all_religion_in_schools', '2006'], ['/talks/rick_warren_a_life_of_purpose', '2006']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=do+you+even+need+a+brain+at+all
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+mean+that+s+a+spooky+thought+right+inanimate+objects+that+might+spontaneously+synchronize+themselves
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ll+try+to+explain+today+that+that+sync+is+maybe+one+of+if+not+one+of+the+most+perhaps+the+most+pervasive+drive+in+all+of+nature+it+extends+from+the+subatomic+scale
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+the+farthest+reaches+of+the+cosmos
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+a+deep+tendency+toward+order+in
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=nature+that+that+opposes+what+we+ve+all+been+taught+about+entropy+i+mean+i+m+not+saying+the+law+of+entropy+is+wrong+it+s+not+but+there+is+a+countervailing+force+in+the+universe+the+tendency+towards+spontaneous+order
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+our+theme+now+to+get+into+that
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+me+begin+with+what+might+have+occurred+to+you+immediately+when+you+hear+that+we+re+talking+about+synchrony+in+nature+which+is+the+the+glorious+example+of
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=birds+that+flock+together+or+or+fish+swimming+in+organized+schools+so
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+are+not+particularly+intelligent+creatures+and+yet+as+we+ll+see+they+they+exhibit+beautiful+ballets
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+from+a+bbc+show+called+predators
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+swarm+to+avoid+predators+to+confuse+predators+let+me
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+behavior+wondering+how+it+could+be+possible
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+re+so+used+to+choreography+giving+rise+to+synchrony
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+creatures+are+not+choreographed+they+re+choreographing+themselves
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+only+today+is+science+starting+to+figure+out+how+it+works
found 1 videos: [['/talks/eva_vertes_meet_the_future_of_cancer_research', '2006']]
selected: /talks/eva_vertes_meet_the_future_of_cancer_research
sleep 4 seconds to avoid blocking
------<2125>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/StevenWise_2015.stm
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+to+have+you+look+at+this+pencil
found 13 videos: [['/talks/steven_wise_chimps_have_feelings_and_thoughts_they_should_also_have_rights', '2015'], ['/talks/carol_dweck_the_power_of_believing_that_you_can_improve', '2014'], ['/talks/stella_young_i_m_not_your_inspiration_thank_you_very_much', '2014'], ['/talks/jay_silver_hack_a_banana_make_a_keyboard', '2013'], ['/talks/mallory_freeman_your_company_s_data_could_help_end_world_hunger', '2016'], ['/talks/joi_ito_want_to_innovate_become_a_now_ist', '2014'], ['/talks/rebecca_brachman_could_a_drug_prevent_depression_and_ptsd', '2016'], ['/talks/young_ha_kim_be_an_artist_right_now', '2013'], ['/talks/guy_hoffman_robots_with_soul', '2014'], ['/talks/gayle_tzemach_lemmon_meet_the_women_fighting_on_the_front_lines_of_an_american_war', '2015'], ['/talks/angelica_dass_the_beauty_of_human_skin_in_every_color', '2016'], ['/talks/parul_sehgal_an_ode_to_envy', '2013'], ['/talks/hannah_fry_the_mathematics_of_love', '2015']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+a+thing+it+s+a+legal+thing++and+so+are+books+you+might+have+or+the+cars+you+own
found 1 videos: [['/talks/jonathan_haidt_can_a_divided_america_heal', '2016']]
selected: /talks/jonathan_haidt_can_a_divided_america_heal
sleep 1 seconds to avoid blocking
------<2126>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SteveRamirez_2013X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=first+year+of+grad+school+i+found+myself+in+my+bedroom+eating+lots+of+ben+jerry+s+watching+some+trashy+tv+and+maybe+maybe+listening+to+taylor+swift
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+had+just+gone+through+a+breakup+laughter+so+for+the+longest+time+all+i+would+do+is+recall+the+memory+of+this
found 1 videos: [['/talks/steve_ramirez_and_xu_liu_a_mouse_a_laser_beam_a_manipulated_memory', '2013']]
selected: /talks/steve_ramirez_and_xu_liu_a_mouse_a_laser_beam_a_manipulated_memory
sleep 4 seconds to avoid blocking
------<2127>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SteveSilberman_2015.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=just+after+christmas+last+year+one
found 14 videos: [['/talks/roman_mars_why_city_flags_may_be_the_worst_designed_thing_you_ve_never_noticed', '2015'], ['/talks/raj_panjabi_no_one_should_die_because_they_live_too_far_from_a_doctor', '2017'], ['/talks/arthur_brooks_a_conservative_s_plea_let_s_work_together', '2016'], ['/talks/jon_ronson_when_online_shaming_goes_too_far', '2015'], ['/talks/mac_barnett_why_a_good_book_is_a_secret_door', '2014'], ['/talks/lawrence_lessig_we_the_people_and_the_republic_we_must_reclaim', '2013'], ['/talks/leslie_morgan_steiner_why_domestic_violence_victims_don_t_leave', '2013'], ['/talks/robert_sapolsky_the_biology_of_our_best_and_worst_selves', '2017'], ['/talks/alessandra_orofino_it_s_our_city_let_s_fix_it', '2014'], ['/talks/adam_spencer_why_i_fell_in_love_with_monster_prime_numbers', '2013'], ['/talks/james_lyne_everyday_cybercrime_and_what_you_can_do_about_it', '2013'], ['/talks/jon_mooallem_how_the_teddy_bear_taught_us_compassion', '2014'], ['/talks/maryn_mckenna_what_do_we_do_when_antibiotics_don_t_work_any_more', '2015'], ['/talks/steve_silberman_the_forgotten_history_of_autism', '2015']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hundred+and+thirty+two+kids+in+california+got+the+measles+by+either+visiting+disneyland+or+being+exposed+to+someone+who+d+been+there
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+virus+then+hopped+the+canadian+border++infecting+more+than+one+hundred+children+in+quebec
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+the+tragic+things+about+this+outbreak
found 1 videos: [['/talks/steve_silberman_the_forgotten_history_of_autism', '2015']]
selected: /talks/steve_silberman_the_forgotten_history_of_autism
sleep 2 seconds to avoid blocking
------<2128>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SteveTruglia_2009G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+extremely+excited+to+be+given+the+opportunity+to+come+and+speak+to+you+today
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+what+i+consider+to+be
found 1 videos: [['/talks/stacey_kramer_the_best_gift_i_ever_survived', '2010']]
selected: /talks/stacey_kramer_the_best_gift_i_ever_survived
sleep 3 seconds to avoid blocking
------<2129>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/StewartBrand_2004.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=welcome+to+ten+thousand+feet+let+me+explain+why+we+are+here+and+why+some+of+you+have+a+pine+cone+close+to+you
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=once+upon+a+time+i+did+a+book+called+how+buildings+learn+today+s+event+you+might+call+how
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+ten+years+i+ve+been+trying+to+figure+out+how+to+hack+civilization+so+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+can+get+long+term+thinking+to+be+automatic+and+common+instead+of+difficult+and+rare
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+in+some+cases+non+existent+it+would+be+helpful+if+humanity+got+into+the+habit
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+thinking+of+the+now+not+just+as+next+week+or+next+quarter+but+you
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+last+ten+thousand+years+basically+civilization+s+story+so+far
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+we+have+the+long+now+foundation+in+san+francisco+it+s+an+incubator+for+about+a+dozen+projects+all+having+to+do+with+continuity+over+the+long+term
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+suppose+a+mythic+undertaking+to+build
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=keep+good+time+for+for+that+long+a+period
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+a+project+like+that+are+just+absolutely+delicious+go+to+the+clock
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+what+we+have+here+is+something+many+of+you+saw+here+three+years+ago+it+s+the+first+working+prototype+of+the+clock+it+s+about+nine+feet+high+designed+by+danny+hillis+and+alexander+rose
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+presently+in+london+and+is+ticking+away+very+deliberately+at+the+science+museum+there++so+the+design+problem+for+today
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+going+to+be+how+do+you+house
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=an+eventual+monumental+clock+like+this+so+it+can+really+tick+save+time+beautifully+for+one+hundred+centuries+well+this+was+the+first+solution
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=alexander+rose+came+up+with+this+idea+of+a+spiraloid+tower+with+continuous+sloping+ramps++and+it+looked+like+a+way+to
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=go+until+you+start+thinking+about+what+does+deep+time
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=do+to+a+building+well+this+is+what+deep+time+does+to+a+building+this+is+the+parthenon
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+only+two+thousand+four
found 1 videos: [['/talks/ben_saunders_why_did_i_ski_to_the_north_pole', '2006']]
selected: /talks/ben_saunders_why_did_i_ski_to_the_north_pole
sleep 5 seconds to avoid blocking
------<2130>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/StewartBrand_2006.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+major+demographic+event+going+on+and+it+may+be+that+passing+the+fifty+percent+urban+point+is+an+economic+tipping+point
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+the+world+now+is+a+map+of
found 3 videos: [['/talks/craig_venter_sampling_the_ocean_s_dna', '2007'], ['/talks/steven_johnson_how_the_ghost_map_helped_end_a_killer_disease', '2007'], ['/talks/robert_ballard_the_astonishing_hidden_world_of_the_deep_ocean', '2008']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=used+to+be+that+paris+and+london+and+new+york+were+the+largest+cities
found 1 videos: [['/talks/stewart_brand_what_squatter_cities_can_teach_us', '2007']]
selected: /talks/stewart_brand_what_squatter_cities_can_teach_us
sleep 5 seconds to avoid blocking
------<2131>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/StewartBrand_2009S.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+really+should+establish+my+green+credentials
found 1 videos: [['/talks/stewart_brand_4_environmental_heresies', '2009']]
selected: /talks/stewart_brand_4_environmental_heresies
sleep 2 seconds to avoid blocking
------<2132>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/StewartBrand_2013.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+a+different+kind+of+death+it+s+bigger
found 1 videos: [['/talks/ben_goldacre_battling_bad_science', '2011']]
selected: /talks/ben_goldacre_battling_bad_science
sleep 5 seconds to avoid blocking
------<2133>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/Sting_2014.stm
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+shadow+of+a+shipyard+in+a+little+town+on+the+northeast+coast+of+england+some+of+my+earliest+memories
found 1 videos: [['/talks/sting_how_i_started_writing_songs_again', '2014']]
selected: /talks/sting_how_i_started_writing_songs_again
sleep 1 seconds to avoid blocking
------<2134>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/StuartBrown_2008P.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+we+go+a+flyby+of+play
found 1 videos: [['/talks/stuart_brown_play_is_more_than_just_fun', '2009']]
selected: /talks/stuart_brown_play_is_more_than_just_fun
sleep 4 seconds to avoid blocking
------<2135>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/StuartFirestein_2013.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=an+ancient+proverb+that+says+it+s+very+difficult+to+find+a+black+cat+in+a+dark+room
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=especially+when+there+is+no+cat+i+find+this+a+particularly+apt
found 1 videos: [['/talks/stuart_firestein_the_pursuit_of_ignorance', '2013']]
selected: /talks/stuart_firestein_the_pursuit_of_ignorance
sleep 4 seconds to avoid blocking
------<2136>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/StuartRussell_2017.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+the+world+s+greatest+go+players+and+he+s+having+what+my+friends+in+silicon+valley+call+a+holy+cow+moment
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+moment+where+we+realize+that+ai+is+actually+progressing+a+lot+faster+than+we+expected
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+humans+have+lost+on+the+go+board+what+about+the+real+world+well++the+real+world+is+much+bigger+much+more+complicated+than+the+go+board+it
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+a+lot+less+visible++but+it+s+still+a+decision+problem
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+if+we+think+about+some+of+the+technologies+that+are+coming+down+the+pike
found 3 videos: [['/talks/stuart_russell_3_principles_for_creating_safer_ai', '2017'], ['/talks/david_sedlak_4_ways_we_can_avoid_a_catastrophic_drought', '2016'], ['/talks/zeynep_tufekci_online_social_change_easy_to_organize_hard_to_win', '2015']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=noriko+[+arai+]+mentioned+that+reading+is+not+yet+happening+in+machines+at+least+with+understanding++but+that+will+happen
found 1 videos: [['/talks/stuart_russell_3_principles_for_creating_safer_ai', '2017']]
selected: /talks/stuart_russell_3_principles_for_creating_safer_ai
sleep 2 seconds to avoid blocking
------<2137>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SueAustin_2012X.stm
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+talk+about+my+journey+to+talk+about+the+wheelchair+and+the+freedom+it+has+bought+me
found 1 videos: [['/talks/sue_austin_deep_sea_diving_in_a_wheelchair', '2013']]
selected: /talks/sue_austin_deep_sea_diving_in_a_wheelchair
sleep 2 seconds to avoid blocking
------<2138>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SueDesmondHellmann_2016.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+introductions+my+mom+jennie+took+this+picture+that+s+my+dad+frank+in+the+middle+and+on+his
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=john+patrick+s+sitting+on+his+lap+and+kevin+michael+s+on+his+right
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+in+the+pale+blue+windbreaker++susan+diane+me
found 1 videos: [['/talks/sue_desmond_hellmann_a_smarter_more_precise_way_to_think_about_public_health', '2016']]
selected: /talks/sue_desmond_hellmann_a_smarter_more_precise_way_to_think_about_public_health
sleep 3 seconds to avoid blocking
------<2139>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SueKlebold_2016P.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+last+time+i+heard+my+son+s+voice+was+when+he+walked+out+the+front+door+on+his+way+to+school+he+called+out+one+word+in+the+darkness
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=columbine+high+school++my+son+dylan+and+his+friend+eric+killed+twelve+students+and+a+teacher
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+wounded+more+than+twenty+others+before+taking+their+own+lives
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thirteen+innocent+people+were+killed++leaving+their+loved+ones+in+a+state+of+grief+and+trauma
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=others+sustained+injuries+some+resulting+in
error: request timeout
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+the+enormity+of+the+tragedy+can+t+be+measured+only+by+the+number+of+deaths+and+injuries+that+took+place
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+no+way+to+quantify+the+psychological+damage+of+those+who+were+in+the+school+or+who+took+part+in+rescue+or+cleanup+efforts
error: request timeout
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=assess+the+magnitude+of+a+tragedy+like+columbine+especially+when+it+can+be+a+blueprint+for+other+shooters+who+go+on+to+commit+atrocities+of+their+own
found 1 videos: [['/talks/sue_klebold_my_son_was_a_columbine_shooter_this_is_my_story', '2017']]
selected: /talks/sue_klebold_my_son_was_a_columbine_shooter_this_is_my_story
sleep 4 seconds to avoid blocking
------<2140>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SugataMitra_2007P.stm
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=job+to+do+you+know+when+i+looked+at+the
found 1 videos: [['/talks/mary_roach_10_things_you_didn_t_know_about_orgasm', '2009']]
selected: /talks/mary_roach_10_things_you_didn_t_know_about_orgasm
sleep 4 seconds to avoid blocking
------<2141>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SugataMitra_2010G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=kind+of+an+obvious+statement+up+there+i+started+with+that+sentence+about+twelve+years+ago
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+started+in+the+context+of+developing+countries++but+you+re+sitting+here
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=every+corner+of+the+world+so+if+you+think+of+a+map+of+your+country++i+think+you+ll+realize
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+for+every+country+on+earth++you+could+draw+little+circles+to+say+these+are+places+where+good+teachers+won+t+go
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+top+of+that++those+are+the+places+from+where+trouble+comes++so+we+have+an+ironic+problem
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=good+teachers+don+t+want+to+go+to+just+those+places+where+they+re
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+try+and+address+this+problem+with+an+experiment++which+was+a+very+simple+experiment+in+new+delhi++i
found 2 videos: [['/talks/sugata_mitra_the_child_driven_education', '2010'], ['/talks/sugata_mitra_kids_can_teach_themselves', '2008']]
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=into+a+wall+of+a+slum
found 11 videos: [['/talks/sugata_mitra_kids_can_teach_themselves', '2008'], ['/talks/sugata_mitra_the_child_driven_education', '2010'], ['/talks/beeban_kidron_the_shared_wonder_of_film', '2012'], ['/talks/stewart_brand_4_environmental_heresies', '2009'], ['/talks/jacqueline_novogratz_inspiring_a_life_of_immersion', '2011'], ['/talks/jr_my_wish_use_art_to_turn_the_world_inside_out', '2011'], ['/talks/lemon_andersen_please_don_t_take_my_air_jordans', '2012'], ['/talks/anil_gupta_india_s_hidden_hotbeds_of_invention', '2010'], ['/talks/jacqueline_novogratz_an_escape_from_poverty', '2009'], ['/talks/brian_greene_making_sense_of_string_theory', '2008'], ['/talks/john_maeda_my_journey_in_design', '2009']]
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+children+barely+went+to+school+they+didn+t+know+any+english+they+d+never+seen+a+computer+before++and+they+didn+t+know+what+the+internet+was
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+connected+high+speed+internet+to+it+it+s+about+three
found 2 videos: [['/talks/regina_dugan_from_mach_20_glider_to_hummingbird_drone', '2012'], ['/talks/nicholas_negroponte_one_laptop_per_child_two_years_on', '2008']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=feet+off+the+ground+turned+it+on+and+left+it+there+after+this+we+noticed+a+couple+of+interesting+things+which+you+ll+see++but+i+repeated+this
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+over+india+and+then+through+a+large+part+of+the+world
found 9 videos: [['/talks/hans_rosling_asia_s_rise_how_and_when', '2009'], ['/talks/romulus_whitaker_the_real_danger_lurking_in_the_water', '2010'], ['/talks/vinay_venkatraman_technology_crafts_for_the_digitally_underserved', '2012'], ['/talks/sugata_mitra_kids_can_teach_themselves', '2008'], ['/talks/peter_diamandis_abundance_is_our_future', '2012'], ['/talks/geoff_mulgan_post_crash_investing_in_a_better_world', '2009'], ['/talks/sheryl_wudunn_our_century_s_greatest_injustice', '2010'], ['/talks/anil_gupta_india_s_hidden_hotbeds_of_invention', '2010'], ['/talks/john_delaney_wiring_an_interactive_ocean', '2010']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+noticed+that+children+will+learn+to+do+what+they+want+to+learn+to+do+this+is+the+first+experiment+that+we+did+eight
found 3 videos: [['/talks/sugata_mitra_the_child_driven_education', '2010'], ['/talks/sugata_mitra_kids_can_teach_themselves', '2008'], ['/talks/philip_zimbardo_the_psychology_of_evil', '2008']]
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=teaching+his+student+a+six++year+old+girl++and+he+was+teaching+her+how+to+browse
found 2 videos: [['/talks/sugata_mitra_the_child_driven_education', '2010'], ['/talks/sugata_mitra_kids_can_teach_themselves', '2008']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+boy+here+in+the+middle+of+central+india
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+in+a+rajasthan+village++where+the+children+recorded+their+own+music
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+played+it+back+to+each+other+and+in+the+process+they+ve+enjoyed+themselves+thoroughly++they+did+all+of+this
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+four+hours+after+seeing+the+computer+for+the+first+time++in+another+south+indian+village+these
found 2 videos: [['/talks/sugata_mitra_the_child_driven_education', '2010'], ['/talks/neil_pasricha_the_3_a_s_of_awesome', '2011']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=boys+here+had+assembled+a+video+camera+and+were+trying+to+take+the+photograph+of+a+bumble+bee++they+downloaded+it+from+disney+com+or+one+of+these+websites++fourteen+days+after+putting+the+computer+in+their
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+at+the+end+of+it+we+concluded
found 6 videos: [['/talks/billy_graham_on_technology_and_faith', '2008'], ['/talks/molly_crockett_beware_neuro_bunk', '2012'], ['/talks/sugata_mitra_the_child_driven_education', '2010'], ['/talks/bill_gross_a_solar_energy_system_that_tracks_the_sun', '2009'], ['/talks/moshe_safdie_building_uniqueness', '2008'], ['/talks/bart_weetjens_how_i_taught_rats_to_sniff_out_land_mines', '2010']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+groups+of+children+can+learn+to+use+computers+and+the+internet+on+their+own++irrespective+of+who+or+where
found 2 videos: [['/talks/sugata_mitra_kids_can_teach_themselves', '2008'], ['/talks/sugata_mitra_the_child_driven_education', '2010']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+were+at+that+point+i+became+a+little+more+ambitious
found 13 videos: [['/talks/annie_lennox_why_i_am_an_hiv_aids_activist', '2010'], ['/talks/jonathan_trent_energy_from_floating_algae_pods', '2012'], ['/talks/sugata_mitra_the_child_driven_education', '2010'], ['/talks/michael_tilson_thomas_music_and_emotion_through_time', '2012'], ['/talks/david_griffin_how_photography_connects_us', '2008'], ['/talks/damon_horowitz_we_need_a_moral_operating_system', '2011'], ['/talks/chris_anderson_how_web_video_powers_global_innovation', '2010'], ['/talks/norman_foster_my_green_agenda_for_architecture', '2008'], ['/talks/neil_turok_my_wish_find_the_next_einstein_in_africa', '2008'], ['/talks/pawan_sinha_how_brains_learn_to_see', '2010'], ['/talks/shereen_el_feki_hiv_how_to_fight_an_epidemic_of_bad_laws', '2012'], ['/talks/alain_de_botton_a_kinder_gentler_philosophy_of_success', '2009'], ['/talks/joshua_prince_ramus_building_a_theater_that_remakes_itself', '2010']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+decided+to+see+what+else+could+children+do+with+a+computer+we+started+off+with+an
found 10 videos: [['/talks/sugata_mitra_the_child_driven_education', '2010'], ['/talks/nicholas_negroponte_one_laptop_per_child_two_years_on', '2008'], ['/talks/abraham_verghese_a_doctor_s_touch', '2011'], ['/talks/brenda_laurel_why_not_make_video_games_for_girls', '2009'], ['/talks/daniel_wolpert_the_real_reason_for_brains', '2011'], ['/talks/stefana_broadbent_how_the_internet_enables_intimacy', '2009'], ['/talks/rodney_brooks_robots_will_invade_our_lives', '2008'], ['/talks/paola_antonelli_design_and_the_elastic_mind', '2008'], ['/talks/alison_gopnik_what_do_babies_think', '2011'], ['/talks/melinda_gates_let_s_put_birth_control_back_on_the_agenda', '2012']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+gave+a+group+of+children+they+spoke+english+with+a+very+strong+telugu+accent+i+gave+them+a+computer+with
found 1 videos: [['/talks/sugata_mitra_the_child_driven_education', '2010']]
selected: /talks/sugata_mitra_the_child_driven_education
sleep 3 seconds to avoid blocking
------<2142>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SugataMitra_2013.stm
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+do+have+a+plan+but+in+order+for+me+to+tell+you+what+that+plan+is
found 13 videos: [['/talks/stephen_cave_the_4_stories_we_tell_ourselves_about_death', '2013'], ['/talks/danny_hillis_the_internet_could_crash_we_need_a_plan_b', '2013'], ['/talks/naomi_klein_addicted_to_risk', '2011'], ['/talks/jenni_chang_and_lisa_dazols_this_is_what_lgbt_life_is_like_around_the_world', '2015'], ['/talks/anote_tong_my_country_will_be_underwater_soon_unless_we_work_together', '2015'], ['/talks/tyler_dewitt_hey_science_teachers_make_it_fun', '2013'], ['/talks/jake_barton_the_museum_of_you', '2013'], ['/talks/hetain_patel_who_am_i_think_again', '2013'], ['/talks/roger_ebert_remaking_my_voice', '2011'], ['/talks/boghuma_kabisen_titanji_ethical_riddles_in_hiv_research', '2013'], ['/talks/greg_asner_ecology_from_the_air', '2013'], ['/talks/david_birch_a_new_way_to_stop_identity_theft', '2012'], ['/talks/lorrie_faith_cranor_what_s_wrong_with_your_pa_w0rd', '2014']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+need+to+tell+you+a+little+story+which+kind+of+sets+the+stage
found 10 videos: [['/talks/rob_legato_the_art_of_creating_awe', '2012'], ['/talks/sugata_mitra_build_a_school_in_the_cloud', '2013'], ['/talks/young_ha_kim_be_an_artist_right_now', '2013'], ['/talks/julie_taymor_spider_man_the_lion_king_and_life_on_the_creative_edge', '2013'], ['/talks/john_hockenberry_we_are_all_designers', '2012'], ['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013'], ['/talks/taiye_selasi_don_t_ask_where_i_m_from_ask_where_i_m_a_local', '2015'], ['/talks/rebecca_mackinnon_let_s_take_back_the_internet', '2011'], ['/talks/edward_snowden_here_s_how_we_take_back_the_internet', '2014'], ['/talks/nancy_duarte_the_secret_structure_of_great_talks', '2012']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=tried+to+look+at+where+did
found 13 videos: [['/talks/alison_killing_there_s_a_better_way_to_die_and_architecture_can_help', '2015'], ['/talks/rishi_manchanda_what_makes_us_get_sick_look_upstream', '2014'], ['/talks/gary_slutkin_let_s_treat_violence_like_a_contagious_disease', '2013'], ['/talks/kailash_satyarthi_how_to_make_peace_get_angry', '2015'], ['/talks/christopher_mcdougall_are_we_born_to_run', '2011'], ['/talks/alejandro_aravena_my_architectural_philosophy_bring_the_community_into_the_process', '2014'], ['/talks/sugata_mitra_build_a_school_in_the_cloud', '2013'], ['/talks/lorrie_faith_cranor_what_s_wrong_with_your_pa_w0rd', '2014'], ['/talks/michael_archer_how_we_ll_resurrect_the_gastric_brooding_frog_the_tasmanian_tiger', '2013'], ['/talks/maajid_nawaz_a_global_culture_to_fight_extremism', '2011'], ['/talks/ismael_nazario_what_i_learned_as_a_kid_in_jail', '2015'], ['/talks/diana_nyad_extreme_swimming_with_the_world_s_most_dangerous_jellyfish', '2012'], ['/talks/alan_eustace_i_leapt_from_the_stratosphere_here_s_how_i_did_it', '2015']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+kind+of+learning+we+do+in+schools+where+did+it+come+from
found 9 videos: [['/talks/sugata_mitra_build_a_school_in_the_cloud', '2013'], ['/talks/andreas_schleicher_use_data_to_build_better_schools', '2013'], ['/talks/bill_gates_how_state_budgets_are_breaking_us_schools', '2011'], ['/talks/james_lyne_everyday_cybercrime_and_what_you_can_do_about_it', '2013'], ['/talks/stephen_ritz_a_teacher_growing_green_in_the_south_bronx', '2012'], ['/talks/kent_larson_brilliant_designs_to_fit_more_people_in_every_city', '2012'], ['/talks/jim_simons_the_mathematician_who_cracked_wall_street', '2015'], ['/talks/nicholas_negroponte_a_30_year_history_of_the_future', '2014'], ['/talks/lauren_hodge_shree_bose_naomi_shah_award_winning_teenage_science_in_action', '2012']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+can+look+far+back+into+the+past+but+if+you+look+at+present+day+schooling+the+way+it+is+it+s+quite+easy+to+figure+out
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=where+it+came+from+it+came+from+about
found 13 videos: [['/talks/elyn_saks_a_tale_of_mental_illness_from_the_inside', '2012'], ['/talks/claire_bowern_where_did_english_come_from', '2015'], ['/talks/brenda_romero_gaming_for_understanding', '2012'], ['/talks/eddy_cartaya_my_glacier_cave_discoveries', '2013'], ['/talks/ellen_jorgensen_biohacking_you_can_do_it_too', '2013'], ['/talks/dave_meslin_the_antidote_to_apathy', '2011'], ['/talks/jonathan_trent_energy_from_floating_algae_pods', '2012'], ['/talks/adam_savage_how_simple_ideas_lead_to_scientific_discoveries', '2012'], ['/talks/ian_ritchie_the_day_i_turned_down_tim_berners_lee', '2011'], ['/talks/bunker_roy_learning_from_a_barefoot_movement', '2011'], ['/talks/quyen_nguyen_color_coded_surgery', '2011'], ['/talks/thomas_goetz_it_s_time_to_redesign_medical_data', '2011'], ['/talks/parul_sehgal_an_ode_to_envy', '2013']]
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+came+from+the+last+and+the+biggest+of+the+empires+on+this+planet+[+the+british+empire+]+imagine+trying+to+run+the+show+trying+to+run+the+entire+planet
found 1 videos: [['/talks/sugata_mitra_build_a_school_in_the_cloud', '2013']]
selected: /talks/sugata_mitra_build_a_school_in_the_cloud
sleep 2 seconds to avoid blocking
------<2143>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SuheirHammad_2010W.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+will+not+dance+to+your+war+drum
found 7 videos: [['/talks/suheir_hammad_poems_of_war_peace_women_power', '2011'], ['/talks/raspyni_brothers_juggle_and_jest', '2008'], ['/talks/john_bohannon_dance_vs_powerpoint_a_modest_proposal', '2011'], ['/talks/barry_schwartz_using_our_practical_wisdom', '2010'], ['/talks/romulus_whitaker_the_real_danger_lurking_in_the_water', '2010'], ['/talks/michael_pollan_a_plant_s_eye_view', '2008'], ['/talks/frank_gehry_my_days_as_a_young_rebel', '2008']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+will+not+lend+my+soul+nor+my+bones+to+your+war+drum++i+will+not+dance+to+that+beating++i+know+that+beat
found 1 videos: [['/talks/suheir_hammad_poems_of_war_peace_women_power', '2011']]
selected: /talks/suheir_hammad_poems_of_war_peace_women_power
sleep 1 seconds to avoid blocking
------<2144>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SukiKim_2015.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=during+the+final+six+months+of+kim+jong+il+s+life++i+lived+undercover+in+north+korea
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+born+and+raised+in+south+korea+their+enemy++i+live+in+america
error: request timeout
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=since+two+thousand+and+two+i+had+visited+north+korea+a+few+times
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+had+come+to+realize+that+to+write+about+it+with+any+meaning
found 15 videos: [['/talks/debra_jarvis_yes_i_survived_cancer_but_that_doesn_t_define_me', '2014'], ['/talks/peter_doolittle_how_your_working_memory_makes_sense_of_the_world', '2013'], ['/talks/javed_akhtar_the_gift_of_words', '2017'], ['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013'], ['/talks/shah_rukh_khan_thoughts_on_humanity_fame_and_love', '2017'], ['/talks/sebastian_thrun_and_chris_anderson_what_ai_is_and_isn_t', '2017'], ['/talks/suki_kim_this_is_what_it_s_like_to_go_undercover_in_north_korea', '2015'], ['/talks/ismael_nazario_what_i_learned_as_a_kid_in_jail', '2015'], ['/talks/david_whyte_a_lyrical_bridge_between_past_present_and_future', '2017'], ['/talks/norman_lear_an_entertainment_icon_on_living_a_life_of_meaning', '2016'], ['/talks/jean_paul_mari_the_chilling_aftershock_of_a_brush_with_death', '2015'], ['/talks/jude_kelly_why_women_should_tell_the_stories_of_humanity', '2017'], ['/talks/ajit_narayanan_a_word_game_to_communicate_in_any_language', '2014'], ['/talks/emilie_wapnick_why_some_of_us_don_t_have_one_true_calling', '2015'], ['/talks/emily_esfahani_smith_there_s_more_to_life_than_being_happy', '2017']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+to+understand+the+place+beyond+the+regime+s+propaganda
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+posed+as+a+teacher+and+a+missionary+at+an+all+male+university+in+pyongyang
found 1 videos: [['/talks/suki_kim_this_is_what_it_s_like_to_go_undercover_in_north_korea', '2015']]
selected: /talks/suki_kim_this_is_what_it_s_like_to_go_undercover_in_north_korea
sleep 4 seconds to avoid blocking
------<2145>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SunithaKrishnan_2009I.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=worst+form+of+human+rights+violation
found 3 videos: [['/talks/sunitha_krishnan_the_fight_against_sex_slavery', '2009'], ['/talks/auret_van_heerden_making_global_labor_fair', '2010'], ['/talks/dan_pink_the_puzzle_of_motivation', '2009']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+to+tell+you+the+story
found 5 videos: [['/talks/samantha_power_a_complicated_hero_in_the_war_on_dictatorship', '2008'], ['/talks/richard_seymour_how_beauty_feels', '2011'], ['/talks/roger_ebert_remaking_my_voice', '2011'], ['/talks/ryan_lobo_photographing_the_hidden_story', '2009'], ['/talks/george_dyson_the_story_of_project_orion', '2008']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+these+three+children++pranitha++shaheen+and+anjali+pranitha+s+mother
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+a+woman+in+prostitution++a+prostituted+person+she+got+infected+with+hiv++and+towards+the+end+of+her+life
found 1 videos: [['/talks/sunitha_krishnan_the_fight_against_sex_slavery', '2009']]
selected: /talks/sunitha_krishnan_the_fight_against_sex_slavery
sleep 3 seconds to avoid blocking
------<2146>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SunniBrown_2011.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+just+want+to+tell+you+my+story++i+spend+a+lot+of+time+teaching+adults+how+to+use+visual+language+and+doodling+in+the+workplace+and+naturally+i+encounter+a+lot+of+resistance+because+it+s+considered+to+be
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+have+a+problem+with+that+belief+because+i+know+that+doodling+has+a+profound+impact+on+the+way+that+we+can+process+information+and+the+way+that+we+can+solve+problems
found 1 videos: [['/talks/sunni_brown_doodlers_unite', '2011']]
selected: /talks/sunni_brown_doodlers_unite
sleep 3 seconds to avoid blocking
------<2147>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SusanBlackmore_2008.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=cultural+evolution+is+a+dangerous+child+for+any+species+to+let+loose+on+its+planet
found 1 videos: [['/talks/susan_blackmore_memes_and_temes', '2008']]
selected: /talks/susan_blackmore_memes_and_temes
sleep 1 seconds to avoid blocking
------<2148>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SusanCain_2012.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+went+off+to+summer+camp+for+the+first+time++and+my+mother+packed+me+a+suitcase+full+of+books
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+to+me+seemed+like+a+perfectly+natural+thing+to+do++because+in+my+family+reading+was+the+primary+group+activity
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+might+sound+antisocial+to+you
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+for+us+it+was+really+just+a+different+way+of+being+social
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+have+the+animal+warmth+of+your+family+sitting+right+next+to+you+but+you+are+also+free+to+go+roaming+around+the+adventureland+inside+your+own+mind
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+had+this+idea+that+camp+was+going+to+be+just+like+this+but+better
found 18 videos: [['/talks/george_takei_why_i_love_a_country_that_once_betrayed_me', '2014'], ['/talks/jared_diamond_how_societies_can_grow_old_better', '2013'], ['/talks/dan_berkenstock_the_world_is_one_big_dataset_now_how_to_photograph_it', '2014'], ['/talks/susan_cain_the_power_of_introverts', '2012'], ['/talks/mac_barnett_why_a_good_book_is_a_secret_door', '2014'], ['/talks/tim_harford_trial_error_and_the_god_complex', '2011'], ['/talks/david_blaine_how_i_held_my_breath_for_17_minutes', '2010'], ['/talks/andrew_solomon_depression_the_secret_we_share', '2013'], ['/talks/jay_silver_hack_a_banana_make_a_keyboard', '2013'], ['/talks/alexa_meade_your_body_is_my_canvas', '2013'], ['/talks/giles_duley_when_a_reporter_becomes_the_story', '2012'], ['/talks/naomi_klein_addicted_to_risk', '2011'], ['/talks/paul_bloom_can_prejudice_ever_be_a_good_thing', '2014'], ['/talks/edward_snowden_here_s_how_we_take_back_the_internet', '2014'], ['/talks/adam_davidson_what_we_learned_from_teetering_on_the_fiscal_cliff', '2012'], ['/talks/ken_kamler_medical_miracle_on_everest', '2010'], ['/talks/esther_duflo_social_experiments_to_fight_poverty', '2010'], ['/talks/shukla_bose_teaching_one_child_at_a_time', '2010']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+had+a+vision+of+ten+girls+sitting+in+a+cabin+cozily+reading+books+in+their+matching+nightgowns
found 1 videos: [['/talks/susan_cain_the_power_of_introverts', '2012']]
selected: /talks/susan_cain_the_power_of_introverts
sleep 4 seconds to avoid blocking
------<2149>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SusanColantuono_2013X.stm
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+middle+management+and+professional+positions+but+the+percentages+of+women+at+the+top+of+organizations+represent+not+even+a+third+of
found 1 videos: [['/talks/susan_colantuono_the_career_advice_you_probably_didn_t_get', '2014']]
selected: /talks/susan_colantuono_the_career_advice_you_probably_didn_t_get
sleep 4 seconds to avoid blocking
------<2150>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SusanEtlinger_2014S.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=technology+has+brought+us+so+much+the+moon+landing++the+internet++the+ability+to+sequence+the+human+genome
found 1 videos: [['/talks/susan_etlinger_what_do_we_do_with_all_this_big_data', '2014']]
selected: /talks/susan_etlinger_what_do_we_do_with_all_this_big_data
sleep 4 seconds to avoid blocking
------<2151>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SusanLim_2010P.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+was+privileged+to+train+in+transplantation
found 1 videos: [['/talks/susan_lim_transplant_cells_not_organs', '2011']]
selected: /talks/susan_lim_transplant_cells_not_organs
sleep 2 seconds to avoid blocking
------<2152>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SusanSavageRumbaugh_2004.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+work+with+a+species+called+bonobo+and+i+m+happy+most+of+the+time+because+i+think+this+is+the+happiest+species+on+the+planet
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+kind+of+a++well+kept+secret+this+species+lives+only+in+the+congo
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+re+not+in+too+many+zoos++because+of+their+sexual+behavior
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=their+sexual+behavior+is+too+human+like+for+most+of+us+to+be+comfortable+with+but
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=actually++we+have+a+lot+to+learn+from+them+because+they+re
found 1 videos: [['/talks/bono_my_wish_three_actions_for_africa', '2006']]
selected: /talks/bono_my_wish_three_actions_for_africa
sleep 4 seconds to avoid blocking
------<2153>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SusanShaw_2010X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+am+a+marine+toxicologist+and+i+ve+been+very+very+concerned+about+the+gulf+particularly+about+the
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=massive+applications+of+the+toxic+dispersants+the+corexits+i+ve+been+working+on+ocean+pollution+for+quite+a+long+time
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+impacts+on+marine+life+and
found 9 videos: [['/talks/peter_tyack_the_intriguing_sound_of_marine_mammals', '2010'], ['/talks/paul_snelgrove_a_census_of_the_ocean', '2012'], ['/talks/enric_sala_glimpses_of_a_pristine_ocean', '2010'], ['/talks/sylvia_earle_my_wish_protect_our_oceans', '2009'], ['/talks/susan_shaw_the_oil_spill_s_toxic_trade_off', '2010'], ['/talks/jonathan_trent_energy_from_floating_algae_pods', '2012'], ['/talks/barton_seaver_sustainable_seafood_let_s_get_smart', '2010'], ['/talks/kim_gorgens_protecting_the_brain_against_concussion', '2010'], ['/talks/joel_levine_why_we_need_to_go_back_to_mars', '2010']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=particularly+the+impacts+on+marine+mammals+as+it+turns+out+marine+mammals+are+at+the+top+of+this+food+chain
found 1 videos: [['/talks/susan_shaw_the_oil_spill_s_toxic_trade_off', '2010']]
selected: /talks/susan_shaw_the_oil_spill_s_toxic_trade_off
sleep 3 seconds to avoid blocking
------<2154>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SusanSolomon_2012G.stm
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=incredible+cells++they+are+our+body+s+own+repair+kits
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+re+pluripotent+which+means+they+can+morph+into+all+of+the+cells+in+our+bodies++soon++we+actually+will+be+able+to+use
found 1 videos: [['/talks/susan_solomon_the_promise_of_research_with_stem_cells', '2012']]
selected: /talks/susan_solomon_the_promise_of_research_with_stem_cells
sleep 4 seconds to avoid blocking
------<2155>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SuzanaHerculanoHouzel_2013G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+is+so+special+about+the+human+brain++why+is+it+that+we+study+other+animals+instead+of+them+studying+us
found 2 videos: [['/talks/suzana_herculano_houzel_what_is_so_special_about_the_human_brain', '2013'], ['/talks/marlene_zuk_what_we_learn_from_insects_sex_lives', '2015']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+does+a+human+brain+have+or+do+that+no+other+brain+does
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+became+interested+in+these+questions+about+ten+years+ago++scientists+thought+they+knew+what+different+brains+were+made+of+though+it+was+based+on+very
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=little+evidence+many+scientists+thought+that+all+mammalian+brains+including+the+human+brain++were+made+in+the+same+way+with+a+number+of+neurons+that+was+always+proportional+to+the+size+of+the+brain
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+means+that+two+brains+of+the+same+size+like+these+two+with+a+respectable+four+hundred+grams+should+have+similar+numbers+of+neurons
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now++if+neurons+are+the+functional+information+processing+units+of+the+brain+then+the+owners+of+these+two+brains+should+have+similar
found 1 videos: [['/talks/suzana_herculano_houzel_what_is_so_special_about_the_human_brain', '2013']]
selected: /talks/suzana_herculano_houzel_what_is_so_special_about_the_human_brain
sleep 5 seconds to avoid blocking
------<2156>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SuzanneBarakat_2016W.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=three+of+my+family+members+were+gruesomely+murdered+in+a+hate+crime
found 1 videos: [['/talks/suzanne_barakat_islamophobia_killed_my_brother_let_s_end_the_hate', '2016']]
selected: /talks/suzanne_barakat_islamophobia_killed_my_brother_let_s_end_the_hate
sleep 4 seconds to avoid blocking
------<2157>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SuzanneLee_2011U.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+as+a+fashion+designer+i+ve+always+tended+to+think+of+materials+something+like+this+or+this
error: request timeout
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+then+i+met+a+biologist++and+now+i+think+of+materials+like+this
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=green+tea+sugar+a+few+microbes+and+a+little+time
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+essentially+using+a+kombucha+recipe
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+is+a+symbiotic+mix+of+bacteria++yeasts+and+other+micro+organisms+which+spin+cellulose
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+a+fermentation+process+over+time++these+tiny+threads+form+in+the+liquid+into+layers+and+produce+a+mat+on+the+surface
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+we+start+by+brewing+the+tea+i+brew+up+to+about+thirty+liters+of+tea+at+a+time++and+then+while+it+s+still+hot+add+a+couple+of+kilos+of+sugar
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+stir+this+in+until+it+s+completely+dissolved+and+then+pour+it+into+a+growth+bath
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+need+to+check+that+the+temperature+has+cooled+to+below+thirty+degrees+c+and+then+we+re+ready+to+add+the
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+along+with+that+some+acetic+acid++and+once+you+get+this+process+going+you+can+actually+recycle+your+previous+fermented+liquid
found 1 videos: [['/talks/suzanne_lee_grow_your_own_clothes', '2011']]
selected: /talks/suzanne_lee_grow_your_own_clothes
sleep 3 seconds to avoid blocking
------<2158>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SuzanneSimard_2016T.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+re+walking+through+a+forest
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+guessing+you+re+thinking+of+a+collection+of+trees+what+we+foresters+call+a+stand+with+their+rugged+stems+and+their+beautiful+crowns
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=trees+are+the+foundation+of+forests++but+a+forest+is+much+more+than+what+you+see++and+today+i+want+to+change+the+way+you+think+about+forests
found 3 videos: [['/talks/suzanne_simard_how_trees_talk_to_each_other', '2016'], ['/talks/mark_plotkin_what_the_people_of_the_amazon_know_that_you_don_t', '2014'], ['/talks/kate_raworth_a_healthy_economy_should_be_designed_to_thrive_not_grow', '2018']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+see++underground+there+is+this+other+world
found 14 videos: [['/talks/suzanne_simard_how_trees_talk_to_each_other', '2016'], ['/talks/jill_heinerth_the_mysterious_world_of_underwater_caves', '2016'], ['/talks/vincent_cochetel_i_was_held_hostage_for_317_days_here_s_what_i_thought_about', '2015'], ['/talks/dan_barasch_a_park_underneath_the_hustle_and_bustle_of_new_york_city', '2014'], ['/talks/benjamin_grant_what_it_feels_like_to_see_earth_from_space', '2017'], ['/talks/kenneth_lacovara_hunting_for_dinosaurs_showed_me_our_place_in_the_universe', '2016'], ['/talks/antonio_donato_nobre_the_magic_of_the_amazon_a_river_that_flows_invisibly_all_around_us', '2014'], ['/talks/wanis_kabbaj_what_a_driverless_world_could_look_like', '2016'], ['/talks/chetan_bhatt_dare_to_refuse_the_origin_myths_that_claim_who_you_are', '2017'], ['/talks/caitlin_doughty_a_burial_practice_that_nourishes_the_planet', '2017'], ['/talks/mia_nacamulli_why_should_you_read_kurt_vonnegut', '2018'], ['/talks/catherine_bracy_why_good_hackers_make_good_citizens', '2014'], ['/talks/josh_luber_why_sneakers_are_a_great_investment', '2015'], ['/talks/stephen_petranek_your_kids_might_live_on_mars_here_s_how_they_ll_survive', '2016']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+world+of+infinite+biological+pathways+that+connect+trees+and+allow+them+to+communicate
found 1 videos: [['/talks/suzanne_simard_how_trees_talk_to_each_other', '2016']]
selected: /talks/suzanne_simard_how_trees_talk_to_each_other
sleep 3 seconds to avoid blocking
------<2159>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SvantePaabo_2011G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+talk+to+you+about+is+what+we+can+learn+from+studying+the+genomes+of+living+people+and+extinct+humans
found 1 videos: [['/talks/svante_paabo_dna_clues_to_our_inner_neanderthal', '2011']]
selected: /talks/svante_paabo_dna_clues_to_our_inner_neanderthal
sleep 4 seconds to avoid blocking
------<2160>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/SylviaEarle_2009.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fifty+years+ago++when+i+began+exploring+the+ocean++no+one
found 1 videos: [['/talks/sylvia_earle_my_wish_protect_our_oceans', '2009']]
selected: /talks/sylvia_earle_my_wish_protect_our_oceans
sleep 3 seconds to avoid blocking
------<2161>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TabethaBoyajian_2016.stm
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+is+my+job+my+responsibility+as+an+astronomer+to+remind+people
found 1 videos: [['/talks/tabetha_boyajian_the_most_mysterious_star_in_the_universe', '2016']]
selected: /talks/tabetha_boyajian_the_most_mysterious_star_in_the_universe
sleep 3 seconds to avoid blocking
------<2162>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TaiyeSelasi_2014G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+went+on+my+first+book+tour
found 7 videos: [['/talks/chip_kidd_the_art_of_first_impressions_in_design_and_life', '2015'], ['/talks/mac_barnett_why_a_good_book_is_a_secret_door', '2014'], ['/talks/taiye_selasi_don_t_ask_where_i_m_from_ask_where_i_m_a_local', '2015'], ['/talks/a_j_jacobs_how_healthy_living_nearly_killed_me', '2012'], ['/talks/shimon_schocken_the_self_organizing_computer_course', '2012'], ['/talks/hubertus_knabe_the_dark_secrets_of_a_surveillance_state', '2014'], ['/talks/seema_bansal_how_to_fix_a_broken_education_system_without_any_more_money', '2016']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+thirteen+months+i+flew+to+fourteen+countries+and+gave+some+hundred+talks+every+talk+in+every+country
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=comes+from+england+and+the+states+whenever+i+heard+this+opening+sentence+no+matter+the+country+that+concluded+it
found 1 videos: [['/talks/taiye_selasi_don_t_ask_where_i_m_from_ask_where_i_m_a_local', '2015']]
selected: /talks/taiye_selasi_don_t_ask_where_i_m_from_ask_where_i_m_a_local
sleep 3 seconds to avoid blocking
------<2163>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TakaharuTezuka_2014X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+made+this+kindergarten+to+be+a+circle++it+s+a+kind+of+endless+circulation+on+top+of+the+roof
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+are+a+parent++you+know+that+kids
found 11 videos: [['/talks/nadine_burke_harris_how_childhood_trauma_affects_health_across_a_lifetime', '2015'], ['/talks/veerle_provoost_do_kids_think_of_sperm_donors_as_family', '2016'], ['/talks/nicholas_negroponte_a_30_year_history_of_the_future', '2014'], ['/talks/takaharu_tezuka_the_best_kindergarten_you_ve_ever_seen', '2015'], ['/talks/courtney_e_martin_the_new_american_dream', '2016'], ['/talks/geoffrey_canada_our_failing_schools_enough_is_enough', '2013'], ['/talks/andrew_solomon_love_no_matter_what', '2013'], ['/talks/stephen_ritz_a_teacher_growing_green_in_the_south_bronx', '2012'], ['/talks/j_d_vance_america_s_forgotten_working_class', '2016'], ['/talks/dave_isay_everyone_around_you_has_a_story_the_world_needs_to_hear', '2015'], ['/talks/toby_eccles_invest_in_social_change', '2013']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=love+to+keep+making+circles++this+is+how+the+rooftop+looks+and+why+did+we+design+this+the
found 1 videos: [['/talks/takaharu_tezuka_the_best_kindergarten_you_ve_ever_seen', '2015']]
selected: /talks/takaharu_tezuka_the_best_kindergarten_you_ve_ever_seen
sleep 4 seconds to avoid blocking
------<2164>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TalDanino_2015U.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+may+not+realize+this+but+there+are+more+bacteria+in+your+body
found 8 videos: [['/talks/tal_danino_programming_bacteria_to_detect_cancer_and_maybe_treat_it', '2015'], ['/talks/rebecca_brachman_could_a_drug_prevent_depression_and_ptsd', '2016'], ['/talks/anne_madden_meet_the_microscopic_life_in_your_home_and_on_your_face', '2017'], ['/talks/neri_oxman_design_at_the_intersection_of_technology_and_biology', '2015'], ['/talks/giulia_enders_the_surprisingly_charming_science_of_your_gut', '2017'], ['/talks/louie_schwartzberg_hidden_miracles_of_the_natural_world', '2014'], ['/talks/ameenah_gurib_fakim_humble_plants_that_hide_surprising_secrets', '2014'], ['/talks/michael_bodekaer_this_virtual_lab_will_revolutionize_science_class', '2016']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=than+stars+in+our+entire+galaxy
found 11 videos: [['/talks/henry_lin_what_we_can_learn_from_galaxies_far_far_away', '2014'], ['/talks/natasha_hurley_walker_how_radio_telescopes_show_us_unseen_galaxies', '2017'], ['/talks/wendy_freedman_this_telescope_might_show_us_the_beginning_of_the_universe', '2015'], ['/talks/tal_danino_programming_bacteria_to_detect_cancer_and_maybe_treat_it', '2015'], ['/talks/dave_brain_what_a_planet_needs_to_sustain_life', '2016'], ['/talks/katie_bouman_how_to_take_a_picture_of_a_black_hole', '2017'], ['/talks/roey_tzezana_could_human_civilization_spread_across_the_whole_galaxy', '2016'], ['/talks/ioannis_papachimonas_how_computers_translate_human_language', '2015'], ['/talks/josh_samani_what_can_schrodinger_s_cat_teach_us_about_quantum_mechanics', '2014'], ['/talks/stephen_petranek_your_kids_might_live_on_mars_here_s_how_they_ll_survive', '2016'], ['/talks/joel_selanikio_the_big_data_revolution_in_health_care', '2013']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+fascinating+universe+of+bacteria+inside+of+us+is+an+integral+part+of+our+health
found 1 videos: [['/talks/tal_danino_programming_bacteria_to_detect_cancer_and_maybe_treat_it', '2015']]
selected: /talks/tal_danino_programming_bacteria_to_detect_cancer_and_maybe_treat_it
sleep 5 seconds to avoid blocking
------<2165>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TalGolesworthy_2011X.stm
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=boilers+and+incinerators+and+fabric+filters+and+cyclones+and+things+like+that+but+i+also+have+marfan+syndrome+this+is+an+inherited+disorder
found 1 videos: [['/talks/tal_golesworthy_how_i_repaired_my_own_heart', '2012']]
selected: /talks/tal_golesworthy_how_i_repaired_my_own_heart
sleep 1 seconds to avoid blocking
------<2166>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TaliSharot_2012.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=m+going+to+talk+to+you+about+optimism
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+more+precisely+the+optimism+bias++it+s+a+cognitive+illusion+that+we+ve+been+studying+in+my+lab+for+the+past+few+years++and+eighty+percent+of+us+have+it+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+our+tendency+to+overestimate+our+likelihood+of+experiencing+good+events+in+our
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+underestimate+our+likelihood+of+experiencing+bad+events
found 1 videos: [['/talks/tali_sharot_the_optimism_bias', '2012']]
selected: /talks/tali_sharot_the_optimism_bias
sleep 1 seconds to avoid blocking
------<2167>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TalithiaWilliams_2014X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+a+kid+i+always+loved
found 17 videos: [['/talks/kevin_breel_confessions_of_a_depressed_comic', '2013'], ['/talks/johann_hari_everything_you_think_you_know_about_addiction_is_wrong', '2015'], ['/talks/andrew_solomon_love_no_matter_what', '2013'], ['/talks/joseph_kim_the_family_i_lost_in_north_korea_and_the_family_i_gained', '2013'], ['/talks/mckenna_pope_want_to_be_an_activist_start_with_your_toys', '2014'], ['/talks/mac_barnett_why_a_good_book_is_a_secret_door', '2014'], ['/talks/mac_stone_stunning_photos_of_the_endangered_everglades', '2015'], ['/talks/chip_kidd_designing_books_is_no_laughing_matter_ok_it_is', '2012'], ['/talks/jay_silver_hack_a_banana_make_a_keyboard', '2013'], ['/talks/jia_jiang_what_i_learned_from_100_days_of_rejection', '2016'], ['/talks/catherine_bracy_why_good_hackers_make_good_citizens', '2014'], ['/talks/shane_koyczan_to_this_day_for_the_bullied_and_beautiful', '2013'], ['/talks/rick_guidotti_from_stigma_to_supermodel', '2012'], ['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013'], ['/talks/harry_baker_a_love_poem_for_lonely_prime_numbers', '2015'], ['/talks/chip_kidd_the_art_of_first_impressions_in_design_and_life', '2015'], ['/talks/maryn_mckenna_what_do_we_do_when_antibiotics_don_t_work_any_more', '2015']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=information+that+i+could+get+from+data+and+the+stories+that+could+be+told+with+numbers++i+remember++growing+up+i+d+be+frustrated+at+how+my+own+parents+would+lie+to
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+i+ve+told+you+once+i+ve+told+you+a+thousand+times+no+dad+you+ve+only+told+me+seventeen+times
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+twice+it+wasn+t+my+fault
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+that+is+one+of+the+reasons+i+got+a+ph+d+in+statistics+i+always+wanted+to+know+what+are+people+trying+to+hide+with+numbers
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+a+statistician++i+want+people+to+show+me+the+data
found 3 videos: [['/talks/talithia_williams_own_your_body_s_data', '2014'], ['/talks/nicolas_perony_puppies_now_that_i_ve_got_your_attention_complexity_theory', '2014'], ['/talks/margaret_heffernan_dare_to_disagree', '2012']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+can+decide+for+myself
found 12 videos: [['/talks/ruth_chang_how_to_make_hard_choices', '2014'], ['/talks/debra_jarvis_yes_i_survived_cancer_but_that_doesn_t_define_me', '2014'], ['/talks/amy_webb_how_i_hacked_online_dating', '2013'], ['/talks/anne_marie_slaughter_can_we_all_have_it_all', '2014'], ['/talks/jimmy_carter_why_i_believe_the_mistreatment_of_women_is_the_number_one_human_rights_abuse', '2015'], ['/talks/halla_tomasdottir_it_s_time_for_women_to_run_for_office', '2016'], ['/talks/lisa_nip_how_humans_could_evolve_to_survive_in_space', '2016'], ['/talks/jonathan_haidt_can_a_divided_america_heal', '2016'], ['/talks/fredy_peccerelli_a_forensic_anthropologist_who_brings_closure_for_the_disappeared', '2015'], ['/talks/ash_beckham_when_to_take_a_stand_and_when_to_let_it_go', '2015'], ['/talks/arunachalam_muruganantham_how_i_started_a_sanitary_napkin_revolution', '2012'], ['/talks/jessica_shortall_the_us_needs_paid_family_leave_for_the_sake_of_its_future', '2015']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=donald+and+i+were+pregnant+with+our+third+child+and+we+were+at+about+forty+one+and+a+half+weeks++what+some+of+you+may+refer+to+as+being+overdue
found 1 videos: [['/talks/talithia_williams_own_your_body_s_data', '2014']]
selected: /talks/talithia_williams_own_your_body_s_data
sleep 1 seconds to avoid blocking
------<2168>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TaniaLuna_2012S.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=five+years+old+and+i+am+very+proud+my+father+has+just+built+the+best+outhouse+in+our+little+village+in+ukraine
found 1 videos: [['/talks/tania_luna_how_a_penny_made_me_feel_like_a_millionaire', '2013']]
selected: /talks/tania_luna_how_a_penny_made_me_feel_like_a_millionaire
sleep 2 seconds to avoid blocking
------<2169>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TaniaSimoncelli_2014X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+an+afternoon+in+the+fall+of+two+thousand+and+five
found 2 videos: [['/talks/jonathan_haidt_how_common_threats_can_make_common_political_ground', '2013'], ['/talks/tania_simoncelli_should_you_be_able_to_patent_a_human_gene', '2016']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+working+at+the+aclu+as+the+organization+s+science+advisor+i
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=really+really+loved+my+job++but+i+was+having+one+of+those+days+where+i+was+feeling+just+a+little+bit+discouraged
found 1 videos: [['/talks/tania_simoncelli_should_you_be_able_to_patent_a_human_gene', '2016']]
selected: /talks/tania_simoncelli_should_you_be_able_to_patent_a_human_gene
sleep 2 seconds to avoid blocking
------<2170>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TanLe_2010G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=our+communication+with+machines+has+always+been+limited+to+conscious+and+direct+forms
found 1 videos: [['/talks/tan_le_a_headset_that_reads_your_brainwaves', '2010']]
selected: /talks/tan_le_a_headset_that_reads_your_brainwaves
sleep 2 seconds to avoid blocking
------<2171>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TanLe_2011X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+can+i+speak+in+ten+minutes+about+the+bonds+of+women+over+three+generations
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+how+the+astonishing+strength+of+those+bonds+took+hold+in+the+life+of+a++four+year+old+girl
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=huddled+with+her+young+sister+her+mother+and+her+grandmother
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+five+days+and+nights+in+a+small+boat+in+the+china+sea+more+than+thirty+years+ago
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=bonds+that+took+hold+in+the+life+of+that+small+girl+and+never+let+go
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+small+girl+now+living+in+san+francisco+and+speaking+to+you+today++this+is+not+a+finished+story+it+is+a
found 1 videos: [['/talks/tan_le_my_immigration_story', '2012']]
selected: /talks/tan_le_my_immigration_story
sleep 5 seconds to avoid blocking
------<2172>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TarynSimon_2009G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ninety+percent+of+my+photographic+process+is+in+fact+not+photographic+it+involves+a+campaign+of+letter+writing+research+and+phone+calls+to+access
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+subjects+which+can+range+from
found 14 videos: [['/talks/pamela_meyer_how_to_spot_a_liar', '2011'], ['/talks/sam_harris_science_can_answer_moral_questions', '2010'], ['/talks/vik_muniz_art_with_wire_sugar_chocolate_and_string', '2007'], ['/talks/rodney_brooks_robots_will_invade_our_lives', '2008'], ['/talks/mary_roach_10_things_you_didn_t_know_about_orgasm', '2009'], ['/talks/taryn_simon_photographs_of_secret_sites', '2009'], ['/talks/steven_pinker_human_nature_and_the_blank_slate', '2008'], ['/talks/robert_lang_the_math_and_magic_of_origami', '2008'], ['/talks/evan_grant_making_sound_visible_through_cymatics', '2009'], ['/talks/noah_feldman_politics_and_religion_are_technologies', '2008'], ['/talks/honor_harger_a_history_of_the_universe_in_sound', '2011'], ['/talks/alison_jackson_an_unusual_glimpse_at_celebrity', '2008'], ['/talks/jr_my_wish_use_art_to_turn_the_world_inside_out', '2011'], ['/talks/tom_shannon_anti_gravity_sculpture', '2009']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hamas+leaders+in+gaza+to+a+hibernating+black+bear+in+its+cave+in+west+virginia++and+oddly++the+most
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=notable+letter+of+rejection+i+ever+received+came+from+walt+disney+world+a+seemingly+innocuous+site
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+read+i+m+just+going+to+read+a+key+sentence+especially+during+these+violent+times++i+personally+believe+that+the+magical+spell+cast+upon+guests
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+visit+our+theme+parks+is+particularly+important+to+protect
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+helps+to+provide+them+with+an+important+fantasy+they+can+escape+to
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=photography+threatens+fantasy+they+didn+t+want+to+let+my+camera+in+because+it+confronts+constructed+realities+myths+and+beliefs
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+provides+what+appears+to+be+evidence+of+a+truth
found 2 videos: [['/talks/taryn_simon_photographs_of_secret_sites', '2009'], ['/talks/steven_pinker_human_nature_and_the_blank_slate', '2008']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+there+are+multiple+truths+attached+to+every+image
found 1 videos: [['/talks/taryn_simon_photographs_of_secret_sites', '2009']]
selected: /talks/taryn_simon_photographs_of_secret_sites
sleep 1 seconds to avoid blocking
------<2173>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TarynSimon_2011S.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+shivdutt+yadav+and+he+s+from+uttar+pradesh+india
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+shivdutt+was+visiting+the+local+land+registry+office+in+uttar+pradesh++and+he+discovered+that+official+records+were+listing+him+as+dead+his+land+was+no+longer+registered+in
found 1 videos: [['/talks/taryn_simon_the_stories_behind_the_bloodlines', '2012']]
selected: /talks/taryn_simon_the_stories_behind_the_bloodlines
sleep 2 seconds to avoid blocking
------<2174>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TasosFrantzolas_2016X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=want+to+start+by+doing+an+experiment+i+m
found 1 videos: [['/talks/anant_agarwal_why_massive_open_online_courses_still_matter', '2014']]
selected: /talks/anant_agarwal_why_massive_open_online_courses_still_matter
sleep 4 seconds to avoid blocking
------<2175>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TassoAzevedo_2014G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+portuguese+arrived+in+latin+america+about+five+hundred+years+ago++they+obviously+found+this+amazing+tropical+forest
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+among+all+this+biodiversity+that+they+had+never+seen+before+they+found+one+species+that+caught+their+attention+very+quickly
found 2 videos: [['/talks/paul_snelgrove_a_census_of_the_ocean', '2012'], ['/talks/tasso_azevedo_hopeful_lessons_from_the_battle_to_save_rainforests', '2015']]
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+cut+the+the+bark+you+find+a+very+dark+red+resin
error: request timeout
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+indigenous+people+called+this+species+pau+brasil++and+that+s+the+reason+why+this+land+became+land+of+brasil+and
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+the+only+country+in+the+world+that+has+the+name
found 7 videos: [['/talks/freeman_hrabowski_4_pillars_of_college_success_in_science', '2013'], ['/talks/karima_bennoune_when_people_of_muslim_heritage_challenge_fundamentalism', '2014'], ['/talks/robert_neuwirth_the_power_of_the_informal_economy', '2012'], ['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013'], ['/talks/rich_benjamin_my_road_trip_through_the_whitest_towns_in_america', '2015'], ['/talks/travis_kalanick_uber_s_plan_to_get_more_people_into_fewer_cars', '2016'], ['/talks/seth_shostak_et_is_probably_out_there_get_ready', '2012']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+a+tree++so+you+can+imagine+that+it+s+very+cool+to+be+a+forester+in+brazil++among+other+reasons
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=forest+products+are+all+around+us++apart+from+all+those+products+the+forest+is+very+important+for+climate+regulation
found 1 videos: [['/talks/tasso_azevedo_hopeful_lessons_from_the_battle_to_save_rainforests', '2015']]
selected: /talks/tasso_azevedo_hopeful_lessons_from_the_battle_to_save_rainforests
sleep 2 seconds to avoid blocking
------<2176>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TaviGevinson_2012X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+started+a+fashion+blog+called+style+rookie++last+september+of+two+thousand+and+eleven++i+started+an+online+magazine+for+teenage+girls+called+rookiemag+com
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+name+s+tavi+gevinson+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+title+of+my+talk+is+still+figuring+it+out+and+the+ms+paint+quality+of+my+slides+was+a+total+creative+decision+in+keeping+with+today+s+theme+and+has+nothing+to+do+with+my+inability+to+use+powerpoint
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+edit+this+site+for+teenage+girls+i+m+a+feminist+i+am+kind+of+a+pop+culture+nerd+and+i+think+a+lot+about+what+makes+a+strong+female+character
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=shows+these+things+have+influence+my+own+website
found 10 videos: [['/talks/tavi_gevinson_a_teen_just_trying_to_figure_it_out', '2012'], ['/talks/david_pizarro_the_strange_politics_of_disgust', '2012'], ['/talks/keren_elazari_hackers_the_internet_s_immune_system', '2014'], ['/talks/christopher_moot_poole_the_case_for_anonymity_online', '2010'], ['/talks/molly_crockett_beware_neuro_bunk', '2012'], ['/talks/peter_singer_the_why_and_how_of_effective_altruism', '2013'], ['/talks/catarina_mota_play_with_smart_materials', '2013'], ['/talks/bruno_torturra_got_a_smartphone_start_broadcasting', '2014'], ['/talks/auret_van_heerden_making_global_labor_fair', '2010'], ['/talks/didier_sornette_how_we_can_predict_the_next_financial_crisis', '2013']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+think+the+question+of+what+makes+a+strong+female+character+often+goes+misinterpreted++and+instead+we+get+these+two+dimensional+superwomen
found 1 videos: [['/talks/tavi_gevinson_a_teen_just_trying_to_figure_it_out', '2012']]
selected: /talks/tavi_gevinson_a_teen_just_trying_to_figure_it_out
sleep 2 seconds to avoid blocking
------<2177>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TaylorWilson_2012.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+my+name+is+taylor+wilson+i+am+seventeen+years+old+and+i+am+a+nuclear+physicist+which+may+be+a+little+hard+to+believe+but+i+am
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+would+like+to+make+the+case+that
found 9 videos: [['/talks/ruth_chang_how_to_make_hard_choices', '2014'], ['/talks/kelly_mcgonigal_how_to_make_stress_your_friend', '2013'], ['/talks/cameron_herold_let_s_raise_kids_to_be_entrepreneurs', '2010'], ['/talks/michael_archer_how_we_ll_resurrect_the_gastric_brooding_frog_the_tasmanian_tiger', '2013'], ['/talks/chris_hadfield_what_i_learned_from_going_blind_in_space', '2014'], ['/talks/kent_larson_brilliant_designs_to_fit_more_people_in_every_city', '2012'], ['/talks/catherine_bracy_why_good_hackers_make_good_citizens', '2014'], ['/talks/aris_venetikidis_making_sense_of_maps', '2012'], ['/talks/daniel_goldstein_the_battle_between_your_present_and_future_self', '2011']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=nuclear+fusion+will+be+that+point+that+the+bridge+that+t+boone+pickens+talked+about+will+get+us+to+so+nuclear+fusion+is+our+energy+future
found 1 videos: [['/talks/taylor_wilson_yup_i_built_a_nuclear_fusion_reactor', '2012']]
selected: /talks/taylor_wilson_yup_i_built_a_nuclear_fusion_reactor
sleep 4 seconds to avoid blocking
------<2178>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TaylorWilson_2013.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+a+big+announcement+to+make+today++and+i+m+really+excited+about+this++and+this+may+be+a+little+bit+of+a+surprise+to
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=many+of+you+who+know+my+research+and+what+i+ve+done+well++i+ve+really+tried+to+solve+some+some+big+problems
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=terrorism+and+health+care+and+diagnosing+and+treating+cancer++but+i+started+thinking+about+all+these+problems++and
found 1 videos: [['/talks/taylor_wilson_my_radical_plan_for_small_nuclear_fission_reactors', '2013']]
selected: /talks/taylor_wilson_my_radical_plan_for_small_nuclear_fission_reactors
sleep 2 seconds to avoid blocking
------<2179>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TBoonePickens_2012.stm
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+a+believer+in+global+warming++and+my+record+is+good+on+the+subject
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+my+subject+is+national+security
found 6 videos: [['/talks/t_boone_pickens_let_s_transform_energy_with_natural_gas', '2012'], ['/talks/afra_raymond_three_myths_about_corruption', '2013'], ['/talks/benjamin_barber_why_mayors_should_rule_the_world', '2013'], ['/talks/jake_barton_the_museum_of_you', '2013'], ['/talks/james_lyne_everyday_cybercrime_and_what_you_can_do_about_it', '2013'], ['/talks/eric_dishman_take_health_care_off_the_mainframe', '2010']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+have+to+get+off+of+oil+purchased+from+the+enemy
found 1 videos: [['/talks/t_boone_pickens_let_s_transform_energy_with_natural_gas', '2012']]
selected: /talks/t_boone_pickens_let_s_transform_energy_with_natural_gas
sleep 4 seconds to avoid blocking
------<2180>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TeddyCruz_2013G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=urban+explosion+of+the+last+years+of+economic+boom
found 1 videos: [['/talks/teddy_cruz_how_architectural_innovations_migrate_across_borders', '2014']]
selected: /talks/teddy_cruz_how_architectural_innovations_migrate_across_borders
sleep 2 seconds to avoid blocking
------<2181>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TedHalstead_2017.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=daughter+named+naya+who+is+under+the+mistaken+impression+that+this+conference+is+named+in+honor+of+her+father
found 1 videos: [['/talks/ted_halstead_a_climate_solution_where_all_sides_can_win', '2017']]
selected: /talks/ted_halstead_a_climate_solution_where_all_sides_can_win
sleep 4 seconds to avoid blocking
------<2182>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/Teitur_2015.stm
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=way+too+long+there+s+something+inside+this
found 6 videos: [['/talks/travis_kalanick_uber_s_plan_to_get_more_people_into_fewer_cars', '2016'], ['/talks/dustin_yellin_a_journey_through_the_mind_of_an_artist', '2015'], ['/talks/stephen_burt_why_people_need_poetry', '2014'], ['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013'], ['/talks/tasos_frantzolas_everything_you_hear_on_film_is_a_lie', '2016'], ['/talks/harry_baker_a_love_poem_for_lonely_prime_numbers', '2015']]
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=wants+us+to+love+just+instead+but+i+was+just+thinking
found 15 videos: [['/talks/esther_perel_rethinking_infidelity_a_talk_for_anyone_who_has_ever_loved', '2015'], ['/talks/mandy_len_catron_a_better_way_to_talk_about_love', '2017'], ['/talks/radhika_nagpal_what_intelligent_machines_can_learn_from_a_school_of_fish', '2017'], ['/talks/roman_mars_why_city_flags_may_be_the_worst_designed_thing_you_ve_never_noticed', '2015'], ['/talks/sebastian_thrun_and_chris_anderson_what_ai_is_and_isn_t', '2017'], ['/talks/david_eagleman_can_we_create_new_senses_for_humans', '2015'], ['/talks/jonathan_haidt_how_common_threats_can_make_common_political_ground', '2013'], ['/talks/andrew_solomon_depression_the_secret_we_share', '2013'], ['/talks/teitur_home_is_a_song_i_ve_always_remembered', '2015'], ['/talks/yuval_noah_harari_nationalism_vs_globalism_the_new_political_divide', '2017'], ['/talks/bj_miller_what_really_matters_at_the_end_of_life', '2015'], ['/talks/johann_hari_everything_you_think_you_know_about_addiction_is_wrong', '2015'], ['/talks/paul_greenberg_the_four_fish_we_re_overeating_and_what_to_eat_instead', '2015'], ['/talks/martine_rothblatt_my_daughter_my_wife_our_robot_and_the_quest_for_immortality', '2015'], ['/talks/chimamanda_ngozi_adichie_we_should_all_be_feminists', '2017']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ve+got+the+one+of+you+in+that+dancing+dress+but+man+i+feel+silly+in+that+dim
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=think+about+long+distance+rates+instead+of+kissing+you
found 1 videos: [['/talks/teitur_home_is_a_song_i_ve_always_remembered', '2015']]
selected: /talks/teitur_home_is_a_song_i_ve_always_remembered
sleep 5 seconds to avoid blocking
------<2183>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TempleGrandin_2010.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=just+talk+a+little+bit+about+what+exactly+autism+is++autism+is+a+very+big+continuum+that+goes+from+very+severe+the+child+remains+nonverbal+all+the+way+up+to+brilliant+scientists
found 1 videos: [['/talks/temple_grandin_the_world_needs_all_kinds_of_minds', '2010']]
selected: /talks/temple_grandin_the_world_needs_all_kinds_of_minds
sleep 4 seconds to avoid blocking
------<2184>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TeresaCarrenoOrchestra_2009.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+now+we+go+live+to+caracas+to+see+one+of+maestro+abreu+s+great+proteges+he+is+the+new+musical
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=director+of+the+los+angeles+philharmonic+orchestra+he+s+the+greatest+young+conductor+in+the+world+gustavo+dudamel
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+l+a+hi+quincy+hi+maestro+zander+hi+mark
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+are+very+happy+to+have+the+possibility+to+be+with+you
found 11 videos: [['/talks/jamais_cascio_tools_for_a_better_world', '2009'], ['/talks/naomi_klein_addicted_to_risk', '2011'], ['/talks/nicholas_christakis_the_hidden_influence_of_social_networks', '2010'], ['/talks/matthieu_ricard_the_habits_of_happiness', '2007'], ['/talks/john_hodgman_aliens_love_where_are_they', '2008'], ['/talks/dave_eggers_my_wish_once_upon_a_school', '2008'], ['/talks/ariel_garten_know_thyself_with_a_brain_scanner', '2011'], ['/talks/robert_thurman_expanding_your_circle_of_compassion', '2008'], ['/talks/robert_wright_progress_is_not_a_zero_sum_game', '2007'], ['/talks/bruce_bueno_de_mesquita_a_prediction_for_the_future_of_iran', '2009'], ['/talks/chimamanda_ngozi_adichie_the_danger_of_a_single_story', '2009']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+other+side+of+the+world+we+we+can+speak+only+with+music
found 14 videos: [['/talks/zainab_salbi_women_wartime_and_the_dream_of_peace', '2010'], ['/talks/kavita_ramdas_radical_women_embracing_tradition', '2010'], ['/talks/shashi_tharoor_why_nations_should_pursue_soft_power', '2009'], ['/talks/susan_savage_rumbaugh_the_gentle_genius_of_bonobos', '2007'], ['/talks/johanna_blakley_lessons_from_fashion_s_free_culture', '2010'], ['/talks/juan_enriquez_the_life_code_that_will_reshape_the_future', '2007'], ['/talks/david_gallo_life_in_the_deep_oceans', '2008'], ['/talks/charles_hazlewood_trusting_the_ensemble', '2011'], ['/talks/alwar_balasubramaniam_art_of_substance_and_absence', '2010'], ['/talks/kevin_bales_how_to_combat_modern_slavery', '2010'], ['/talks/charles_leadbeater_education_innovation_in_the_slums', '2010'], ['/talks/gustavo_dudamel_and_the_teresa_carreno_youth_orchestra_el_sistema_s_top_youth_orchestra', '2009'], ['/talks/tom_honey_why_would_god_create_a_tsunami', '2007'], ['/talks/lawrence_lessig_laws_that_choke_creativity', '2007']]
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+have+the+opportunity+to+have+this+angel
found 5 videos: [['/talks/david_s_rose_how_to_pitch_to_a_vc', '2008'], ['/talks/jill_bolte_taylor_my_stroke_of_insight', '2008'], ['/talks/gustavo_dudamel_and_the_teresa_carreno_youth_orchestra_el_sistema_s_top_youth_orchestra', '2009'], ['/talks/chris_abani_telling_stories_from_africa', '2007'], ['/talks/beverly_dereck_joubert_life_lessons_from_big_cats', '2010']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+world+not+only+in+our+country+venezuela+in+our+world+he+has+given+us+the+possibility
found 1 videos: [['/talks/gustavo_dudamel_and_the_teresa_carreno_youth_orchestra_el_sistema_s_top_youth_orchestra', '2009']]
selected: /talks/gustavo_dudamel_and_the_teresa_carreno_youth_orchestra_el_sistema_s_top_youth_orchestra
sleep 3 seconds to avoid blocking
------<2185>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TerryMoore_2005.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+the+ted+audience+as+a+wonderful+collection+of+some+of+the+most+effective+intelligent+intellectual
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=savvy++worldly+and+innovative+people+in+the+world+and+i+think+that+s+true++however+i
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+also+have+reason+to+believe+that+many+if+not+most+of+you+are+actually+tying+your+shoes+incorrectly+now
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+know+that+seems+ludicrous++i+know+that+seems+ludicrous++and+believe+me++i+lived+the+same+sad+life+until+about+three+years+ago
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+what+happened+to+me+was+i+bought++what+was+for+me+a+very+expensive+pair+of+shoes+but+those+shoes+came+with+round+nylon+laces+and+i+couldn+t+keep+them+tied
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+went+back+to+the+store+and+said+to+the+owner+i+love+the+shoes+but+i+hate+the+laces
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+look+and+said+oh+you+re+tying+them+wrong
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+up+until+that+moment++i+would+have+thought+that+by+age+fifty
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+the+life+skills+that+i+had+really+nailed+was+tying+my+shoes
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+not+so+let+me+demonstrate
error: request timeout
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+most+of+us+were+taught+to+tie+our+shoes
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+it+turns+out+thank+you
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=wait+there+s+more+as+it+turns+out
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+a+strong+form+and+a+weak+form+of+this+knot+and+we+were+taught+the+weak+form+and+here+s+how+to+tell
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+pull+the+strands+at+the+base+of+the+knot++you+will+see+that+the+bow+will+orient+itself+down+the+long+axis+of+the+shoe
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+the+weak+form+of+the+knot++but+not+to+worry++if+we+start+over
error: request timeout
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=simply+go+the+other+direction+around+the+bow
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+get+this+the+strong+form+of+the+knot++and+if+you+pull+the+cords+under+the+knot+you+will+see+that
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+bow+orients+itself+along+the+transverse+axis+of+the+shoe
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+a+stronger+knot+it+will+come+untied+less+often+it+will+let+you+down+less+and+not+only+that+it+looks+better+we
error: request timeout
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=go+the+other+way+around+the+loop+this+is+a+little+hard+for+children+but+i+think+you+can+handle+it
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=pull+the+knot+there+it+is+the+strong+form+of+the+shoe+knot+now
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+keeping+with+today+s+theme
error: request timeout
error: no video is found.
sleep 3 seconds to avoid blocking
------<2186>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TerryMoore_2012.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=question+that+we+ve+all+asked+the+question+is+why+is+it+that+the+letter+x+represents+the+unknown
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+i+know+we+learned+that+in+math+class++but+now+it
error: request timeout
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+six+years+ago+i+decided+that+i+would+learn+arabic+which+turns+out+to+be+a+supremely+logical+language
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+write+a+word+or+a+phrase+or+a+sentence+in+arabic+is+like+crafting+an+equation+because+every+part+is+extremely+precise+and+carries+a+lot+of+information
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+the+reasons+so+much+of+what+we+ve+come+to+think+of+as+western+science+and+mathematics+and+engineering
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+really+worked+out+in+the+first+few+centuries+of+the+common+era+by+the+persians+and+the+arabs+and+the+turks+this+includes+the+little+system+in+arabic+called
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=into+english+as+algebra+one+example+among+many
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+arabic+texts+containing+this+mathematical+wisdom+finally+made+their+way+to+europe+which+is+to+say+spain
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+when+they+arrived+there+was+tremendous+interest+in+translating+this+wisdom+into+a+european
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+there+were+problems+one+problem+is
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+there+are+some+sounds+in+arabic+that+just+don+t+make+it+through+a+european+voice+box+without+lots+of+practice++trust+me+on+that+one
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=also++those+very+sounds+tend+not+to+be+represented+by+the+characters+that+are+available+in+european+languages
found 1 videos: [['/talks/terry_moore_why_is_x_the_unknown', '2012']]
selected: /talks/terry_moore_why_is_x_the_unknown
sleep 2 seconds to avoid blocking
------<2187>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ThandieNewton_2011G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+first+heard+this+theme
found 16 videos: [['/talks/thandiwe_newton_embracing_otherness_embracing_myself', '2011'], ['/talks/jose_bowen_beethoven_the_businessman', '2012'], ['/talks/jared_ficklin_new_ways_to_see_music_with_color_and_fire', '2012'], ['/talks/jason_mccue_terrorism_is_a_failed_brand', '2012'], ['/talks/david_pogue_cool_tricks_your_phone_can_do', '2009'], ['/talks/andrew_stanton_the_clues_to_a_great_story', '2012'], ['/talks/derek_paravicini_and_adam_ockelford_in_the_key_of_genius', '2013'], ['/talks/young_ha_kim_be_an_artist_right_now', '2013'], ['/talks/chris_bliss_comedy_is_translation', '2012'], ['/talks/naif_al_mutawa_superheroes_inspired_by_islam', '2010'], ['/talks/charles_hazlewood_trusting_the_ensemble', '2011'], ['/talks/kathryn_schulz_on_being_wrong', '2011'], ['/talks/paul_lewis_how_mobile_phones_helped_solve_two_murders', '2011'], ['/talks/brene_brown_the_power_of_vulnerability', '2010'], ['/talks/julie_taymor_spider_man_the_lion_king_and_life_on_the_creative_edge', '2013'], ['/talks/leymah_gbowee_unlock_the_intelligence_passion_greatness_of_girls', '2012']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+thought+well+embracing+otherness+is+embracing+myself
found 1 videos: [['/talks/thandiwe_newton_embracing_otherness_embracing_myself', '2011']]
selected: /talks/thandiwe_newton_embracing_otherness_embracing_myself
sleep 4 seconds to avoid blocking
------<2188>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TheAhnTrio_2010W.stm
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=honored+to+be+here+at+tedwomen+sharing+our+music+with+you++what+an+exciting
found 1 videos: [['/talks/ahn_trio_a_modern_take_on_piano_violin_cello', '2011']]
selected: /talks/ahn_trio_a_modern_take_on_piano_violin_cello
sleep 4 seconds to avoid blocking
------<2189>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TheasterGates_2015.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+seems+like+a+fairly+humble+vocation
found 1 videos: [['/talks/theaster_gates_how_to_revive_a_neighborhood_with_imagination_beauty_and_art', '2015']]
selected: /talks/theaster_gates_how_to_revive_a_neighborhood_with_imagination_beauty_and_art
sleep 1 seconds to avoid blocking
------<2190>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TheLadyLifers_2014X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+pennsylvania+means+just+that+life+without+the+possibility+of+parole
found 1 videos: [['/talks/the_lady_lifers_a_moving_song_from_women_in_prison_for_life', '2015']]
selected: /talks/the_lady_lifers_a_moving_song_from_women_in_prison_for_life
sleep 1 seconds to avoid blocking
------<2191>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ThelmaGolden_2009.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+brilliant+playwright++adrienne+kennedy++wrote+a+volume+called+people+who+led+to+my+plays
found 1 videos: [['/talks/thelma_golden_how_art_gives_shape_to_cultural_change', '2010']]
selected: /talks/thelma_golden_how_art_gives_shape_to_cultural_change
sleep 5 seconds to avoid blocking
------<2192>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TheLXD_2010.stm
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+not+a+dancer+i+m+not+a+choreographer+i+m+actually+a+filmmaker+a+storyteller++i+directed+a+movie+two+years+ago
found 1 videos: [['/talks/the_lxd_in_the_internet_age_dance_evolves', '2010']]
selected: /talks/the_lxd_in_the_internet_age_dance_evolves
sleep 4 seconds to avoid blocking
------<2193>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TheoJansen_2007.stm
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+i+started+about+sixteen+years+ago++it+s+about+making+new+forms+of+life+and+these+are+made
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+can+start+a+film+about+that++and+we+can
found 6 videos: [['/talks/jeff_skoll_my_journey_into_movies_that_matter', '2007'], ['/talks/alan_kay_a_powerful_idea_about_ideas', '2008'], ['/talks/newton_aduaka_the_story_of_ezra', '2008'], ['/talks/tim_brown_tales_of_creativity_and_play', '2008'], ['/talks/paul_bennett_design_is_in_the_details', '2007'], ['/talks/keith_barry_brain_magic', '2008']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=see+a+little+bit+backwards+in+time+narrator+eventually+these+beasts+are+going+to+live+in+herds+on+the+beaches+theo
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=jansen+is+working+hard+on+this+evolution+theo+jansen
error: request timeout
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=beaches++and+they+should+survive+over+there+on+their+own+in+the+future
found 1 videos: [['/talks/theo_jansen_my_creations_a_new_form_of_life', '2007']]
selected: /talks/theo_jansen_my_creations_a_new_form_of_life
sleep 1 seconds to avoid blocking
------<2194>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TheRaspyniBrothers_2002.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=please+throw+out+the+beanbag+chairs+here+we+go+barry+friedman+there+are+all+kinds+of+high+tech+chairs+here+today+but+this+is+really+i+think+when+it+it+reached+its+peak+as+far+as+ergonomics+comfort+design
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+obviously+this+is+not+something+we+do+on+our+regular+show+it+s+something+we+just
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=kind+of+learned+for+this+so+we+re+going+to+try+but+can+we+have+some+inspirational+music+for+the+beanbag
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sometimes+when+people+do+those+they+go+all+the+way+down+you+actually+just+did+that
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+the+kind+of+extra+effort+that+s+gotten+us+where+we+are+today
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=michael+moschen+showed+some+juggling+props+he+has+invented+and+working+on+right+now+dan+s+going+to+show+something+he+actually+invented+dh+a+type+of+juggling+i+actually+invented
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=right+after+i+saw+another+juggler+do+it
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+not+a+showstopper+but+it+certainly+slows+it+down
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=do+six+cups++i+must+have+perfect+control+over+three+with+my+right+hand
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=cups+should+i+do+it+on+the+first+try+or+should+i+miss+once+on+purpose
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+time+for+richard+s+help
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=could+we+work+on+the+design+of+the+microphone+bf+i+think+that+s+the+next+session+dh+next+session+bf+yeah++and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+we+ve+actually+found+a+way+to+incorporate+richard+in+this+he+actually+assumes+more+of+the+danger+in+this
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=dan+used+to+actually+hold+them+but+now+he+s+got+you+for+protection++it+s+kind+of
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=phone+calls+are+coming+back+to+me+now+richard
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=want+to+hold+these+trust+me
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=spread+your+legs+a+little+bit
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+cool+i+always+wanted+to+try+that+dh+let
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+we+risked+richard+s+life++it+s+only+fair+we+risk+our+own+lives
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+to+do+that++i+will+juggle+these+three
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+run+up+behind+him+dh+leap+over+my+shoulder+bf+up+and+over+his+shoulders+dh+grab+the+blades+in+mid+air+land+right+there+in+a+pool+of+blood
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=do+this+trick+but+please+remember+it+took+us+over+ten+years+to+perfect+bf+ten+years+to+perfect+which+you+re+about+to+see+dh+it+s+not+that+difficult+we+just+don+t+like+to+practice+that+much
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=actually+we+will+take+a+second+to+prove+this+could+be+fake+that+the+blades+are+indeed+razor+sharp+dh+will+someone+please+throw+a+small+farm+animal+up
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=could+you+point+that+a+little+more+directly+into+my+eyeballs+is+that+possible
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+design+of+the+body+is+a+whole+different+thing+dh+ready+barry+bf+over+the+top+dh+may+we+have+our+jumping+music+please+may+we+have+it+a+bit+louder
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+uncomfortable+for+everyone+dh+the+french+judge+bf+one+more+quick+thing+dh+the+french+judge+gives+it+a+five+point+two
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+our+bio+some+of+you+may+have+read+that+we+ve+won+two+world+juggling+championships++and+believe+it+or+not+you+don+t+win+juggling+champions+for+doing+things+with+bullwhips+or+shaker+cups+we+re+going+to+show+you+right+now
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=an+excerpt+from+a+routine+that+we+used
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+wipe+out+the+other+juggling+team+competition+dh+that+s+right
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+know+what+you+re+thinking+other+juggling+teams+must+really+suck+bf
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=juggling+s+got+a+bad+rap+dh
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+wait+barry++there+s+still+one+more+club+lying+there+by
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+more+by+my+foot++what+do+you+want+me+to+do+with+it
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=richard+you+tell+him+it+s+your+last
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=reach+down+and+grab+that+club+in+my+grip+of+steel
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=slide+the+seventh+one+onto+my+foot
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+gem+of+knowledge++what+pearl+of+wisdom+do+you+want+to+buy+a+vowel++barry
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+that+your+final+answer+bf+all+right
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+have+to+turn+off+the+tv
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+kick+up+in+the+seven+dh+we+will+juggle+seven
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+make+this+twice+as+difficult+we+ll+juggle+the+seven+clubs
found 0 videos: []
error: no video is found.
sleep 1 seconds to avoid blocking
------<2195>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TheyMightBeGiants_2007.stm
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=good+morning+everybody+we+are+they+might+be+giants
found 5 videos: [['/talks/they_might_be_giants_wake_up_it_s_they_might_be_giants', '2008'], ['/talks/william_mcdonough_cradle_to_cradle_design', '2007'], ['/talks/richard_branson_life_at_30_000_feet', '2007'], ['/talks/kevin_kelly_the_next_5_000_days_of_the_web', '2008'], ['/talks/dan_gilbert_why_we_make_bad_decisions', '2008']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+am+wearing+the+al+gore+in+ear+monitors+he+wore+on
found 1 videos: [['/talks/they_might_be_giants_wake_up_it_s_they_might_be_giants', '2008']]
selected: /talks/they_might_be_giants_wake_up_it_s_they_might_be_giants
sleep 4 seconds to avoid blocking
------<2196>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ThomasBarnett_2005.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+get+asked+a+lot+what+the+difference+between+my+work+is+and+typical+pentagon+long+range+strategic+planners++and+the+answer+i+like+to+offer+is+what
found 1 videos: [['/talks/thomas_barnett_let_s_rethink_america_s_military_strategy', '2007']]
selected: /talks/thomas_barnett_let_s_rethink_america_s_military_strategy
sleep 3 seconds to avoid blocking
------<2197>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ThomasCampbell_2012.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+career+in+the+art+world+i+took+a+course+in+london+and+one+of+my+supervisors+was+this+irascible+italian+called
found 1 videos: [['/talks/thomas_p_campbell_weaving_narratives_in_museum_galleries', '2012']]
selected: /talks/thomas_p_campbell_weaving_narratives_in_museum_galleries
sleep 3 seconds to avoid blocking
------<2198>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ThomasDolby_2010.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+been+playing+ted+for+nearly+a+decade++and+i+ve+very+rarely+played+any+new+songs+of
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+largely+because+there+weren+t+any+so+i+ve+been+busy+with+a+couple+of+projects++and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+them+was+this+the+nutmeg+a+1930s+ship+s+lifeboat+which+i+ve+been+restoring+in+the+garden+of+my+beach+house+in+england
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+now+when+the+polar+ice+caps+melt+my+recording
found 2 videos: [['/talks/thomas_dolby_love_is_a_loaded_pistol', '2010'], ['/talks/jamais_cascio_tools_for_a_better_world', '2009']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=will+rise+up+like+an+ark++and+i+ll+float+off+into+the+drowned+world+like+a+character+from+a+j+g+ballard+novel
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=collects+energy+from+solar+panels+on+the+roof+of+the+wheelhouse+and+from+a+four+hundred+and+fifty+watt+turbine+up+the+mast
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+that+when+it+gets+dark+i+ve+got+plenty+of+power++and+i+can+light+up+the+nutmeg
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+i+go+in+there+until+the+early+hours+of+the+morning++and+i+work+on+new+songs
found 4 videos: [['/talks/thomas_dolby_love_is_a_loaded_pistol', '2010'], ['/talks/doris_kearns_goodwin_lessons_from_past_presidents', '2008'], ['/talks/peter_hirshberg_the_web_is_more_than_better_tv', '2008'], ['/talks/jeffrey_kluger_the_sibling_bond', '2012']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+d+like+to+play+to+you+guys+if+you+re+willing+to+be+the+first+audience+to+hear+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+about+billie+holiday++and+it+appears+that
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+night+in+night+in+one+thousand+nine+hundred+and+forty+seven
found 5 videos: [['/talks/peter_diamandis_abundance_is_our_future', '2012'], ['/talks/sendhil_mullainathan_solving_social_problems_with_a_nudge', '2010'], ['/talks/sheryl_wudunn_our_century_s_greatest_injustice', '2010'], ['/talks/aaron_koblin_visualizing_ourselves_with_crowd_sourced_data', '2011'], ['/talks/moshe_safdie_building_uniqueness', '2008']]
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+was+missing+all+night+until+she+reappeared
found 1 videos: [['/talks/thomas_dolby_love_is_a_loaded_pistol', '2010']]
selected: /talks/thomas_dolby_love_is_a_loaded_pistol
sleep 5 seconds to avoid blocking
------<2199>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ThomasGoetz_2010P.stm
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+really+underutilized+resource+in+health+care++which+is+the+patient++or+as+i+like+to+use+the+the+scientific+term+people
found 1 videos: [['/talks/thomas_goetz_it_s_time_to_redesign_medical_data', '2011']]
selected: /talks/thomas_goetz_it_s_time_to_redesign_medical_data
sleep 5 seconds to avoid blocking
------<2200>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ThomasHeatherwick_2011.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+name+is+thomas+heatherwick++i
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+a+studio+in+london+that+has+a+particular+approach+to+designing+buildings
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+was+growing+up++i+was+exposed+to+making+and+crafts+and+materials
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+invention+on+a+small+scale
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+was+there+looking+at+the+larger+scale+of+buildings+and+finding+that+the+buildings+that+were+around+me+and+that+were+being+designed+and+that+were+there
found 4 videos: [['/talks/thomas_heatherwick_building_the_seed_cathedral', '2011'], ['/talks/greg_lynn_organic_algorithms_in_architecture', '2009'], ['/talks/rachel_botsman_the_currency_of_the_new_economy_is_trust', '2012'], ['/talks/deb_roy_the_birth_of_a_word', '2011']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+publications+i+was+seeing
found 8 videos: [['/talks/rob_forbes_ways_of_seeing', '2009'], ['/talks/thomas_heatherwick_building_the_seed_cathedral', '2011'], ['/talks/beau_lotto_amy_o_toole_science_is_for_everyone_kids_included', '2012'], ['/talks/jonathan_klein_photos_that_changed_the_world', '2010'], ['/talks/dee_boersma_pay_attention_to_penguins', '2010'], ['/talks/taryn_simon_photographs_of_secret_sites', '2009'], ['/talks/tim_ferriss_smash_fear_learn_anything', '2009'], ['/talks/anil_gupta_india_s_hidden_hotbeds_of_invention', '2010']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+ceramic+pot+or+a+musical+instrument+was+a+materiality+and+a+soulfulness++and+this+influenced
found 1 videos: [['/talks/thomas_heatherwick_building_the_seed_cathedral', '2011']]
selected: /talks/thomas_heatherwick_building_the_seed_cathedral
sleep 1 seconds to avoid blocking
------<2201>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ThomasHellum_2014X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=only+got+eighteen+minutes+to+explain+something+that+lasts+for+hours+and+days+so+i+d+better+get+started
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+s+start+with+a+clip+from+al+jazeera+s+listening+post
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+country+that+gets+relatively+little+media+coverage+even+the+elections+this+past+week+passed+without+much+drama++and+that+s+the+norwegian+media+in+a+nutshell+not+much+drama
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+few+years+back+norway+s+public+tv+channel+nrk+decided+to+broadcast+live+coverage+of+a+seven+hour+train+ride+seven+hours+of+simple+footage+a
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=train+rolling+down+the+tracks+norwegians+more+than+a+million+of+them+according+to+the+ratings
found 1 videos: [['/talks/thomas_hellum_the_world_s_most_boring_television_and_why_it_s_hilariously_addictive', '2014']]
selected: /talks/thomas_hellum_the_world_s_most_boring_television_and_why_it_s_hilariously_addictive
sleep 2 seconds to avoid blocking
------<2202>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ThomasInsel_2013X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+s+start+with+some+good+news+and+the+good+news+has+to+do+with+what+do+we+know+based+on
found 3 videos: [['/talks/roman_mars_why_city_flags_may_be_the_worst_designed_thing_you_ve_never_noticed', '2015'], ['/talks/ben_goldacre_battling_bad_science', '2011'], ['/talks/sandra_fisher_martins_the_right_to_understand', '2011']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=biomedical+research+that+actually+has+changed+the+outcomes+for+many+very
found 1 videos: [['/talks/thomas_insel_toward_a_new_understanding_of_mental_illness', '2013']]
selected: /talks/thomas_insel_toward_a_new_understanding_of_mental_illness
sleep 5 seconds to avoid blocking
------<2203>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ThomasPeschak_2015Z.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+saw+graceful+sea+turtles+dancing+across+coral+reefs+as+a+marine+biologist+turned+photographer++i+ve+spent+most+of+my+career+looking+for+places+as+magical+as+those+i+used+to+dream+about+when+i+was+little
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+you+can+see+i+began+exploring+bodies+of+water+at+a+fairly+young+age+but+the+first+time+i+truly+went+underwater++i+was+about+ten+years+old++and+i+can+still+vividly+remember+furiously+finning+to+reach+this+old+encrusted+cannon+on+a+shallow
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+finally+managed+to+grab+hold+of+it+i+looked+up
found 2 videos: [['/talks/thomas_peschak_dive_into_an_ocean_photographer_s_world', '2016'], ['/talks/aala_el_khani_what_it_s_like_to_be_a_parent_in_a_war_zone', '2017']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+was+instantly+surrounded+by+fish+in+all+colors+of+the+rainbow
found 1 videos: [['/talks/thomas_peschak_dive_into_an_ocean_photographer_s_world', '2016']]
selected: /talks/thomas_peschak_dive_into_an_ocean_photographer_s_world
sleep 2 seconds to avoid blocking
------<2204>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ThomasPiketty_2014S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=very+nice+to+be+here+tonight+so+i+ve+been+working+on+the+history+of+income+and+wealth+distribution+for+the+past+fifteen+years+and+one+of+the+interesting+lessons
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=historical+evidence+is+indeed+that+in+the+long+run+there+is+a+tendency+for+the+rate+of+return+of+capital+to+exceed
found 1 videos: [['/talks/thomas_piketty_new_thoughts_on_capital_in_the_twenty_first_century', '2014']]
selected: /talks/thomas_piketty_new_thoughts_on_capital_in_the_twenty_first_century
sleep 1 seconds to avoid blocking
------<2205>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ThomasSuarez_2011X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+always+had+a+fascination+for+computers+and+technology++and+i+made+a+few+apps+for+the+iphone+ipod+touch+and+ipad+i+d+like+to+share+a+couple+with+you+today
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+first+app+was+a+unique
found 7 videos: [['/talks/thomas_suarez_a_12_year_old_app_developer', '2011'], ['/talks/jennifer_pahlka_coding_a_better_government', '2012'], ['/talks/john_wilbanks_let_s_pool_our_medical_data', '2012'], ['/talks/golan_levin_art_that_looks_back_at_you', '2009'], ['/talks/david_mccandless_the_beauty_of_data_visualization', '2010'], ['/talks/david_pogue_cool_tricks_your_phone_can_do', '2009'], ['/talks/sebastian_seung_i_am_my_connectome', '2010']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fortune+teller+called+earth+fortune+that+would+display+different+colors+of+earth+depending+on+what+your+fortune+was+my+favorite+and+most+successful+app
found 1 videos: [['/talks/thomas_suarez_a_12_year_old_app_developer', '2011']]
selected: /talks/thomas_suarez_a_12_year_old_app_developer
sleep 4 seconds to avoid blocking
------<2206>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ThomasThwaites_2010S.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+we+look+around+us++much+of+what+surrounds+us+started+life+as
found 16 videos: [['/talks/tim_harford_trial_error_and_the_god_complex', '2011'], ['/talks/thomas_thwaites_how_i_built_a_toaster_from_scratch', '2011'], ['/talks/jer_thorp_make_data_more_human', '2012'], ['/talks/john_q_walker_great_piano_performances_recreated', '2008'], ['/talks/david_perry_are_games_better_than_life', '2008'], ['/talks/elif_shafak_the_politics_of_fiction', '2010'], ['/talks/seth_godin_the_tribes_we_lead', '2009'], ['/talks/stefan_sagmeister_the_power_of_time_off', '2009'], ['/talks/diane_kelly_what_we_didn_t_know_about_penis_anatomy', '2012'], ['/talks/joe_derisi_solving_medical_mysteries', '2009'], ['/talks/frank_gehry_my_days_as_a_young_rebel', '2008'], ['/talks/kelli_anderson_design_to_challenge_reality', '2012'], ['/talks/david_griffin_how_photography_connects_us', '2008'], ['/talks/simon_lewis_don_t_take_consciousness_for_granted', '2011'], ['/talks/p_w_singer_military_robots_and_the_future_of_war', '2009'], ['/talks/majora_carter_3_stories_of_local_eco_entrepreneurship', '2010']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=various+rocks+and+sludge+buried+in+the+ground+in+various+places+in+the+world++but+of+course
found 1 videos: [['/talks/thomas_thwaites_how_i_built_a_toaster_from_scratch', '2011']]
selected: /talks/thomas_thwaites_how_i_built_a_toaster_from_scratch
sleep 1 seconds to avoid blocking
------<2207>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ThomMayne_2005.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+sitting+next+to+howard+i+don+t+know+howard+obviously+and+he+s+going+i+hope+you+re+not+next
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=amazing+performance+i+kind+of+erased+everything+in+my+brain
found 1 videos: [['/talks/thom_mayne_how_architecture_can_connect_us', '2007']]
selected: /talks/thom_mayne_how_architecture_can_connect_us
sleep 1 seconds to avoid blocking
------<2208>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ThordisElvaandTomStranger_2016W.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+was+eighteen+years+old+i+had+the+golden+opportunity+to+go+on+an+international+exchange+program++ironically+i+m+an+australian
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+prefers+proper+icy+cold+weather+so+i+was+both+excited+and+tearful
found 1 videos: [['/talks/thordis_elva_and_tom_stranger_our_story_of_rape_and_reconciliation', '2017']]
selected: /talks/thordis_elva_and_tom_stranger_our_story_of_rape_and_reconciliation
sleep 2 seconds to avoid blocking
------<2209>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ThulasirajRavilla_2009I.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+come+here+to+share+with+you+an+experiment
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+how+to+get+rid+of+one+form+of+human+suffering+it+really+is+a+story+of+dr+venkataswamy
found 1 videos: [['/talks/thulasiraj_ravilla_how_low_cost_eye_care_can_be_world_class', '2009']]
selected: /talks/thulasiraj_ravilla_how_low_cost_eye_care_can_be_world_class
sleep 5 seconds to avoid blocking
------<2210>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TierneyThys_2003.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+to+start+tonight+by+something+completely+different++asking+you+to+join+me+by+stepping+off+the+land+and
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=jumping+into+the+open+ocean+for+a+moment+ninety+percent+of+the+living+space+on+the+planet+is+in+the+open+ocean
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+s+where+life+the+title+of
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=our+seminar+tonight+it+s+where+life+began++and+it+s+a+lively+and+a+lovely+place+but+we+re+rapidly+changing+the+oceans+with+our
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+only+with+our+our+overfishing+our+irresponsible+fishing
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=our+adding+of+pollutants+like+fertilizer+from+our+cropland++but+also+most+recently+with+climate+change+and+steve+schneider+i+m+sure
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=will+be+going+into+greater+detail+on+this+now+as+we+continue+to+tinker+with+the+oceans
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=more+and+more+reports+are+predicting+that+the+kinds+of+seas+that+we+re+creating+will+be+conducive+to+low+energy+type+of+animals+like+jellyfish+and+bacteria
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+might+be+the+kind+of+seas+we+re+headed+for
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+jellyfish+are+strangely+hypnotic+and+beautiful++and+you+ll+see+lots+of+gorgeous+ones+at+the
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=aquarium+on+friday++but+they+sting+like+hell++and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=jellyfish+sushi+and+sashimi+is+just+not+going+to+fill+you+up+about+one+hundred+grams+of+jellyfish+equals
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=four+calories++so+it+may+be+good+for+the+waistline+but+it+probably+won+t+keep+you+satiated+for+very+long
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+a+sea+that+s+just+filled+and+teeming+with+jellyfish+isn+t+very+good+for+all+the+other+creatures+that+live+in+the+oceans+that+is+unless+you+eat+jellyfish
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+is+this+voracious+predator+launching+a+sneak+attack+on+this+poor+little+unsuspecting+jellyfish+there+a+by+the+wind+sailor
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+giant+ocean+sunfish+the+mola+mola+whose+primary+prey
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+guinness+world+book+of+records+for+being+the+world+s+heaviest+bony+fish+it+reaches+up+to+almost+five+thousand+pounds
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+a+diet+of+jellyfish+primarily
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+think+it+s+kind+of+a+nice+little+cosmological+convergence+here+that+the+mola+mola+its+common+name+is+sunfish+that+its+favorite+food+is
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+moon+jelly++so+it+s+kind+of+nice+the+sun+and+the+moon+getting+together+this+way++even+if+one+is+eating+the+other
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+this+is+typically+how+you+see
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=see+sunfish+this+is+where+they+get+their+common+name+they+like+to+sunbathe++can+t+blame+them+they+just+lay+out+on+the+surface+of+the+sea+and+most+people+think+they+re+sick+or+lazy++but+that+s+a+typical+behavior+they+lie+out+and+bask+on+the+surface
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+it+sounds+hawaiian++but+it+s+actually+latin+for+millstone++and+that+s+attributable+to+their+roundish+very+bizarre+cut+off+shape+it+s+as+if+as+they+were+growing+they+just+forgot+the+tail+part
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+s+actually+what+drew+me+to+the+mola+in+the+first+place+was+this+terribly+bizarre+shape
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know+you+look+at+sharks
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+re+streamlined+and+they+re+sleek+and+you+look+at+tuna++and+they+re+like+torpedoes+they+just+give+away+their+agenda+they+re+about
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=migration+and+strength+and+then+you+look+at
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=elegantly+mysterious+it+s+just+it+really+kind+of+holds+its+cards+a+lot+tighter+than
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+was+just+intrigued+with+what+you+know
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+is+this+animal+s+story
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+as+with+anything+in+biology++nothing+really+makes+sense+except+in+the+light+of+evolution+the+mola+s+no+exception+they+appeared+shortly+after+the+dinosaurs+disappeared
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sixty+five+million+years+ago+at+a+time+when+whales+still+had+legs++and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+come+from+a+rebellious+little+puffer+fish
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=oblige+me+a+little+kipling+esque+storytelling+here+of+course+evolution+is+somewhat+random+and+you+know
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+fifty+five+million+years+ago+there+was+this+rebellious+little+puffer+fish+faction+that+said+oh+the+heck+with+the+coral+reefs+we+re+going+to+head+to+the+high+seas
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and++lots+of+generations+lots+of+tweaking+and+torquing++and+we+turn
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+give+mother+nature+enough+time+that+is+what+she+will+produce
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+look+maybe+they+look+kind+of+prehistoric+and+unfinished+abridged+perhaps+but
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+fact+in+fact+they+are+the+they+vie+for+the+top+position+of+the+most
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fish+in+the+sea+right+up+there+with
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thing+about+that+that+fish+has+been+changed++and+in+terms+of+fishes+fishes+appeared+five+hundred+million+years+ago++and+they+re+pretty+modern+just+fifty+million+years+ago+so
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+interestingly++they+give+away+their+ancestry+as+they+develop++they+start+as+little+eggs
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+re+in+the+guinness+world+book+of+records+again+for+having+the
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=most+number+of+eggs+of+any+vertebrate+on+the+planet+a+single+four+foot+female+had
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=three+hundred+million+eggs+can+carry+three+hundred+million+eggs+in+her+ovaries+imagine+and+they+get+to+be+over+ten+feet+long+imagine+what+a+ten+foot+one+has
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+from+that+little+egg++they+pass+through+this+spiky
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=porcupine+fish+stage++reminiscent+of+their+ancestry+and+develop+this+is+their+little+adolescent+stage++they+school+as+adolescents+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=become+behemoth+loners+as+adults++that+s+a+little+diver+up+there+in+the+corner+they
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=re+in+the+guinness+world+book+of+records+again+for+being+the+vertebrate+growth+champion+of+the+world+from+their+little+hatching+size+of+their+egg+into+their+little+larval+stage
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=till+they+reach+adulthood+they+put+on+six+hundred
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=million+times+an+increase+in+weight+six+hundred+million+now+imagine+if+you+gave+birth+to+a+little+baby
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+had+to+feed+this+thing
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+would+mean+that+your+child+you+would+expect+it+to+gain+the+weight+of+six+titanics
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=feed+a+child+like+that+but
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+don+t+know+how+fast+the+molas+grow+in
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+wild+but+captive+growth+studies+at+the+monterey+bay+aquarium+one+of+the+first+places+to+have+them+in+captivity+they+had+one
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+gained+eight+hundred+lbs+in+fourteen+months++i+said+now+that+s+a+true+american
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+today+s+seas+because+schooling+used+to+be+salvation+for+fishes+but+it+s+suicide+for+fishes+now+but+unfortunately+molas++even+though+they+don+t+school+they+still+get+caught+in+nets+as+by+catch
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+we+re+going+to+save+the+world+from+total+jellyfish+domination+then+we+ve+got+to+figure+out+what+the+jellyfish+predators+how+they+live+their+lives+like+the+mola
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+unfortunately+they+make+up+a+large+portion+of+the+california+by+catch+up+to+twenty+six+percent+of+the+drift+net+and+in+the+mediterranean+in+the
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=swordfish+net+fisheries++they+make+up+up+to+ninety+percent+so
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+ve+got+to+figure+out+how+they+re+living+their+lives
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+how+do+you+do+that+how+do+you+do+that+with+an+animal+very+few+places+in+the+world+this+is+an+open+ocean+creature+it+knows+no+boundaries+it+doesn+t+go+to+land+how+do+you
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=seduce+an+open+ocean+creature+like+that+to+spill+its+secrets
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+there+s+some+great+new+technology+that+has+just+recently+become+available+and+it+s+just+a+boon+for+getting+insight+into+open+ocean+animals++and+it+s+pictured+right+here
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+little+tag+up+there++that+little+tag
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+light+intensity+which+is+correlated+with+time+and+from+that+we+can+get+locations
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+can+record+this+data+for+up+to+two+years+and+keep+it+in+that+tag+release+at+a+pre+programmed+time++float+to+the+surface++upload+all
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+data+that+whole+travelogue+to+satellite+which+relays+it+directly+to+our+computers++and+we+ve+got+that+whole+dataset++and+we+didn+t+even+have+we+just+had+to+tag+the+animal+and+then+we+went+home+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+the+great+thing+about+the+mola+is+that+when+we+put+the+tag+on+them+if+you+look+up+here+that+s+streaming+off+that+s+right+where+we+put+the+tag
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+just+so+happens+that+s+a+parasite+hanging+off+the+the+mola+molas+are+infamous+for+carrying+tons+of+parasites+they+re+just+parasite+hotels
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+have+forty+genera+of+parasites++and+so+we+figured+just+one+more+parasite+won+t+be+too+much+of+a+problem+and+they+happen+to+be+a+very+good+vehicle+for+carrying+oceanographic+equipment
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+don+t+seem+to+mind++so+far
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+what+are+we+trying+to+find+out+we+re+focusing+on+the+pacific+we+re+tagging+on+the+california+coast+and+we+re+tagging+over+in+taiwan+and+japan+and+we+re+interested+in
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+these+animals+are+using+the+currents+using+temperature++using+the+open+ocean+to+live+their+lives
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+d+love+to+tag+in+monterey+monterey+is+one+of+the+few+places+in+the+world+where+molas+come+in+large+numbers
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+this+time+of+year+it+s+more+around+october++and+we+d+love+to+tag+here+this+is+an+aerial+shot+of+monterey+but+unfortunately+the+molas+here
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=end+up+looking+like+this+because+another+one+of+our+locals+really+likes+molas+but+in+the+wrong+way++the+california+sea+lion+takes
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+molas+as+soon+as+they+come+into+the+bay+rips+off+their+fins++fashions+them+into+the+ultimate+frisbee+mola+style++and+then+tosses+them+back+and+forth
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+m+not+exaggerating+it+is+just+and+sometimes+they+don+t+eat+them+it+s+just+spiteful
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+locals+think+it+s+terrible+behavior
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+just+horrible+watching+this+happen+day+after+day+the+poor+little+molas+coming+in+getting+ripped+to+shreds+so
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+head+down+south+to+san+diego+not+so+many+california+sea+lions+down+there
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+molas+there++you+can+find+them+with+a+spotter+plane+very+easily+and+they+like+to+hang+out+under+floating+rafts+of+kelp
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+under+those+kelps+this+is+why+the+molas+come+there+because+it+s+spa+time+for+the+molas+there++as+soon+as+they+get+under+those+rafts+of+kelp
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+come+and+give+the+molas+you+can+see+they+strike+this+funny+little+position+that+says+i+m+not+threatening+but+i+need+a+massage
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+ll+put+their+fins+out+and+their+eyes+go+in+the+back+of+their+head+and+the+fish+come+up+and+they+just+clean+clean+clean+because+the
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+s+also+a+great+place+to+go+down+south+because+the+water+s+warmer
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+molas+are+kind+of+friendly+down+there++i+mean+what+other+kind+of+fish+if+you+approach+it+right+will+say+okay++scratch+me+right+there
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+truly+can+swim+up+to+a+mola+they+re+very+gentle+and+if+you+approach+them+right+you+can+give+them+a+scratch+and+they+enjoy+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+we+ve+also+tagged+one+part+of+the+pacific+we+ve+gone+over+to+another+part+of+the+pacific+and+we+ve+tagged+in+taiwan+and+we
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+over+in+these+places+the+molas+are+caught+in+set+nets+that+line+these+countries
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+they+re+not+thrown+back+as+by+catch+they+re+eaten+we+were+served+a+nine+course+meal+of+mola+after+we+tagged
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+not+the+one+we+tagged
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+everything+from+the+kidney+to+the
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+the+back+bone+to+the+fin+muscle+to+i+think+that+s+pretty+much+the+whole+fish
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+the+hardest+part+of+tagging+now+is+after+you+put+that+tag+on+you+have+to+wait
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+re+just+wondering+oh+i+hope+the+fish+is+safe+i+hope+i+hope+it+s+going+to+be+able+to+actually
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=live+its+life+out+during+the+course+that+the+tag+is+recording+the+tags+cost+three+thousand+five+hundred+dollars+each
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+satellite+time+is+another+five+hundred+dollars+so+you+re+like+oh+i+hope+the+tag+is+okay++and+so+the+waiting+is+really+the+hardest+part
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+show+you+our+latest+dataset++and+it+hasn+t+been+published++so+it+s+totally+privy+information+just+for+ted
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=looking+at+this+data+we+re+thinking++oh+do+these+animals+do+they+cross+the+equator+do+they+go+from+one+side+of+the+pacific+to+the+other++and+we+found+that+they+kind+of+are+homebodies+they
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=re+not+big+migrators+this+is+their+track+we+deployed+the+the+tag+off+of+tokyo+and+the+mola+in+one+month+kind+of+got+into+the+kuroshio+current+off+of+japan
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+foraged+there++and+after+four+months
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know++off+of+the+north+part+of+japan+and+that+s+kind+of+their+home+range+now+that+s+important+though+because+if+there+s+a+lot+of+fishing+pressure++that+population+doesn+t+get+replenished++so+that+s+a+very+important+piece+of+data
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+also+what+s+important+is+that
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+re+not+slacker+lazy+fish+they+re+super
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=super+industrious+and+this+is+a+day+in+the+life+of+a+mola+and+if+we
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+re+up+and+down+and+up+and+down+and+up+and+down+and+up+and+up+and+down+up+to+forty+times+a+day
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+the+sun+comes+up+you+see+in+the+blue++they+start+their+dive
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=down+and+as+the+sun+gets+brighter+they+go+a+little+deeper+little+deeper++they+plumb+the+depths+down+to+six+hundred+meters+in+temperatures+to+one+degree+centigrade
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+is+why+you+see+them+on+the+surface+it+s+so+cold+down+there++they+ve+got+to+come+up+warm
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+solar+power++and+then+plunge+back+into+the+depths+and+go+up+and+down+and+up+and+down+and+they+re+hitting+a+layer+down+there+it+s+called+the+deep+scattering+layer+which+a+whole
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=variety+of+food+s+in+that+layer+so
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=rather+than+just+being+some+sunbathing+slacker++they+re+really+very+industrious+fish+that+dance+this+wild+dance+between+the+surface+and+the+bottom+and+through
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=through+temperature+we+see+the+same
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=pattern+now+with+these+tags+we+re+seeing+a+similar+pattern+for+for+swordfishes+manta+rays+tunas
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+part+of+a+much+larger+program+called+the+census+of+marine+life+where+they+re+going+to+be+tagging+all+over+the+world
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+mola+s+going+to+enter+into+that+and+what+s+exciting+you+all+travel+and+you+know+the+best+thing+about+traveling+is+to+be+able+to+find+the+locals
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+to+find+the+great+places+by+getting+the+local+knowledge++well+now+with+the+census+of+marine+life+we+ll+be+able+to+sidle+up+to+all+the+locals+and+explore+ninety+percent+of+our+living+space
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+local+knowledge+it+s+never+it+s+really+never+been+a+more+exciting+or+a+vital+time+to+be+a+biologist
found 0 videos: []
error: no video is found.
sleep 4 seconds to avoid blocking
------<2211>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TimBernersLee_2009.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+actually+almost+twenty+years+ago
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+wanted+to+reframe+the+way+we+use+information+the+way+we+work+together+i+invented+the+world+wide+web+now+twenty
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+ask+your+help+in+a+new+reframing++so+going+back+to+one+thousand+nine+hundred+and+eighty+nine+i+wrote+a+memo
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=suggesting+the+global+hypertext+system+nobody+really+did+anything+with+it+pretty+much
found 1 videos: [['/talks/tim_berners_lee_the_next_web', '2009']]
selected: /talks/tim_berners_lee_the_next_web
sleep 5 seconds to avoid blocking
------<2212>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TimBernersLee_2010U.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=year+here+at+ted+i+asked+you+to+give+me+your+data+to+put+your+data+on+the+web+on+the+basis+that+if+people+put+data+onto+the+web
found 4 videos: [['/talks/tim_berners_lee_the_year_open_data_went_worldwide', '2010'], ['/talks/philip_rosedale_life_in_second_life', '2008'], ['/talks/beau_lotto_amy_o_toole_science_is_for_everyone_kids_included', '2012'], ['/talks/paul_sereno_digging_up_dinosaurs', '2009']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=government+data+scientific+data++community+data++whatever+it+is+it+will+be+used+by+other+people+to+do+wonderful+things+in+ways+that+they+never
found 2 videos: [['/talks/tim_berners_lee_the_year_open_data_went_worldwide', '2010'], ['/talks/elizabeth_pisani_sex_drugs_and_hiv_let_s_get_rational', '2010']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=imagined++so+today+i+m+back+just+to+show+you+a+few+things+to+show+you+in+fact+there+is+an+open+data
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=afoot+now+around+the+world+the+cry+of+raw+data+now+which+i+made+people+make+in+the+auditorium+was+heard+around+the+world+so+let+s
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=classic+story+the+first+one+which+lots+of+people+picked+up+was+when+in+march+on+march+10th+in+fact+soon+after+ted
found 1 videos: [['/talks/tim_berners_lee_the_year_open_data_went_worldwide', '2010']]
selected: /talks/tim_berners_lee_the_year_open_data_went_worldwide
sleep 1 seconds to avoid blocking
------<2213>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TimBernersLee_2014U.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=world+wide+web+is+celebrating+this+month+its+25th+anniversary++so
found 1 videos: [['/talks/tim_berners_lee_a_magna_carta_for_the_web', '2014']]
selected: /talks/tim_berners_lee_a_magna_carta_for_the_web
sleep 2 seconds to avoid blocking
------<2214>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TimBrown_2008P.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+guy+named+bob+mckim+he+was+a+creativity+researcher+in+the++60s+and++70s+and+also+led+the
found 1 videos: [['/talks/tim_brown_tales_of_creativity_and_play', '2008']]
selected: /talks/tim_brown_tales_of_creativity_and_play
sleep 3 seconds to avoid blocking
------<2215>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TimBrown_2009G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+little+bit+this+morning+about+what+happens+if+we+move+from+design
found 22 videos: [['/talks/david_kelley_human_centered_design', '2007'], ['/talks/tim_brown_designers_think_big', '2009'], ['/talks/paola_antonelli_design_and_the_elastic_mind', '2008'], ['/talks/aimee_mullins_my_12_pairs_of_legs', '2009'], ['/talks/sugata_mitra_kids_can_teach_themselves', '2008'], ['/talks/martin_seligman_the_new_era_of_positive_psychology', '2008'], ['/talks/bill_gross_a_solar_energy_system_that_tracks_the_sun', '2009'], ['/talks/r_a_mashelkar_breakthrough_designs_for_ultra_low_cost_products', '2010'], ['/talks/robin_chase_the_idea_behind_zipcar_and_what_comes_next', '2008'], ['/talks/tim_brown_tales_of_creativity_and_play', '2008'], ['/talks/david_macaulay_an_illustrated_journey_through_rome', '2008'], ['/talks/j_j_abrams_the_mystery_box', '2008'], ['/talks/paul_bennett_design_is_in_the_details', '2007'], ['/talks/charles_elachi_the_story_behind_the_mars_rovers', '2008'], ['/talks/steven_johnson_where_good_ideas_come_from', '2010'], ['/talks/nicholas_negroponte_one_laptop_per_child_two_years_on', '2008'], ['/talks/dan_ariely_are_we_in_control_of_our_own_decisions', '2009'], ['/talks/woody_norris_hypersonic_sound_and_other_inventions', '2009'], ['/talks/hector_ruiz_the_thinking_behind_50x15', '2008'], ['/talks/william_mcdonough_cradle_to_cradle_design', '2007'], ['/talks/nathan_myhrvold_archeology_animal_photography_bbq', '2008'], ['/talks/robert_neuwirth_the_hidden_world_of_shadow_cities', '2007']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+design+thinking++now+this+rather+old+photo+up+there+is+actually+the+first+project+i+was+ever+hired+to+do
found 1 videos: [['/talks/tim_brown_designers_think_big', '2009']]
selected: /talks/tim_brown_designers_think_big
sleep 1 seconds to avoid blocking
------<2216>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TimFerriss_2008P.stm
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+tell+by+the+power+squat+i+was+a+very+confident+boy+and+not+without+reason+i+had+a+very+charming+routine+at+the+time++which+was+to+wait+until+late+in+the+evening+when+my+parents+were+decompressing+from+a+hard+day+s+work
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=doing+their+crossword+puzzles+watching+television+i+would+run+into+the+living+room++jump+up+on+the+couch+rip+the+cushions+off+throw+them+on+the+floor+scream+at+the+top+of+my+lungs+and+run+out
found 1 videos: [['/talks/tim_ferriss_smash_fear_learn_anything', '2009']]
selected: /talks/tim_ferriss_smash_fear_learn_anything
sleep 5 seconds to avoid blocking
------<2217>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TimFerriss_2017.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+happy+pic+of+me+was+taken+in+one+thousand+nine+hundred+and+ninety+nine+i+was+a+senior+in+college+and+it+was+right+after+a+dance+practice++i+was+really+really+happy
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+remember+exactly+where+i+was+about+a+week+and
found 13 videos: [['/talks/fredros_okumu_why_i_study_the_most_dangerous_animal_on_earth_mosquitoes', '2018'], ['/talks/euna_lee_what_i_learned_as_a_prisoner_in_north_korea', '2017'], ['/talks/tim_ferriss_why_you_should_define_your_fears_instead_of_your_goals', '2017'], ['/talks/tasha_eurich_increase_your_self_awareness_with_one_simple_fix', '2017'], ['/talks/ivan_coyote_why_we_need_gender_neutral_bathrooms', '2016'], ['/talks/ok_go_how_to_find_a_wonderful_idea', '2017'], ['/talks/steven_wise_chimps_have_feelings_and_thoughts_they_should_also_have_rights', '2015'], ['/talks/worklife_with_adam_grant_the_daily_show_s_secret_to_creativity', '2018'], ['/talks/maisie_williams_why_talent_carries_you_further_than_fame', '2019'], ['/talks/serena_williams_and_gayle_king_on_tennis_love_and_motherhood', '2017'], ['/talks/laura_robinson_the_secrets_i_find_on_the_mysterious_ocean_floor', '2016'], ['/talks/elizabeth_white_an_honest_look_at_the_personal_finance_crisis', '2018'], ['/talks/hugh_evans_what_does_it_mean_to_be_a_citizen_of_the_world', '2016']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+sitting+in+the+back+of+my+used+minivan+in+a+campus+parking+lot++when+i+decided+i+was+going+to+commit+suicide
found 1 videos: [['/talks/tim_ferriss_why_you_should_define_your_fears_instead_of_your_goals', '2017']]
selected: /talks/tim_ferriss_why_you_should_define_your_fears_instead_of_your_goals
sleep 3 seconds to avoid blocking
------<2218>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TimHarford_2011G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+second+world+war+a+german+prison+camp+and
found 3 videos: [['/talks/tim_harford_trial_error_and_the_god_complex', '2011'], ['/talks/bryan_stevenson_we_need_to_talk_about_an_injustice', '2012'], ['/talks/carne_ross_an_independent_diplomat', '2010']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+man+archie+cochrane+is+a+prisoner+of+war+and+a
found 1 videos: [['/talks/tim_harford_trial_error_and_the_god_complex', '2011']]
selected: /talks/tim_harford_trial_error_and_the_god_complex
sleep 3 seconds to avoid blocking
------<2219>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TimHarford_2015G.stm
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=walked+out+onto+the+stage+of+the+cologne+opera+house
found 1 videos: [['/talks/tim_harford_how_frustration_can_make_us_more_creative', '2016']]
selected: /talks/tim_harford_how_frustration_can_make_us_more_creative
sleep 3 seconds to avoid blocking
------<2220>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TimJackson_2010G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+to+talk+to+you+today+about+prosperity+about+our+hopes+for+a+shared
found 4 videos: [['/talks/tim_jackson_an_economic_reality_check', '2010'], ['/talks/parag_khanna_mapping_the_future_of_countries', '2009'], ['/talks/simon_lewis_don_t_take_consciousness_for_granted', '2011'], ['/talks/geoff_mulgan_post_crash_investing_in_a_better_world', '2009']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+lasting+prosperity+and+not+just+us+but+the+two+billion+people+worldwide+who+are+still
found 1 videos: [['/talks/tim_jackson_an_economic_reality_check', '2010']]
selected: /talks/tim_jackson_an_economic_reality_check
sleep 5 seconds to avoid blocking
------<2221>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TimLeberecht_2012G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+losing+control+what+happens+on+wall+street+no+longer+stays+on+wall+street+what+happens+in+vegas+ends+up+on+youtube
found 1 videos: [['/talks/tim_leberecht_3_ways_to_usefully_lose_control_of_your_brand', '2012']]
selected: /talks/tim_leberecht_3_ways_to_usefully_lose_control_of_your_brand
sleep 3 seconds to avoid blocking
------<2222>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TimLeberecht_2016T.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+the+human+workforce+is+expected+to+be+replaced+by+software+and+robots+in+the+next+twenty+years
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+many+corporate+leaders+welcome+that+as+a+chance+to+increase+profits
found 1 videos: [['/talks/tim_leberecht_4_ways_to_build_a_human_company_in_the_age_of_machines', '2016']]
selected: /talks/tim_leberecht_4_ways_to_build_a_human_company_in_the_age_of_machines
sleep 4 seconds to avoid blocking
------<2223>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TimothyBartik_2012X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+this+talk+today+i+want+to+present+a+different+idea
found 13 videos: [['/talks/joi_ito_want_to_innovate_become_a_now_ist', '2014'], ['/talks/julian_treasure_how_to_speak_so_that_people_want_to_listen', '2014'], ['/talks/nancy_duarte_the_secret_structure_of_great_talks', '2012'], ['/talks/matt_killingsworth_want_to_be_happier_stay_in_the_moment', '2012'], ['/talks/aparna_rao_art_that_craves_your_attention', '2014'], ['/talks/steve_ramirez_and_xu_liu_a_mouse_a_laser_beam_a_manipulated_memory', '2013'], ['/talks/bruce_feiler_the_council_of_dads', '2011'], ['/talks/sebastian_seung_i_am_my_connectome', '2010'], ['/talks/timothy_bartik_the_economic_case_for_preschool', '2013'], ['/talks/stuart_firestein_the_pursuit_of_ignorance', '2013'], ['/talks/shawn_achor_the_happy_secret_to_better_work', '2012'], ['/talks/mick_mountz_what_happens_inside_those_massive_warehouses', '2012'], ['/talks/rajesh_rao_a_rosetta_stone_for_a_lost_language', '2011']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+why+investing+in+early+childhood+education
found 4 videos: [['/talks/timothy_bartik_the_economic_case_for_preschool', '2013'], ['/talks/sir_ken_robinson_how_to_escape_education_s_death_valley', '2013'], ['/talks/andreas_schleicher_use_data_to_build_better_schools', '2013'], ['/talks/majora_carter_3_stories_of_local_eco_entrepreneurship', '2010']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=makes+sense+as+a+public+investment+it+s+a+different+idea+because+usually+when+people+talk+about+early+childhood+programs+they+talk+about+all+the+wonderful
found 1 videos: [['/talks/timothy_bartik_the_economic_case_for_preschool', '2013']]
selected: /talks/timothy_bartik_the_economic_case_for_preschool
sleep 1 seconds to avoid blocking
------<2224>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TimothyIhrig_2013X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+am+a+palliative+care+physician+and+i+would+like+to+talk+to+you+today+about+health+care+i+d+like+to+talk+to+you+about+the+health+and+care
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=our+country+those+people+dealing+with
found 13 videos: [['/talks/anote_tong_my_country_will_be_underwater_soon_unless_we_work_together', '2015'], ['/talks/jonas_gahr_store_in_defense_of_dialogue', '2012'], ['/talks/charmian_gooch_meet_global_corruption_s_hidden_players', '2013'], ['/talks/simon_anholt_which_country_does_the_most_good_for_the_world', '2014'], ['/talks/andrew_solomon_depression_the_secret_we_share', '2013'], ['/talks/heather_brooke_my_battle_to_expose_government_corruption', '2012'], ['/talks/mary_robinson_why_climate_change_is_a_threat_to_human_rights', '2015'], ['/talks/bryan_stevenson_we_need_to_talk_about_an_injustice', '2012'], ['/talks/kate_orff_reviving_new_york_s_rivers_with_oysters', '2011'], ['/talks/hilary_cottam_social_services_are_broken_how_we_can_fix_them', '2015'], ['/talks/amber_case_we_are_all_cyborgs_now', '2011'], ['/talks/toby_eccles_invest_in_social_change', '2013'], ['/talks/noy_thrupkaew_human_trafficking_is_all_around_you_this_is_how_it_works', '2015']]
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=issues+i+d+like+to+talk+to+you+about+economics+as+well++and+the+intersection+of+these+two+should+scare+the+hell+out+of+you
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+scares+the+hell+out+of+me
found 12 videos: [['/talks/joe_kowan_how_i_beat_stage_fright', '2014'], ['/talks/shea_hembrey_how_i_became_100_artists', '2011'], ['/talks/steve_ramirez_and_xu_liu_a_mouse_a_laser_beam_a_manipulated_memory', '2013'], ['/talks/alanna_shaikh_how_i_m_preparing_to_get_alzheimer_s', '2012'], ['/talks/freeman_hrabowski_4_pillars_of_college_success_in_science', '2013'], ['/talks/isabel_allende_how_to_live_passionately_no_matter_your_age', '2014'], ['/talks/richard_turere_my_invention_that_made_peace_with_lions', '2013'], ['/talks/marco_tempest_and_for_my_next_trick_a_robot', '2014'], ['/talks/thomas_goetz_it_s_time_to_redesign_medical_data', '2011'], ['/talks/mark_applebaum_the_mad_scientist_of_music', '2012'], ['/talks/eric_dishman_health_care_should_be_a_team_sport', '2013'], ['/talks/stanley_mcchrystal_listen_learn_then_lead', '2011']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+d+also+like+to+talk+to+you+about+palliative+medicine
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+paradigm+of+care+for+this+population++grounded+in+what+they+value+patient+centric+care+based+on+their+values
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+helps+this+population+live+better+and+longer++it+s+a+care+model+that+tells+the+truth
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+engages+one+on+one+and+meets+people+where+they+re+at+i+d
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+to+start+by+telling+the+story+of+my+very+first+patient+it+was+my+first+day+as+a+physician
found 2 videos: [['/talks/francis_collins_we_need_better_drugs_now', '2013'], ['/talks/daniel_kraft_medicine_s_future_there_s_an_app_for_that', '2011']]
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+stumbled+into+the+hospital+and+right+away+there+s+a+gentleman+harold+sixty+eight+years+old+came+to+the+emergency+department+he+had+had+headaches+for+about+six+weeks+that+got+worse+and+worse+and+worse+and+worse+and+worse
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=evaluation+revealed+he+had+cancer+that+had+spread+to+his+brain+the+attending+physician
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=directed+me+to+go+share+with+harold+and+his+family
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+prognosis+and+options+of+care
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=five+hours+into+my+new+career++i+did+the+only+thing+i+knew+how
found 8 videos: [['/talks/pearl_arredondo_my_story_from_gangland_daughter_to_star_teacher', '2013'], ['/talks/diana_nyad_extreme_swimming_with_the_world_s_most_dangerous_jellyfish', '2012'], ['/talks/jarrett_j_krosoczka_how_a_boy_became_an_artist', '2013'], ['/talks/andres_lozano_parkinson_s_depression_and_the_switch_that_might_turn_them_off', '2013'], ['/talks/peter_singer_the_why_and_how_of_effective_altruism', '2013'], ['/talks/anne_marie_slaughter_can_we_all_have_it_all', '2014'], ['/talks/gary_haugen_the_hidden_reason_for_poverty_the_world_needs_to_address_now', '2015'], ['/talks/margaret_gould_stewart_how_giant_websites_design_for_you_and_a_billion_others_too', '2014']]
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=harold+went+fishing+the+next+day+he+died+a+week+later+as+i+ve+gone+through+my+training+in+my+career
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+back+to+harold+and+i+think+that+this+is+a+conversation
found 2 videos: [['/talks/mellody_hobson_color_blind_or_color_brave', '2014'], ['/talks/dave_isay_everyone_around_you_has_a_story_the_world_needs_to_hear', '2015']]
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+s+a+conversation+that+had+led+us+to+crisis
found 1 videos: [['/talks/peter_diamandis_abundance_is_our_future', '2012']]
selected: /talks/peter_diamandis_abundance_is_our_future
sleep 4 seconds to avoid blocking
------<2225>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TimothyPrestero_2012X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+got+a+great+idea+that+s+going+to+change+the+world++it+s+fantastic+it+s+going+to+blow+your+mind
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+my+beautiful+baby+here+s+the+thing++everybody+loves+a+beautiful+baby+i+mean+i+was+a+beautiful+baby
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=here+s+me+and+my+dad+a+couple+days+after+i+was+born++so+in+the+world+of+product+design+the+beautiful+baby+s+like+the+concept+car
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+the+knockout++you+see+it+and+you+go+oh+my+god+i+d+buy+that+in+a+second
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+why+is+it+that+this+year+s+new+cars+look+pretty+much+exactly+like+last+year+s+new+cars
found 3 videos: [['/talks/david_byrne_how_architecture_helped_music_evolve', '2010'], ['/talks/danny_hillis_back_to_the_future_of_1994', '2012'], ['/talks/morgan_spurlock_the_greatest_ted_talk_ever_sold', '2011']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+went+wrong+between+the+design+studio+and+the+factory+today++i+don+t+want+to+talk+about+beautiful+babies+i+want+to+talk+about+the+awkward+adolescence+of+design
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=dorky+teenage+years+where+you+re+trying+to+figure+out+how+the+world+works+i+m
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=going+to+start+with+an+example+from+some+work+that+we+did+on+newborn+health++so+here+s+a+problem++four+million+babies
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=around+the+world+mostly+in+developing+countries
found 9 videos: [['/talks/sheryl_wudunn_our_century_s_greatest_injustice', '2010'], ['/talks/timothy_prestero_design_for_people_not_awards', '2012'], ['/talks/joel_selanikio_the_big_data_revolution_in_health_care', '2013'], ['/talks/vinay_venkatraman_technology_crafts_for_the_digitally_underserved', '2012'], ['/talks/jamie_drummond_let_s_crowdsource_the_world_s_goals', '2012'], ['/talks/sheryl_sandberg_so_we_leaned_in_now_what', '2014'], ['/talks/mike_biddle_we_can_recycle_plastic', '2011'], ['/talks/richard_ledgett_the_nsa_responds_to_edward_snowden_s_ted_talk', '2014'], ['/talks/esther_duflo_social_experiments_to_fight_poverty', '2010']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=die+every+year+before+their+first+birthday+even+before+their+first+month+of+life++it+turns+out+half+of+those+kids+or+about+one+point+eight+million+newborns+around+the+world+would+make+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+could+just+keep+them+warm+for+the+first+three+days
found 12 videos: [['/talks/jonathan_haidt_how_common_threats_can_make_common_political_ground', '2013'], ['/talks/sonia_shah_3_reasons_we_still_haven_t_gotten_rid_of_malaria', '2013'], ['/talks/elizabeth_loftus_how_reliable_is_your_memory', '2013'], ['/talks/timothy_prestero_design_for_people_not_awards', '2012'], ['/talks/ken_kamler_medical_miracle_on_everest', '2010'], ['/talks/talithia_williams_own_your_body_s_data', '2014'], ['/talks/james_hansen_why_i_must_speak_out_about_climate_change', '2012'], ['/talks/thomas_hellum_the_world_s_most_boring_television_and_why_it_s_hilariously_addictive', '2014'], ['/talks/brene_brown_listening_to_shame', '2012'], ['/talks/stefan_wolff_the_path_to_ending_ethnic_conflicts', '2010'], ['/talks/billy_collins_everyday_moments_caught_in_time', '2012'], ['/talks/margaret_heffernan_the_dangers_of_willful_blindness', '2013']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=maybe+the+first+week++so+this+is+a+newborn+intensive+care+unit+in+kathmandu+nepal+all+of+these+kids+in+blankets+belong+in+incubators+something+like+this
found 1 videos: [['/talks/timothy_prestero_design_for_people_not_awards', '2012']]
selected: /talks/timothy_prestero_design_for_people_not_awards
sleep 2 seconds to avoid blocking
------<2226>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TimUrban_2016.stm
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+a+government+major++which+means+i+had+to+write+a+lot+of+papers++now+when+a+normal+student+writes+a+paper+they+might+spread+the+work+out+a+little+like+this+so+you+know+you
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=get+started+maybe+a+little+slowly+but+you+get+enough+done+in+the+first+week+that+with+some+heavier+days+later+on+everything+gets+done+things+stay+civil
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+would+want+to+do+that+like+that+that+would+be+the+plan
found 17 videos: [['/talks/oskar_eustis_why_theater_is_essential_to_democracy', '2018'], ['/talks/michelle_knox_talk_about_your_death_while_you_re_still_healthy', '2018'], ['/talks/ari_wallach_3_ways_to_plan_for_the_very_long_term', '2017'], ['/talks/chimamanda_ngozi_adichie_we_should_all_be_feminists', '2017'], ['/talks/g_t_bynum_a_republican_mayor_s_plan_to_replace_partisanship_with_policy', '2017'], ['/talks/tarana_burke_me_too_is_a_movement_not_a_moment', '2018'], ['/talks/lord_nicholas_stern_the_state_of_the_climate_and_what_we_might_do_about_it', '2014'], ['/talks/leila_takayama_what_s_it_like_to_be_a_robot', '2018'], ['/talks/joi_ito_want_to_innovate_become_a_now_ist', '2014'], ['/talks/david_korins_3_ways_to_create_a_space_that_moves_you_from_a_broadway_set_designer', '2018'], ['/talks/mia_birdsong_the_story_we_tell_about_poverty_isn_t_true', '2015'], ['/talks/naomi_mcdougall_jones_what_it_s_like_to_be_a_woman_in_hollywood', '2017'], ['/talks/dan_barasch_a_park_underneath_the_hustle_and_bustle_of_new_york_city', '2014'], ['/talks/theaster_gates_how_to_revive_a_neighborhood_with_imagination_beauty_and_art', '2015'], ['/talks/dan_pallotta_the_dream_we_haven_t_dared_to_dream', '2016'], ['/talks/janet_stovall_how_to_get_serious_about_diversity_and_inclusion_in_the_workplace', '2018'], ['/talks/linus_torvalds_the_mind_behind_linux', '2016']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+would+have+it+all+ready+to+go++but+then+then+actually+the+paper+would+come+along+and+then+i+would+kind+of+do+this
found 8 videos: [['/talks/tim_urban_inside_the_mind_of_a_master_procrastinator', '2016'], ['/talks/jim_simons_the_mathematician_who_cracked_wall_street', '2015'], ['/talks/colin_grant_how_our_stories_cross_over', '2014'], ['/talks/tom_griffiths_3_ways_to_make_better_decisions_by_thinking_like_a_computer', '2018'], ['/talks/martine_rothblatt_my_daughter_my_wife_our_robot_and_the_quest_for_immortality', '2015'], ['/talks/david_eagleman_can_we_create_new_senses_for_humans', '2015'], ['/talks/yuval_noah_harari_what_explains_the_rise_of_humans', '2015'], ['/talks/anjali_kumar_my_failed_mission_to_find_god_and_what_i_found_instead', '2018']]
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=spend+a+year+on+and+i+knew+for+a+paper+like+that+my+normal+work+flow+was+not+an+option+it+was+way+too+big+a+project++so+i+planned+things+out+and+i+decided+i+kind+of
found 1 videos: [['/talks/tim_urban_inside_the_mind_of_a_master_procrastinator', '2016']]
selected: /talks/tim_urban_inside_the_mind_of_a_master_procrastinator
sleep 4 seconds to avoid blocking
------<2227>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TiqMilanandKimMilan_2016W.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=our+first+conversation+was+on+facebook+and+it+was+three+days+long
found 16 videos: [['/talks/scott_galloway_how_amazon_apple_facebook_and_google_manipulate_our_emotions', '2017'], ['/talks/ozlem_cekic_why_i_have_coffee_with_people_who_send_me_hate_mail', '2018'], ['/talks/pico_iyer_the_art_of_stillness', '2014'], ['/talks/mel_robbins_how_to_stop_screwing_yourself_over', '2018'], ['/talks/esta_soler_how_we_turned_the_tide_on_domestic_violence_hint_the_polaroid_helped', '2014'], ['/talks/tiq_milan_and_kim_katrin_milan_a_queer_vision_of_love_and_marriage', '2016'], ['/talks/charmian_gooch_my_wish_to_launch_a_new_era_of_openness_in_business', '2014'], ['/talks/margaret_gould_stewart_how_giant_websites_design_for_you_and_a_billion_others_too', '2014'], ['/talks/jaron_lanier_how_we_need_to_remake_the_internet', '2018'], ['/talks/yuval_noah_harari_nationalism_vs_globalism_the_new_political_divide', '2017'], ['/talks/stuart_duncan_how_i_use_minecraft_to_help_kids_with_autism', '2018'], ['/talks/gretchen_carlson_david_brooks_political_common_ground_in_a_polarized_united_states', '2017'], ['/talks/madhumita_murgia_how_data_brokers_sell_your_identity', '2018'], ['/talks/adam_alter_why_our_screens_make_us_less_happy', '2017'], ['/talks/zeynep_tufekci_online_social_change_easy_to_organize_hard_to_win', '2015'], ['/talks/priya_vulchi_and_winona_guo_what_it_takes_to_be_racially_literate', '2018']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+shared+over+three+thousand+messages+between+us+and+it+was+during+those+seventy+two+hours+that+i+knew+she+was+going+to+be+my
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+didn+t+wait+any+prerequisite+amount+of+time+for+our+courtship+we+told+each+other+the+vulnerable+truths+up+front
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+am+a+transgender+man+which+means+the+f+on+my+birth+certificate+should+have+stood+for+false+instead+of+female
found 1 videos: [['/talks/tiq_milan_and_kim_katrin_milan_a_queer_vision_of_love_and_marriage', '2016']]
selected: /talks/tiq_milan_and_kim_katrin_milan_a_queer_vision_of_love_and_marriage
sleep 4 seconds to avoid blocking
------<2228>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TMorganDixonandVanessaGarrison_2017.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+in+the+tradition+of+our+families+the+great+oral+tradition+of+almost+every+black+church+we+know+honoring+the+culture+from+which+we+draw+so+much+power+we+re+gonna+start+the+way+our+mommas+and+grandmas+would+want+us+to+start+tmd+in+prayer++let+the+words+of+my
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+meditation+of+our+hearts+be+acceptable+in+thy+sight+oh+lord+my+strength+and+my+redeemer+vg
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+call+the+names+and+rituals+of+our+ancestors+into+this+room+today+because+from+them+we+received+a+powerful+blueprint+for+survival
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=strategies+and+tactics+for+healing+carried+across+oceans+by+african+women+passed+down+to+generations+of+black+women+in+america+who+used+those+skills+to+navigate+institutions+of+slavery+and
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=state+sponsored+discrimination+in+order+that+we+might+stand+on+this+stage++we+walk+in+the+footsteps+of+those+women+our+foremothers+legends+like+ella
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=baker+septima+clark+fannie+lou+hamer+from+whom+we+learned+the+power+of+organizing+after+she+would+had+single+handedly+registered+sixty+thousand+voters+in+jim+crow+mississippi+tmd
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+people+so+if+you+can+imagine
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=me+and+vanessa+inspiring+sixty+thousand+women+to+walk+with+us+last+year+we+were+fired+up
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+today+one+hundred+thousand+black+women+and+girls+stand+on+this+stage+with+us+we+are+committed+to+healing+ourselves+to+lacing+up+our+sneakers
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+walking+out+of+our+front+door+every+single+day+for+total+healing+and+transformation+in+our+communities+because+we+understand
found 1 videos: [['/talks/t_morgan_dixon_and_vanessa_garrison_the_trauma_of_systematic_racism_is_killing_black_women_a_first_step_toward_change', '2017']]
selected: /talks/t_morgan_dixon_and_vanessa_garrison_the_trauma_of_systematic_racism_is_killing_black_women_a_first_step_toward_change
sleep 3 seconds to avoid blocking
------<2229>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TobyEccles_2013G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+here+today+to+talk+about+social+change++not
found 2 videos: [['/talks/lauren_zalaznick_the_conscience_of_television', '2011'], ['/talks/ben_goldacre_battling_bad_science', '2011']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+new+therapy+or+a+new+intervention+or+a+new+way+of+working+with+kids+or+something+like+that+but+a+new+business+model+for+social+change+a+new+way+of+tackling+the+problem
found 1 videos: [['/talks/toby_eccles_invest_in_social_change', '2013']]
selected: /talks/toby_eccles_invest_in_social_change
sleep 5 seconds to avoid blocking
------<2230>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TobyShapshak_2013G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+me+start+by+asking+you+a+question+just+with+a+show+of+hands+who+has+an+iphone
found 2 videos: [['/talks/toby_shapshak_you_don_t_need_an_app_for_that', '2014'], ['/talks/john_wilbanks_let_s_pool_our_medical_data', '2012']]
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+has+a+blackberry++who+will+admit+in+public+to+having+a+blackberry
found 1 videos: [['/talks/toby_shapshak_you_don_t_need_an_app_for_that', '2014']]
selected: /talks/toby_shapshak_you_don_t_need_an_app_for_that
sleep 4 seconds to avoid blocking
------<2231>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ToddColeman_2015P.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=she+s+on+bed+rest+at+the+hospital+being+monitored+for+her+preterm+contractions
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=she+doesn+t+look+the+happiest
found 1 videos: [['/talks/ashton_applewhite_let_s_end_ageism', '2017']]
selected: /talks/ashton_applewhite_let_s_end_ageism
sleep 2 seconds to avoid blocking
------<2232>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ToddHumphreys_2012X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=something+happened+in+the+early+morning+hours+of+may+2nd+two+thousand
found 1 videos: [['/talks/todd_humphreys_how_to_fool_a_gps', '2012']]
selected: /talks/todd_humphreys_how_to_fool_a_gps
sleep 2 seconds to avoid blocking
------<2233>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ToddKuiken_2011G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+would+like+to+talk+with+you+about+bionics+which+is+the+popular+term+for+the+science+of+replacing+part+of+a+living+organism+with+a+mechatronic+device++or+a+robot
found 1 videos: [['/talks/todd_kuiken_a_prosthetic_arm_that_feels', '2011']]
selected: /talks/todd_kuiken_a_prosthetic_arm_that_feels
sleep 1 seconds to avoid blocking
------<2234>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ToddScott_2017S.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=got+a+chance+to+watch+the+new+star+wars+movie+which+was+fantastic++but+one+thing+kept+bugging+me+i+don+t+know+if+you+noticed+this+or+not+in+this+entirely+technically+advanced+world+i+did+not+see+a+single
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=aed+anywhere+which+was+totally+shocking+almost+as+shocking+as+not+knowing+what+an+aed+is+which+you+guys+do+know+but+for+those
found 1 videos: [['/talks/todd_scott_an_intergalactic_guide_to_using_a_defibrillator', '2017']]
selected: /talks/todd_scott_an_intergalactic_guide_to_using_a_defibrillator
sleep 1 seconds to avoid blocking
------<2235>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TodMachover_2008.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+first+idea+i+d+like+to+suggest+is+that+we+all+love+music+a+great+deal+it+means+a+lot+to+us++but+music+is+even+more+powerful
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+don+t+just+listen+to+it+but+you+make+it+yourself+so+that
found 1 videos: [['/talks/richard_dawkins_militant_atheism', '2007']]
selected: /talks/richard_dawkins_militant_atheism
sleep 1 seconds to avoid blocking
------<2236>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TomChatfield_2010G.stm
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+also+slightly+in+awe+of+them++i+m+in+awe+of+their+power+in+terms+of+imagination+in+terms+of+technology+in+terms+of+concept
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=their+power+to+motivate+to+compel+us
found 1 videos: [['/talks/tom_chatfield_7_ways_games_reward_the_brain', '2010']]
selected: /talks/tom_chatfield_7_ways_games_reward_the_brain
sleep 2 seconds to avoid blocking
------<2237>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TomHoney_2005.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+am+a+vicar+in+the+church+of+england++i+ve+been+a+priest+in+the+church+for+twenty+years
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+most+of+that+time++i+ve+been+struggling
error: request timeout
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+the+nature+of+god+who+is+god
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+m+very+aware+that+when+you+say+the+word+god+many+people+will+turn+off+immediately
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+outside+the+organized+church+still+have+a+picture+of
found 1 videos: [['/talks/tom_honey_why_would_god_create_a_tsunami', '2007']]
selected: /talks/tom_honey_why_would_god_create_a_tsunami
sleep 5 seconds to avoid blocking
------<2238>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TomHulme_2016U.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+we+re+designing+new+products+services+or+businesses+the+only+time+you+ll+know+if+they+re+any+good+if+the+designs+are+good
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+to+see+how+they+re+used
found 11 videos: [['/talks/tiffany_kagure_mugo_and_siphumeze_khundayi_how_to_have_a_healthier_positive_relationship_to_sex', '2018'], ['/talks/norman_spack_how_i_help_transgender_teens_become_who_they_want_to_be', '2014'], ['/talks/sophie_scott_why_we_should_take_laughter_more_seriously', '2018'], ['/talks/ramanan_laxminarayan_the_coming_crisis_in_antibiotics', '2014'], ['/talks/peter_weinstock_lifelike_simulations_that_make_real_life_surgery_safer', '2017'], ['/talks/moshe_szyf_how_early_life_experience_is_written_into_dna', '2017'], ['/talks/gautam_bhan_a_bold_plan_to_house_100_million_people', '2017'], ['/talks/angelo_vermeulen_how_to_go_to_space_without_having_to_go_to_space', '2015'], ['/talks/michael_murphy_architecture_that_s_built_to_heal', '2016'], ['/talks/josh_luber_why_sneakers_are_a_great_investment', '2015'], ['/talks/alice_goffman_how_we_re_priming_some_kids_for_college_and_others_for_prison', '2015']]
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+reminded+of+that+every+time+i+walk+past+highbury+fields+in+north+london+it
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+absolutely+beautiful+there+s+a+big+open+green+space+there+s+georgian+buildings+around+the+side
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+then+there+s+this+mud+trap+that+cuts+across+the+middle
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+clearly+don+t+want+to+walk+all+the+way+around+the+edge++instead+they+want+to+take+the+shortcut++and+that+shortcut+is
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+shortcut+is+called+a+desire+path
found 1 videos: [['/talks/tom_hulme_what_can_we_learn_from_shortcuts', '2016']]
selected: /talks/tom_hulme_what_can_we_learn_from_shortcuts
sleep 5 seconds to avoid blocking
------<2239>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TomRielly_2006.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=last+few+years+i+ve+been+had+the+opportunity+to+do+this+closing+conference
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+eight+years+ago++billy+graham
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=opened+for+me+and+i+thought+that+there+was+i+thought+that+there+was+absolutely+no+way
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+hell+to+top+that+but+i+just+wanted+to+say
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+mean+this+without+irony+i+think+i+can+speak+for+everybody+in+the+audience+when
found 1 videos: [['/talks/tom_rielly_a_comic_sendup_of_ted2006', '2007']]
selected: /talks/tom_rielly_a_comic_sendup_of_ted2006
sleep 4 seconds to avoid blocking
------<2240>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TomShannon_2003.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+sculpture+i+made+which+is
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+way+of+kind+of+freeing+a+form+into+an+object+that+has+different+degrees+of+freedom
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+a+bronze+ball+an+aluminum
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=arm+here+and+then+this+wooden+disk+and+the+wooden+disk+was+really
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thought+about+as+something+that+you+d+want+to+hold+on+to+and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+would+glide+easily+through+your+hands
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+aluminum+is+because+it+s+very+light+the+bronze+is+nice+hard++durable+material+that+could+roll+on+the+ground
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=inside+of+the+bronze+ball+there+s+a+lead+weight+that
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+two+bearings+that+pass+in+between++across+it+like+this+that+counterbalance
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+this+weight+so+it+it+allows+it+to
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+roll+and+the+sphere+has+that+balance+property+that+it+always
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+always+sort+of+stays+still+and+looks
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+same+from+every+direction+but
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+put+something+on+top+of+it+it+disbalances+it+and+so+it+would+tip+over+but+in+this+case+because
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+interior+is+free+swinging+in+relation+to+the+sphere++it+can+stand+up+on+one+point++and+then+there+was+a
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+proportions+that+i+was+interested+in+which+is+the+diameter+of+the+moon+and+the+diameter+of+the+earth
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+proportion+in+proportion+to+each+other
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+exploring+really+early+on+wanting+to+make+things+float+in+the+air+and+i+thought+up+a
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=lot+of+ideas++this+is+sculpture+that+i+made+that
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thing+is+is+that+it+s+slightly+dangerous+normally+it+s+sort+of+cordoned+off+when+it+s+in+a+museum
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+it+s+uh+let+s+see+if+i+can+manipulate+it+a+little+bit+without+um
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+this+is+just+floating++floating+on+a+permanent+magnetic+field++which+stabilizes+it
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+all+directions+except+there+is+a+slight+tether+here
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=going+over+the+top+of+its+field+it+s+sort+of+surfing
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+a+magnetic+field+at+the+crest+of+a+wave++and+that+s+what+supports+the+object+and+keeps+it+stable
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+we+could+roll+the+tape+admin++i+have+a+sort+of+a+collection+of+videos
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+i+took+of+different+installations+which+i+could+narrate+this+is+a+sculpture+of+the+sun
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+earth+in+proportion++representing+that+eight+and+a+half+minutes+that+it+takes+light+and+gravity+to+connect+the+two
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+here+is+the+earth+it+s+a+little+less+than+a+millimeter
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+was+turned+of+solid+bronze
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+here+is+a+similar+sculpture+that+s+the+sun+at+that+end++and+then+in+a+series+of+fifty+five+balls+it+reduces+proportionately
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ball+and+the+spaces+between+them+reduce+proportionately++until+they+get+down+to+this+little+earth++this+is+in+a
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+moon+and+then+the+distance+to+the+earth+in+proportion
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=also+this+is+a+little+stone+ball++floating+as+you+can+see+the+little+tether+that+it+s+also+magnetically+levitated
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+first+part+of+this+is+one+hundred+and+nine+spheres++since+the+sun+is+one+hundred+and+nine+times+the+diameter+of+the+earth++and+so+this+is+the+size+of+the
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+each+of+these+little+spheres
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+the+size+of+the+earth+in+proportion+to+the+sun
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+made+up+of+sixteen+concentric+shells+each+one+has+ninety+two+spheres+this+is+in+the+courtyard+of+a+twelfth+century+alchemist++i+was+thinking+that+the+sun+is+kind+of+the+ultimate+alchemist
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=subject+a+slice+from+the+equator+of+the+earth++and+then+the+moon+in+the+center
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+s+floating+and+this+is+in+france
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+balancing+on+a+shaft+and+a+ball++right+at+the+center+of+gravity+or+just+slightly+above+the+center+of+gravity+which
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+lower+half+of+the+object+is
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=just+a+little+bit+more+weighty+so+you+can+see+it+rotating+here++it+weighs+about+a+ton+or+over+a+ton+it+s+made+of+stainless+steel+quite+thick++but+it+s+being+balanced+like+that+in
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+susceptible+to+motion+by+the+air+currents
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+another+species+of+work+that+i+do+these+are+these+arrays+these+spheres+are+all+suspended+but+they+have+magnets+horizontally+in+them
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+make+them+all+like+compasses+so+all+the+red+sides+for+example+face+one+direction+south+and+the+blue+side+the+compliment
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=faces+the+other+way+so+as+you+turn+around+you+re+seeing+different+colors
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=structure+of+a+diamond+it+was+a+diamond+cell+structure+was+the+point+of+departure+and+then+there+were+kind+of+large+spaces+in+the+hollows
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=between+the+atoms+and+so+i+placed+one+more+element+of+each+one+of+them+these+were+white+spheres++then+i+had+video+projectors
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+were+projecting+intermittently+onto+the+spheres+so+they+would+catch
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=make+sort+of++three+dimensional+color+volumes+as+you+walk+through+it+through+the+object
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+something+i+did+of
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+tactile+communication+system+it+was+the+idea+of+isolating+the+tactile+component+of+sculpture+and+then+putting+it+into+a+communication
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=an+idea+of+moving+a+sculpture+a+ball++that+would+be+directed+around+the+room+by+a+computer
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+a+clock+i+designed+it+has+buckminster+fuller+s+dymaxion+map+edited+here+it+turns+once+per+day
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then++this+is+like+projects+that
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+a+floating+island+with+water++fresh+water+that+can+fly+from+place+to+place+this+would+be+grown+i+suppose+with+nanotechnology+in+the+future
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sometime+in+the+course+of+doing
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+sort+of+have+a+broad+range+of+interests
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+some+of+it+is+just+the+idea+of+creating+media
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=something+that+would+keep+the+sculpture+fresh+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ever+changing+by+just+creating+the+media+that+the+sculpture+is+made+of
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=always+interested+in+the+concept+of+a+crystal+ball+and+the+idea
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+you+could+see+things+inside+of+a+crystal+ball+and+predict+the+future
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+a+television+set+where+it+s+sort+of+like+a+magic+box+where+anything+can+appear++i
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=had+thought+about+a+long+time+ago++in+the+late++60s+when+i+was+just+starting+out+i+was
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=under+the+influence+of+thinking+about+buckminster+fuller+s+grand+project+for+an+electric+globe+across+from+the+united+nations+and
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=happening+the+space+program+at+that+time+and+whole+earth+catalog+things+like+that+i+was+thinking+about
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=mass+produced+spherical+television+sets+that+could+be+linked+to+orbiting+camera+satellites++so
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+we+could+roll+the+next+film+here++this+has+evolved+over+the+years+in+a+lot+of+different+iterations+but+this+the+the+current+version+of+it+is
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+a+flying+airship+that+is+about+thirty+five+meters+in+diameter+about+one+hundred+and+ten+feet
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+diameter++the+whole+surface+of+it+is+covered+with+sixty+million+diodes+red+blue+and+green+that+allow+you+to+have
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+high+resolution+picture+visible+in+daylight++i+came+with+a+plan+i+brought+it+to+paul+maccready
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+do+a+feasibility+study+and+they+analyzed+it+and+came+up+with+a+lot+of+innovative+ideas+about+how+to+propel+it+so+we+have+a+physical+plan+of+how+to+make+this+actually+happen
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+the+control+room+inside+of
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+ship+the+idea+of+this+air+genie+is+it+s+something+that+can+just+transform+and+become+anything+it+s+like+a+traveling+show
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+has+speakers+on+it+and+it+has+cameras
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+it++so+it+can+see+its+environment+and+then+it+can+mimic+its+environment+and+disappear++here+the+legs+are+retracting++the+cabin
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+open+or+closed+as+you+like+it+weighs+about+twenty+tons++it+has+on+board+generators+it+can+generate+about+a+million+kilowatts
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=bright+enough+to+be+visible+in+daylight++the+idea+of+it+is+to+make+a+kind+of+a+traveling+show+it+really+would+be+dedicated+to
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+the+arts+and+to+interacting
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+would+be+on+board+a+crew+of+artists+musicians+that+would+allow+the+thing+to+become+actually+kind+of+a+conscious+object+that+would+respond+to+the+moment+and+to+interact+as+an+entity+that
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+completely+silent+and+nonpolluting+it+has+electric+motors+with+a+novel+propulsion+system++it+could+be+interacted+with+large+crowds+in
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=different+ways+primarily+i+would+be+interested+in+how+it+would+interact+with+say++going+to+a+college+campus+and+then+being+used+as+a+way+of+talking+about+the+earth+sciences
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+world+the+situation+of+the+globe++the+default+image+on
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=image++but+then+one+could+interact+with+that+and+show+plate+tectonics+or+global+warming+issues+or+migrations+all+of+the+things+that+we+re+concerned+with+today
found 0 videos: []
sleep 1 seconds to avoid blocking
error: no video is found.
sleep 1 seconds to avoid blocking
------<2241>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TomShannon_2009S.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=start+with+a+question+that+has+just+been
found 1 videos: [['/talks/tim_brown_designers_think_big', '2009']]
selected: /talks/tim_brown_designers_think_big
sleep 5 seconds to avoid blocking
------<2242>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TomThum_2013X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+come+here+today+to+come+clean+about+what+i+do+for+money
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=basically+i+use+my+mouth+in+strange+ways+in+exchange+for
found 1 videos: [['/talks/tom_thum_the_orchestra_in_my_mouth', '2013']]
selected: /talks/tom_thum_the_orchestra_in_my_mouth
sleep 3 seconds to avoid blocking
------<2243>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TomUglow_2015X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+asking+you+all+to+go+to+your+happy+place+please+yes+your+happy+place+i+know+you+ve+got+one+even+if+it+s+fake
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=any+plastic+tables++polyester+flooring
found 1 videos: [['/talks/tea_uglow_an_internet_without_screens_might_look_like_this', '2015']]
selected: /talks/tea_uglow_an_internet_without_screens_might_look_like_this
sleep 2 seconds to avoid blocking
------<2244>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TomWujec_2009G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=many+of+us+assume+that+these+advances+make+us+more+intelligent+make+us+smarter+and+more+connected+to+the+world++and+what+i+d+like+to+argue+is+that+that+s+not+necessarily+the+case+as+progress+is+simply+a+word+for+change
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+with+change+you+gain+something++but+you+also+lose+something+and+to+really+illustrate+this+point+what+i+d+like+to+do+is+to+show+you+how+technology+has+dealt+with
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+very+simple+a+very+common+an+everyday+question+and+that+question+is+this
found 5 videos: [['/talks/geoff_mulgan_post_crash_investing_in_a_better_world', '2009'], ['/talks/dan_gilbert_why_we_make_bad_decisions', '2008'], ['/talks/david_rockwell_a_memorial_at_ground_zero', '2007'], ['/talks/tom_wujec_learn_to_use_the_13th_century_astrolabe', '2009'], ['/talks/liz_diller_the_blur_building_and_other_tech_empowered_architecture', '2008']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+time+is+it++what+time+is+it++if+you+glance+at+your+iphone
found 1 videos: [['/talks/tom_wujec_learn_to_use_the_13th_century_astrolabe', '2009']]
selected: /talks/tom_wujec_learn_to_use_the_13th_century_astrolabe
sleep 3 seconds to avoid blocking
------<2245>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TomWujec_2009GU.stm
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+advances+many+of+us+assume+that+these+advances+make+us+more+intelligent+make+us+smarter+and+more+connected+to+the+world+and+what+i+d+like+to+argue+is+that+that+s+not+necessarily+the+case
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=case+as+progress+is+simply+a+word+for+change+and+with+change+you+gain+something+but+you+also+lose+something+and+to+really+illustrate+this+point+what+i+d+like+to+do+is+to+show+you+how+technology+has+dealt+with
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+very+simple+a+very+common+an+everyday+question+and+that+question+is+this
found 5 videos: [['/talks/geoff_mulgan_post_crash_investing_in_a_better_world', '2009'], ['/talks/dan_gilbert_why_we_make_bad_decisions', '2008'], ['/talks/david_rockwell_a_memorial_at_ground_zero', '2007'], ['/talks/tom_wujec_learn_to_use_the_13th_century_astrolabe', '2009'], ['/talks/liz_diller_the_blur_building_and_other_tech_empowered_architecture', '2008']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+time+is+it+what+time+is+it+if+you+glance+at+your+iphone+it+s+so+simple+to+tell+the+time
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+d+like+to+ask+you+how+would+you+tell+the+time+if+you+didn+t+have+an+iphone+how+would+you+tell+the+time+say+six+hundred+years+ago+how+would+you+do+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+the+way+you+would+do+it+is+by+using+a+device+that+s+called+an+astrolabe
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+an+astrolabe+is+relatively+unknown+in+today+s+world+but+at+the+time+in+the+thirteenth+century+it+was+the+gadget+of+the+day
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+the+world+s+first+popular+computer+and+it+was+a+device+that+in+fact+is+a+model+of+the+sky
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+the+different+parts+of+the+astrolabe+in+this+particular+type+the+rete+corresponds+to+the+positions+of+the+stars+the+plate+corresponds+to+a+a+coordinate+system+and+the+mater+has+some+scales+and+puts+it+all+together
found 1 videos: [['/talks/tom_wujec_learn_to_use_the_13th_century_astrolabe', '2009']]
selected: /talks/tom_wujec_learn_to_use_the_13th_century_astrolabe
sleep 3 seconds to avoid blocking
------<2246>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TomWujec_2009U.stm
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=aimed+to+try+to+clarify+the+overwhelming+complexity+and+richness+that+we+experience+at+the+conference+in+a+project+called+big+viz+and+the+big+viz+is
found 1 videos: [['/talks/tom_wujec_3_ways_the_brain_creates_meaning', '2009']]
selected: /talks/tom_wujec_3_ways_the_brain_creates_meaning
sleep 5 seconds to avoid blocking
------<2247>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TomWujec_2013G.stm
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=stumbled+across+a+simple+design+exercise+that+helps+people+understand+and+solve+complex+problems+and+like+many+of+these+design+exercises+it+kind+of+seems+trivial+at+first
found 1 videos: [['/talks/tom_wujec_got_a_wicked_problem_first_tell_me_how_you_make_toast', '2015']]
selected: /talks/tom_wujec_got_a_wicked_problem_first_tell_me_how_you_make_toast
sleep 4 seconds to avoid blocking
------<2248>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ToniGriffin_2013Z.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=detroit+had+become+the+poster+child+for+an+american+city+in+crisis++there+was+a+housing+collapse+an+auto+industry+collapse
found 1 videos: [['/talks/toni_griffin_a_new_vision_for_rebuilding_detroit', '2013']]
selected: /talks/toni_griffin_a_new_vision_for_rebuilding_detroit
sleep 1 seconds to avoid blocking
------<2249>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TonyFadell_2015.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+a+scene+where+john+belushi
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=goes+to+visit+dan+aykroyd+in+his+apartment+in+chicago+for+the+very+first+time++it+s+a+cramped+tiny+space
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+s+just+three+feet+away+from+the+train+tracks
found 2 videos: [['/talks/nancy_frates_meet_the_mom_who_started_the_ice_bucket_challenge', '2014'], ['/talks/elon_musk_the_future_we_re_building_and_boring', '2017']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+john+sits+on+dan+s+bed+a+train+goes+rushing+by++rattling+everything+in+the+room+john+asks+how+often+does+that+train+go+by
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=dan+replies+so+often+you+won+t+even+notice+it+and+then+something+falls+off+the+wall
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+all+know+what+he+s+talking+about+as+human+beings+we+get+used+to+everyday+things+really+fast
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+a+product+designer+it+s+my+job+to+see+those+everyday+things+to+feel+them++and+try+to+improve+upon+them
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+example+see+this+piece+of+fruit
found 11 videos: [['/talks/tony_fadell_the_first_secret_of_design_is_noticing', '2015'], ['/talks/deborah_gordon_what_ants_teach_us_about_the_brain_cancer_and_the_internet', '2014'], ['/talks/erik_brynjolfsson_the_key_to_growth_race_with_the_machines', '2013'], ['/talks/shubhendu_sharma_how_to_grow_a_forest_in_your_backyard', '2016'], ['/talks/neri_oxman_design_at_the_intersection_of_technology_and_biology', '2015'], ['/talks/shubhendu_sharma_an_engineer_s_vision_for_tiny_forests_everywhere', '2014'], ['/talks/dan_ariely_what_makes_us_feel_good_about_our_work', '2013'], ['/talks/toni_griffin_a_new_vision_for_rebuilding_detroit', '2013'], ['/talks/washington_wachira_for_the_love_of_birds', '2017'], ['/talks/angela_wang_how_china_is_changing_the_future_of_shopping', '2017'], ['/talks/yuval_noah_harari_nationalism_vs_globalism_the_new_political_divide', '2017']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=see+this+little+sticker++that+sticker+wasn+t+there+when+i+was+a+kid
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+somewhere+as+the+years+passed+someone+had+the+bright+idea+to+put+that+sticker+on+the+fruit
found 1 videos: [['/talks/tony_fadell_the_first_secret_of_design_is_noticing', '2015']]
selected: /talks/tony_fadell_the_first_secret_of_design_is_noticing
sleep 1 seconds to avoid blocking
------<2250>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TonyPorter_2010W.stm
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=growing+up+as+a+boy+we+were+taught+that+men+had+to+be+tough+had+to+be+strong+had+to+be+courageous+dominating+no+pain
found 1 videos: [['/talks/tony_porter_a_call_to_men', '2010']]
selected: /talks/tony_porter_a_call_to_men
sleep 4 seconds to avoid blocking
------<2251>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TonyRobbins_2006.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=tell+you+i+m+both+challenged+and+excited++my+excitement+is+i+get
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+chance+to+give+something+back+my+challenge+is+the+shortest+seminar+i+usually+do+is+fifty+hours
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+not+exaggerating+i+do+weekends+i+do+more+obviously+i+also+coach+people+but+i+m+into+immersion+because+how+did+you+learn+language
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+just+by+learning+principles+you+got+in+it+and+you+did+it+so+often+that+it+became+real+the+bottom+line+of+why+i+m+here+besides+being+a+crazy+mofo+is+that+i
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+here+to+motivate+you+you+don+t+need+that+obviously+often+that+s+what+people+think+i+do+and+it+s+the+furthest+thing+from+it+what+happens+though+is+people+say
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=know+why+you+do+what+you+do+what+is+your+motive+for+action
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+is+it+that+drives+you+in+your+life+today+not+ten+years+ago+are+you+running+the+same+pattern++because+i+believe+that+the+invisible+force+of+internal+drive
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=activated+is+the+most+important+thing+i+m+here+because+i+believe+emotion+is+the+force+of+life
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+all+know+how+to+think+with+our+minds+we+can+rationalize+anything+we+can+make+anything+happen++i+agree+with+what+was+described+a+few+days+ago+that+people+work+in+their+self+interest+but+we+know+that+that+s+bullshit+at+times
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+don+t+work+in+your+self+interest+all+the+time
found 3 videos: [['/talks/jacqueline_novogratz_patient_capitalism', '2007'], ['/talks/robert_full_the_sticky_wonder_of_gecko_feet', '2007'], ['/talks/martin_rees_is_this_our_final_century', '2007']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+when+emotion+comes+into+it+the+wiring+changes+in+the+way+it+functions
found 1 videos: [['/talks/vs_ramachandran_3_clues_to_understanding_your_brain', '2007']]
selected: /talks/vs_ramachandran_3_clues_to_understanding_your_brain
sleep 3 seconds to avoid blocking
------<2252>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TonyWyssCoray_2015G.stm
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=from+the++16th+century+from+lucas+cranach+the+elder
found 1 videos: [['/talks/tony_wyss_coray_how_young_blood_might_help_reverse_aging_yes_really', '2015']]
selected: /talks/tony_wyss_coray_how_young_blood_might_help_reverse_aging_yes_really
sleep 5 seconds to avoid blocking
------<2253>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TopherWhite_2014X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+visited+the+rainforests+of+borneo+for+the+very+first+time
found 1 videos: [['/talks/topher_white_what_can_save_the_rainforest_your_used_cell_phone', '2015']]
selected: /talks/topher_white_what_can_save_the_rainforest_your_used_cell_phone
sleep 2 seconds to avoid blocking
------<2254>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TorstenReil_2003.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+talk+about+a+technology+that+we+re+developing+at+oxford+now+that+we+think+is+going+to+change+the+way
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+computer+games+and+hollywood+movies+are+being+made+that+technology+is+simulating+humans+it+s+simulated+humans
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+a+simulated+nervous+system+to+control+that+body++now+before+i+talk+more+about+that+technology+let+s+have+a+quick+look+at+what
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=human+characters+look+like+at+the+moment+in+computer+games
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+a+clip+from+a+game+called+grand+theft+auto+three+we+already+saw+that+briefly+yesterday++and+what+you+can+see+is
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+is+actually+a+very+good+game+it+s+one+of+the+most+successful+games+of
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=time+but+what+you+ll+see+is+that+all+the+animations+in+this+game
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+very+repetitive+they+pretty+much+look+the+same+i+ve+made+him+run+into+a+wall+here+over+and+over+again
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+can+see+he+looks+always+the+same++the+reason+for+that+is
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+these+characters+are+actually+not+real+characters+they+are+a
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=graphical+visualization+of+a+character+to+produce+these+animations+an+animator+at+a+studio+has
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+actual+game++and+then+has+to+animate+that+particular+sequence+so+he+or+she+sits+down
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=animates+it+and+tries+to+anticipate+what+s+going+to+happen++and+then+these+particular+animations+are+just+played+back+at+appropriate+times
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+computer+game++now++the+result+of+that+is+that+you+can+t+have+real+interactivity+all+you+have+is+animations+that+are+played+back+at
error: request timeout
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+appropriate+times++it+also+means+that+games
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=aren+t+really+going+to+be+as+surprising+as+they+could+be+because+you+only+get+out+of+it+at+least+in+terms+of+the+character+what+you+actually+put+into+it+there+s+no+real+emergence+there++and+thirdly+as+i+said++most+of+the+animations
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+very+repetitive+because+of+that+now++the+only+way+to+get+around
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+is+to+actually+simulate+the+human+body+and+to+simulate
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+bit+of+the+nervous+system+of+the+brain+that+controls+that+body+and+maybe+if+i+could+have+you+for+a+quick+demonstration+to+show+what+the+difference+is
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+very+very+trivial++if+i+push+chris+a+bit+like+this+for+example+he+ll+react+to+it+if+i+push+him+from+a+different+angle+he
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ll+react+to+it+differently+and+that+s+because+he+has+a+physical+body+and+because+he+has
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+motor+skills+to+control+that+body+it+s+a+very+trivial+thing+it+s+not+something+you+get+in+computer+games+at+the+moment+at+all+thank+you+very+much+chris+anderson+that+s+it+torsten+reil+that+s+it+yes+so
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+what+we+re+trying+to+simulate
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+chris+specifically+i+should+say+but
error: request timeout
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now++we+started+working+on+this+a+while+ago+at+oxford+university+and+we+tried+to+start+very+simply+what+we+tried+to+do+was+teach+a+stick+figure+how+to+walk
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+stick+figure+is+physically+stimulated+you+can+see+it+here+on+the+screen+so
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+subject+to+gravity+has+joints+etc++if+you+just+run+the+simulation+it+will+just+collapse+like+this
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+tricky+bit+is+now+to+put+an+ai+controller+in+it+that+actually+makes+it+work+and+for+that+we+use+the+neural+network+which+we+based+on
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+part+of+the+nervous+system+that+we+have+in+our+spine
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+controls+walking+in+humans+it+s+called+the+central+pattern+generator++so+we+simulated+that+as+well++and+then+the+really+tricky+bit+is+to+teach+that+network+how+to+walk
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+that+we+used+artificial+evolution
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=genetic+algorithms+we+heard+about+those+already+yesterday+and+i+suppose+that+most+of+you+are+familiar+with+that+already+but+just+briefly+the+concept+is+is+that+you+create
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+large+number+of+different+individuals+neural+networks+in+this+case+all+of+which+are+random+at+the+beginning++you+hook+these+up+in+this+case+to+the+virtual+muscles
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=creature+here+and+hope+that+it+does+something+interesting+at+the+beginning+they+re+all+going+to+be
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=very+boring+most+of+them+won+t+move+at+all+but+some+of+them+might+make+a+tiny+step+those+are+then+selected+by+the+algorithm+reproduced+with+mutation+and
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=recombinations+to+introduce+sex+as+well++and+you+repeat+that+process+over+and+over+again+until+you+have+something+that+walks+in+this+case+in+a+straight+line+like+this+so+that+was+the+idea+behind+this+when+we+started+this+i+set+up+the+simulation
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+evening+it+took+about+three+to
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hours+to+run+the+simulation+i+got+up+the+next+morning+went+to+the+computer
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+looked+at+the+results+and+was+hoping+for+something+that+walked+in+a+straight+line+like+i+ve+just+demonstrated
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+is+what+i+got+instead
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=back+to+the+drawing+board+for+us
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+did+get+it+to+work+eventually
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=after+tweaking+a+bit+here+and+there++and+this+is+an+example+of+a+successful+evolutionary+run+so+what+you+ll+see+in+a+moment+is
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+very+simple+biped+that+s+learning+how+to+walk+using+artificial+evolution+at+the+beginning+it+can+t+walk+at+all
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+it+will+get+better+and+better+over+time
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+this+is+the+one+that+can+t+walk+at+all
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+after+five+generations+of+applying+evolutionary+process+the+genetic+algorithm
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+getting+a+tiny+bit+better
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+now+after+generation+twenty+it+actually+walks+in+a+straight+line+without+falling+over
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+was+the+real+breakthrough+for+us
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+academically+quite+a+challenging+project+and+once+we+had+reached+that+stage+we+were+quite+confident+that+we+could
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=try+and+do+other+things+as+well+with+with+this+approach+actually+simulating+the+body+and+simulating+that+part+of+the+nervous
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now++at+this+stage+it+also+became+clear+that+this+could+be+very+exciting+for+things+like+computer+games+or+online+worlds+++what+you+see+here+is+the+character+standing+there+and+there+s+an+obstacle+that+we+put+in+its+way
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+what+you+see+is+it+s+going+to+fall+over+the+obstacle+now++the+interesting+bit+is+if+i+move+the+obstacle+a+tiny+bit+to+the+right+which+is+what+i+m+doing+now+here
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+again+if+you+move+the+obstacle+a+tiny+bit+it+ll+again+fall+differently
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+what+you+see+by+the+way+at+the+top+there+are+some+of+the+neural+activations+being+fed+into+the+virtual+muscles+okay+that+s+the+video+thanks
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+this+might+look+kind+of+trivial+but+it+s+actually+very+important+because+this+is+not+something+you+get+at+the+moment+in+any+interactive+or+any+virtual+worlds
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+at+this+stage++we+decided+to+start+a+company+and+move+this+further+because+obviously+this+was+just+a+very+simple+blocky+biped++what+we+really+wanted+was+a+full+human+body+so+we+started+the+company
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+hired+a+team+of+physicists+software+engineers+and+biologists+to+work+on+this+and+the+first+thing+we+had+to+work+on+was+to+create
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+got+to+be+relatively+fast+so+you+can+run+it+on+a+normal+machine+but+it+s+got+to+be+accurate+enough+so+it+looks+good+enough+basically++so+we+put+quite+a+bit+of+biomechanical+knowledge+into+this+thing
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+tried+to+make+it+as+realistic+as+possible++what+you+see+here+on+the+screen+right+now++is+a+very+simple+visualization+of+that+body
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+should+add+that+it+s+very+simple+to+add+things+like+hair+clothes+etc+but+what+we+ve+done+here+is+use+a+very+simple+simple+visualization+so+you+can+concentrate+on+the+movement
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+what+i+m+going+to+do+right+now+in+a+moment+is+just+push+this+character+a+tiny+bit+and+we+ll+see+what+happens
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=nothing+really+interesting+basically++it+falls+over+but+it+falls+over+like+a+rag+doll+basically++the+reason+for+that+is+is+that+there+s+no+intelligence+in+it
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=interesting+when+you+put+artificial+intelligence+into+it+so+this+character+now+has
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=motor+skills+in+the+upper+body
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=nothing+in+the+legs+yet++in+this+particular+one
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+what+it+will+do+i+m+going+to+push+it+again++it+will+realize+autonomously+that+it+s+being+pushed+it+s+going+to+stick+out+its+hands+it+s+going+to+turn+around+into+the+fall+and+try+and+catch+the+fall
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+that+s+what+you+see+here++now++it+gets+really+interesting
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+then+add+the+ai+for+the+lower+part+of+the+body+as+well+so+here+we+ve+got+the+same+character+i+m+going+to+push+it+a+bit+harder
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now++harder+than+i+just+pushed+chris++but+what+you+ll+see+is
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+going+to+receive+a+push+now+from+from+the+left
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+you+see+is+it+takes+steps+backwards++it+tries+to+counter+balance+it+tries+to+look+at+the+place+where+it+thinks+it+s+going+to+land
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=again++and+then+finally+hits+the+floor++now+this+becomes+really+exciting
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=push+that+character+in+different+directions+again+just+as+i+ve+done
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+something+that+you+cannot+do+right+now+at+the+moment+you+only+have+empty+computer+graphics+in+in+games
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+this+is+now+is+a+real+simulation+that+s+what+i+want+to+show+you+now++so+here+s+the+same+character+with+the+same+behavior+i+ve+just+shown+you+but+now+i+m+just+going+to+push+it+from+different+directions+first+starting+with+a+push+from+the+right
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+all+slow+motion+by+the+way+so+we+can+see+what+s+going+on+now++the+angle+will+have+changed+a+tiny+bit+so
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+see+that+the+reaction+is+different+again+a+push+now+this+time+from
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+you+see+it+falls+differently++and+now+from+the+left
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+was+really+exciting+for+us+to+see+that+that+was+the+first+time+we+ve+seen+that+this+is+the+first+time+the+public+sees+this+as+well+because+we+have+been+in+stealth+mode+i+haven+t+shown+this+to+anybody+yet
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now++just+a+fun+thing+what+happens+if+you+put+that+character+this+is+now+a+wooden+version+of+it+but+it+s+got+the+same+ai+in+it
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+a+slippery+surface+like+ice++we+just+did+that+for+a+laugh+just+to+see+what+happens
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+is+what+happens+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+nothing+we+had+to+do+about+this+we+just+took+this+character+that+i+just+talked+about+put+it+on+a+slippery+surface+and+this+is+what+you+get+out+of+it+and+that+s
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+really+fascinating+thing+about+this+approach
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+when+we+went+to+film+studios+and+games+developers+and+showed+them+that+technology
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=got+a+very+good+response++and+what+they+said+was+the+first+thing+they+need+immediately+is+virtual+stuntmen
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+stunts+are+obviously+very+dangerous+they+re+very+expensive+and+there+are+a+lot+of+stunt+scenes+that+you+cannot+do+obviously+because+you+can+t+really
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=allow+the+the+stuntman+to+be+seriously+hurt+so+they+wanted+to+have+a+digital+version+of+a+stuntman+and+that+s+what+we+ve+been+working+on+for+the+past+few+months++and+that+s+our+first
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=product+that+we+re+going+to+release+in+a+couple+of+weeks
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+here+are+just+a+few+very+simple+scenes+of+the+guy+just+being+kicked++that+s+what+people+want+that+s+what+we+re+giving+them
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+can+see+it+s+always+reacting+this+is+not+a+dead+body+this+is+a+body
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=who+basically+in+this+particular+case+feels+the+force+and+tries+to+protect+its+head
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=kind+of+sorry+for+that+thing+and+we+ve+seen+it+so+many+times+now+that+we+don+t+really+care+any+more
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+are+much+worse+videos+than+this+by+the+way+which+i+have+taken+out+but
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+here+s+another+one+what+people+wanted+as+a+behavior+was+to+have+an+explosion++a+strong+force+applied+to+the+character+and+have+the+character+react+to+it
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+midair+so+that+you+don+t+have+a+character+that+looks+limp++but+actually+a+character+that+you+can+use+in+an+action+film+straight+away+that+looks+kind+of+alive+in+midair+as+well++so+this+character+is+going+to+be+hit+by+a+force+it+s+going+to+realize+it+s+in+the+air+and+it+s+going+to+try+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=stick+out+its+arm+in+the+direction+where+it+s+landing+that
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+one+angle+here+s+another+angle++we+now+think+that+the+realism+we+re+achieving+with+this+is+good+enough
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=used+in+films+and+let+s+just+have+a+look+at+a+slightly+different+visualization++this+is+something+i+just+got+last+night+from+an+animation+studio+in+london+who+are+using+our+software+and
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=experimenting+with+it+right+now++so+this+is+exactly+the+same+behavior+that+you+saw+but+in+a+slightly
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=better+rendered+version++so+if+you+look+at+the+character+carefully+you+see+there+are+lots+of+body+movements+going+on+none+of+which+you+have+to+animate+like+in+the+old
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+actually+animate+them++this+is+all+happening+automatically+in+the+simulation+this+is+a+slightly+different+angle
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+again+a+slow+motion+version+of+this
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+incredibly+quick+this+is+happening+in+real+time+you+can+run+this+simulation+in+real+time+in+front+of+your+eyes+change+it+if+you+want+to++and+you+get+the+animation+straight+out+of+it++at+the+moment+doing+something+like+this+by+hand+would+take+you+probably+a+couple+of+days
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+another+behavior+they+requested+i+m+not+quite+sure+why+but+we+ve+done+it+anyway+it+s+a+very+simple
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=behavior+that+shows+you+the+power+of+this+approach+in+this+case+the+character+s+hands+are+fixed+to+a+particular+point+in+space++and+all+we+ve+told+the+character+to+do+is+to+struggle
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+looks+organic+it+looks+realistic+you+feel+kind+of+sorry+for+the+guy+it+s+even+worse+and+that+is+another+video+i+just+got+last+night+if+you+render+that+a+bit+more+realistically
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=m+showing+this+to+you+just+to+show+you+how+organic+it+actually+can+feel+how+realistic+it+can+look+and+this+is+all+a+physical+simulation+of+the+body++using+ai+to+drive+virtual+muscles+in+that+body
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+thing+which+we+did+for+a+laugh+was+to+create+a+slightly+more+complex+stunt+scene+and+one+of+the+most+famous+stunts+is+the+one+where+james+bond
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=jumps+off+a+dam+in+switzerland+and+then+is
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=just+about+see+it+here+in
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+case+they+were+using+a+real+stunt+man+it+was+a+very+dangerous+stunt+it+was+just+voted+i+think+in+the+sunday+times+as+one+of+the+most+impressive+stunts
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+we+ve+just+tried+and+looked+at+our+character+and+asked+ourselves+can+we+do+that+ourselves+as+well+can+we+use+the+physical+simulation+of+the+character+use+artificial
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=put+that+artificial+intelligence+into+the+character+drive+virtual+muscles+simulate+the+way+he+jumps+off+the+dam++and+then+skydive+afterwards+and+have+him+caught+by+a+bungee
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=afterwards++we+did+that+it+took+about+altogether+just+two+hours+pretty+much+to+create+the+simulation
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+s+what+it+looks+like+here
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+could+do+with+a+bit+more+work+it+s+still+very+early+stages+and+we+pretty+much+just+did+this+for+a+laugh+just+to+see+what+we+d+get+out+of+it+but+what+we+found
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=over+the+past+few+months+is+that+this+this+approach++that+we+re+pretty+much+standard+upon+is+is+incredibly+powerful+we+are+ourselves+surprised+what+you+actually+get+out+of
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=out+of+the+simulations+there+s+very+often+very+surprising+behavior+that+you+didn+t+predict+before++there+s+so+many+things+we
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=going+to+be+virtual+stuntmen++several+studios+are+using+this+software+now+to+produce+virtual+stuntmen+and+they+re+going+to+hit+the+screen
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=quite+soon+actually+for+some+major+productions++the+second+thing+is
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=video+games+with+this+technology+video+games+will+look+different+and+they+will+feel+very+different+for+the+first+time+you+ll+have+actors+that+really+feel+very+interactive+that+have+real+bodies+that+really+react
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+that+s+going+to+be+incredibly+exciting++probably+starting+with+sports+games+which+are+going+to+become+much+more+interactive
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+particularly+am+really+excited+about+using+this+technology+in+in+online+worlds++like+there+for+example+that+tom+melcher+has+shown+us
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+degree+of+interactivity+you+re+going+to+get+is+totally+different+i+think+from+what+you+re+getting+right+now
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+third+thing+we+are+looking+at+and+very+interested+in+is+simulation
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+ve+been+approached+by+several+simulation+companies+but+one+project+we+re+particularly+excited+about+which+we+re+starting+next+month+is+to+use
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=our+technology+and+in+particular+the+walking+technology
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+help+aid+surgeons+who+work+on+children+with+cerebral+palsy
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+predict+the+outcome+of+operations+on+these+children+as+you+probably+know++it+s+very+difficult+to+predict+what+the+outcome+of+an+operation+is+if+you+try+and+correct+the+gait
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+classic+quote+is+i+think+it+s+unpredictable+at+best+is+what+people+think+right+now+is+the+outcome++now+what+we+want+to+do+with+our+software+is+allow
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=our+surgeons+to+have+a+tool
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+re+going+to+simulate+the+gait+of+a+particular+child+and+the+surgeon+can+then+work+on+that+simulation+and+try+out+different+ways+to+improve+that+gait+before+he+actually+commits+to+to+an+actual+surgery
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+one+project+we+re+particularly+excited+about
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+s+going+to+start+next+month
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+only+just+the+beginning+we+can+only+do+several+behaviors+right+now+the+ai+isn+t+good+enough+to+simulate+a+full+human+body
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+body+yes+but+not+all+the+motor+skills+that+we+have+and+i+think+we+re+only+there+if+we+can+have+something+like+ballet+dancing+right+now+we+don+t+have+that+but+i+m+very+sure+that+we+will+be+able+to+do+that+at+some+stage
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+do+have+one+unintentional+dancer+actually+the+last+thing+i+m+going+to+show+you+this+was+an+ai+contour+that+was+produced+and+evolved
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+should+say+to+produce+balance+basically+so+you+kick+the+guy+and+the+guy+s+supposed+to+counter+balance+that+s+what+we+thought+was+going+to+come+out+of+this++but+this+is+what+emerged+out+of+it+in+the+end
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+just+the+simulation+creating+this+itself+basically
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+quite+john+travolta+yet+but+we+re+working+on+that+as+well+so+thanks+very+much+for
found 0 videos: []
error: no video is found.
sleep 3 seconds to avoid blocking
------<2255>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TracyChevalier_2012S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+going+to+tell+you+about+an+affliction+i+suffer+from+and+i+have+a+funny+feeling+that+quite+a+few+of+you+suffer+from+it+as+well
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+m+walking+around+an+art+gallery++rooms+and+rooms+full+of+paintings+after+about+fifteen+or+twenty+minutes
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+not+thinking+about+the+paintings+i+m+not+connecting+to+them++instead+i+m+thinking+about+that+cup+of+coffee+i+desperately+need+to+wake+me+up
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+suffering+from+gallery+fatigue+how+many+of+you+out+there+suffer+from+yes+ha+ha+ha+ha+now
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sometimes+you+might+last+longer+than+twenty+minutes+or
found 1 videos: [['/talks/david_brooks_the_social_animal', '2011']]
selected: /talks/david_brooks_the_social_animal
sleep 1 seconds to avoid blocking
------<2256>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TravisKalanick_2016.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+wanted+to+well+this+morning+i+want+to+talk+about+the+future
found 13 videos: [['/talks/kashmir_hill_and_surya_mattu_what_your_smart_devices_know_and_share_about_you', '2018'], ['/talks/kirsty_duncan_scientists_must_be_free_to_learn_to_speak_and_to_challenge', '2018'], ['/talks/jessica_shortall_the_us_needs_paid_family_leave_for_the_sake_of_its_future', '2015'], ['/talks/chip_kidd_the_art_of_first_impressions_in_design_and_life', '2015'], ['/talks/arik_hartmann_our_treatment_of_hiv_has_advanced_why_hasn_t_the_stigma_changed', '2018'], ['/talks/tina_seelig_the_little_risks_you_can_take_to_increase_your_luck', '2018'], ['/talks/chris_domas_the_1s_and_0s_behind_cyber_warfare', '2014'], ['/talks/stephen_burt_why_people_need_poetry', '2014'], ['/talks/adam_foss_a_prosecutor_s_vision_for_a_better_justice_system', '2016'], ['/talks/dave_isay_everyone_around_you_has_a_story_the_world_needs_to_hear', '2015'], ['/talks/mark_ronson_how_sampling_transformed_music', '2014'], ['/talks/kandice_sumner_how_america_s_public_schools_keep_kids_in_poverty', '2016'], ['/talks/caitlin_quattromani_and_lauran_arledge_how_our_friendship_survives_our_opposing_politics', '2017']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+human+driven+transportation+about+how+we+can+cut+congestion++pollution
found 2 videos: [['/talks/travis_kalanick_uber_s_plan_to_get_more_people_into_fewer_cars', '2016'], ['/talks/bran_ferren_to_create_for_the_ages_let_s_combine_art_and_engineering', '2014']]
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fewer+cars+and+how+we+can+do+it+with+the+technology
found 9 videos: [['/talks/travis_kalanick_uber_s_plan_to_get_more_people_into_fewer_cars', '2016'], ['/talks/navi_radjou_creative_problem_solving_in_the_face_of_extreme_limits', '2015'], ['/talks/dayo_ogunyemi_visions_of_africa_s_future_from_african_filmmakers', '2018'], ['/talks/jennifer_kahn_gene_editing_can_now_change_an_entire_species_forever', '2016'], ['/talks/raj_panjabi_no_one_should_die_because_they_live_too_far_from_a_doctor', '2017'], ['/talks/jun_wang_how_digital_dna_could_help_you_make_better_health_choices', '2017'], ['/talks/gail_reed_where_to_train_the_world_s_doctors_cuba', '2014'], ['/talks/melinda_briana_epler_3_ways_to_be_a_better_ally_in_the_workplace', '2018'], ['/talks/pico_iyer_the_art_of_stillness', '2014']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+in+our+pockets+and+yes+i+m+talking+about+smartphones+not++self+driving+cars+but+to+get+started
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+ve+got+to+go+back+over+one+hundred+years+because+it+turns+out+there+was+an+uber
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+if+it+had+survived+the+future+of+transportation+would+probably+already+be+here
found 2 videos: [['/talks/travis_kalanick_uber_s_plan_to_get_more_people_into_fewer_cars', '2016'], ['/talks/sebastian_thrun_and_chris_anderson_what_ai_is_and_isn_t', '2017']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+let+me+introduce+you+to+the+jitney+in+one+thousand+nine+hundred+and+fourteen+it+was+created+or+invented
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+a+guy+named+lp+draper++he+was+a+car+salesman+from+la+and+he+had
found 1 videos: [['/talks/travis_kalanick_uber_s_plan_to_get_more_people_into_fewer_cars', '2016']]
selected: /talks/travis_kalanick_uber_s_plan_to_get_more_people_into_fewer_cars
sleep 2 seconds to avoid blocking
------<2257>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TrevorAaronson_2015U.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+fbi+is+responsible+for+more+terrorism+plots+in+the+united+states+than+any+other+organization
found 1 videos: [['/talks/trevor_aaronson_how_this_fbi_strategy_is_actually_creating_us_based_terrorists', '2015']]
selected: /talks/trevor_aaronson_how_this_fbi_strategy_is_actually_creating_us_based_terrorists
sleep 4 seconds to avoid blocking
------<2258>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TrevorCopp_2015X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=dancing+with+the+stars+first+hit+the+airwaves+that+is+not+what+it+looked+like
found 1 videos: [['/talks/trevor_copp_and_jeff_fox_ballroom_dance_that_breaks_gender_roles', '2016']]
selected: /talks/trevor_copp_and_jeff_fox_ballroom_dance_that_breaks_gender_roles
sleep 5 seconds to avoid blocking
------<2259>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TrevorTimm_2016U.stm
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+may+know+him+as+the+pulitzer+prize+winning+reporter+for+the+new+york+times
found 1 videos: [['/talks/trevor_timm_how_free_is_our_freedom_of_the_press', '2016']]
selected: /talks/trevor_timm_how_free_is_our_freedom_of_the_press
sleep 1 seconds to avoid blocking
------<2260>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TrionaMcGrath_2016X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=do+you+ever+think+about+how+important+the+oceans+are+in+our+daily+lives
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+oceans+cover+two+thirds+of+our+planet++they+provide+half+the+oxygen+we
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+moderate+our+climate++and+they+provide+jobs+and+medicine+and+food
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=including+twenty+percent+of+protein+to+feed+the+entire+world+population
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=people+used+to+think+that+the+oceans+were+so+vast+that+they+wouldn+t+be+affected+by+human+activities
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+today+i+m+going+to+tell+you+about+a+serious+reality+that+is+changing+our+oceans
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=called+ocean+acidification+or+the+evil+twin+of+climate+change
found 1 videos: [['/talks/triona_mcgrath_how_pollution_is_changing_the_ocean_s_chemistry', '2017']]
selected: /talks/triona_mcgrath_how_pollution_is_changing_the_ocean_s_chemistry
sleep 5 seconds to avoid blocking
------<2261>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TristanHarris_2014X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+does+it+mean+to+spend+our+time+well
found 14 videos: [['/talks/tristan_harris_how_better_tech_could_protect_us_from_distraction', '2016'], ['/talks/susan_etlinger_what_do_we_do_with_all_this_big_data', '2014'], ['/talks/margaret_heffernan_forget_the_pecking_order_at_work', '2015'], ['/talks/marco_annunziata_welcome_to_the_age_of_the_industrial_internet', '2013'], ['/talks/geoffrey_canada_our_failing_schools_enough_is_enough', '2013'], ['/talks/dan_ariely_what_makes_us_feel_good_about_our_work', '2013'], ['/talks/ellen_jorgensen_what_you_need_to_know_about_crispr', '2016'], ['/talks/shlomo_benartzi_saving_for_tomorrow_tomorrow', '2012'], ['/talks/bj_miller_what_really_matters_at_the_end_of_life', '2015'], ['/talks/timothy_bartik_the_economic_case_for_preschool', '2013'], ['/talks/suzana_herculano_houzel_what_is_so_special_about_the_human_brain', '2013'], ['/talks/scott_dinsmore_how_to_find_work_you_love', '2015'], ['/talks/emma_marris_nature_is_everywhere_we_just_need_to_learn_to_see_it', '2016'], ['/talks/christopher_bell_bring_on_the_female_superheroes', '2016']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+spend+a+lot+of+my+time+thinking+about+how+to+spend+my
found 13 videos: [['/talks/tristan_harris_how_better_tech_could_protect_us_from_distraction', '2016'], ['/talks/clint_smith_the_danger_of_silence', '2014'], ['/talks/laura_vanderkam_how_to_gain_control_of_your_free_time', '2016'], ['/talks/shlomo_benartzi_saving_for_tomorrow_tomorrow', '2012'], ['/talks/michael_norton_how_to_buy_happiness', '2012'], ['/talks/martin_pistorius_how_my_mind_came_back_to_life_and_no_one_knew', '2015'], ['/talks/dan_pallotta_the_way_we_think_about_charity_is_dead_wrong', '2013'], ['/talks/laura_robinson_the_secrets_i_find_on_the_mysterious_ocean_floor', '2016'], ['/talks/bj_miller_what_really_matters_at_the_end_of_life', '2015'], ['/talks/johann_hari_everything_you_think_you_know_about_addiction_is_wrong', '2015'], ['/talks/marina_abramovic_an_art_made_of_trust_vulnerability_and_connection', '2015'], ['/talks/chris_urmson_how_a_driverless_car_sees_the_road', '2015'], ['/talks/sandra_aamodt_why_dieting_doesn_t_usually_work', '2014']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=probably+too+much+i+probably+obsess+over+it+my+friends+think+i+do+but+i+feel+like+i+kind+of+have+to
found 1 videos: [['/talks/tristan_harris_how_better_tech_could_protect_us_from_distraction', '2016']]
selected: /talks/tristan_harris_how_better_tech_could_protect_us_from_distraction
sleep 5 seconds to avoid blocking
------<2262>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TristramStuart_2012S.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+job+of+uncovering+the+global+food+waste+scandal+started+for+me+when+i+was+fifteen+years+old
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+bought+some+pigs++i+was+living+in+sussex++and+i+started+to+feed+them+in+the+most+traditional+and+environmentally
found 1 videos: [['/talks/tristram_stuart_the_global_food_waste_scandal', '2012']]
selected: /talks/tristram_stuart_the_global_food_waste_scandal
sleep 3 seconds to avoid blocking
------<2263>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TristramWyatt_2013X.stm
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+conjures+up+sex++abandon++loss+of+control++and+you+can+see+it+s+very+important+as+a+word++but+it+s
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+put+that+word+into+the+web+as+you+may+have+done+you
found 10 videos: [['/talks/tristram_wyatt_the_smelly_mystery_of_the_human_pheromone', '2014'], ['/talks/roger_mcnamee_6_ways_to_save_the_internet', '2011'], ['/talks/edward_snowden_here_s_how_we_take_back_the_internet', '2014'], ['/talks/luis_von_ahn_massive_scale_online_collaboration', '2011'], ['/talks/daphne_bavelier_your_brain_on_video_games', '2012'], ['/talks/richard_seymour_how_beauty_feels', '2011'], ['/talks/sugata_mitra_build_a_school_in_the_cloud', '2013'], ['/talks/diana_reiss_peter_gabriel_neil_gershenfeld_and_vint_cerf_the_interspecies_internet_an_idea_in_progress', '2013'], ['/talks/paul_pholeros_how_to_reduce_poverty_fix_homes', '2013'], ['/talks/jeff_speck_the_walkable_city', '2013']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ll+come+up+with+millions+of+hits++and+almost+all+of+those+sites+are+trying+to+sell+you+something+to+make+you+irresistible
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+ten+dollars+or+more+now+this+is+a+very+attractive+idea++and+the+molecules+they+mention+sound+really
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+gets+better+and+better+and+when+you+combine+that+with+white+lab+coats++you+must+imagine+that+there+is+fantastic+science+behind+this
found 1 videos: [['/talks/tristram_wyatt_the_smelly_mystery_of_the_human_pheromone', '2014']]
selected: /talks/tristram_wyatt_the_smelly_mystery_of_the_human_pheromone
sleep 5 seconds to avoid blocking
------<2264>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TritaParsi_2013G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=israel+s+best+friend++and+we+do+not+intend+to+change+our+position+in+relation+to+tehran
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=believe+it+or+not+this+is+a+quote+from+an+israeli+prime+minister+but+it+s
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+golda+meir+from+the+era+of+the+shah+it+s+actually+from+yitzhak+rabin++the+year+is
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ayatollah+khomeini+is+still+alive+and+much+like+ahmadinejad+today+he+s+using+the+worst+rhetoric+against+israel+yet
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=rabin+referred+to+iran+as+a+geostrategic+friend
found 1 videos: [['/talks/trita_parsi_iran_and_israel_peace_is_possible', '2013']]
selected: /talks/trita_parsi_iran_and_israel_peace_is_possible
sleep 3 seconds to avoid blocking
------<2265>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TsheringTobgay_2016.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+wearing+a+dress++and+no+i+m+not+saying+what+i+m+wearing+underneath
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+a+gho+this+is+my+national+dress
found 1 videos: [['/talks/tshering_tobgay_this_country_isn_t_just_carbon_neutral_it_s_carbon_negative', '2016']]
selected: /talks/tshering_tobgay_this_country_isn_t_just_carbon_neutral_it_s_carbon_negative
sleep 3 seconds to avoid blocking
------<2266>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TylerDeWitt_2012X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=let+me+tell+you+a+story++it+s+my+first+year
found 18 videos: [['/talks/roger_ebert_remaking_my_voice', '2011'], ['/talks/morgan_spurlock_the_greatest_ted_talk_ever_sold', '2011'], ['/talks/jean_baptiste_michel_erez_lieberman_aiden_what_we_learned_from_5_million_books', '2011'], ['/talks/bruce_feiler_the_council_of_dads', '2011'], ['/talks/simon_lewis_don_t_take_consciousness_for_granted', '2011'], ['/talks/karima_bennoune_when_people_of_muslim_heritage_challenge_fundamentalism', '2014'], ['/talks/danny_hillis_back_to_the_future_of_1994', '2012'], ['/talks/jamil_abu_wardeh_the_axis_of_evil_middle_east_comedy_tour', '2010'], ['/talks/freeman_hrabowski_4_pillars_of_college_success_in_science', '2013'], ['/talks/sandra_fisher_martins_the_right_to_understand', '2011'], ['/talks/matthew_carter_my_life_in_typefaces', '2014'], ['/talks/stephen_burt_why_people_need_poetry', '2014'], ['/talks/ellen_dunham_jones_retrofitting_suburbia', '2010'], ['/talks/andrew_fitzgerald_adventures_in_twitter_fiction', '2013'], ['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013'], ['/talks/majora_carter_3_stories_of_local_eco_entrepreneurship', '2010'], ['/talks/david_kwong_two_nerdy_obsessions_meet_and_it_s_magic', '2014'], ['/talks/david_agus_a_new_strategy_in_the_war_on_cancer', '2010']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+a+new+high+school+science+teacher+and+i+m+so+eager+i+m+so+excited+i+m+pouring+myself+into+my+lesson+plans
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+m+slowly+coming+to+this+horrifying+realization
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+happens+one+day++i+d+just+assigned+my+class+to+read+this+textbook+chapter+about+my+favorite+subject+in+all+of+biology
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+how+they+attack++and+so+i+m+so+excited+to+discuss+this+with+them+and+i
found 1 videos: [['/talks/dennis_hong_my_seven_species_of_robot_and_how_we_created_them', '2010']]
selected: /talks/dennis_hong_my_seven_species_of_robot_and_how_we_created_them
sleep 5 seconds to avoid blocking
------<2267>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/TyroneHayes_2010W.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ask+if+there+s+a+doctor+in+the+house+no+i+m+just+joking++it+s+interesting+because+it+was+six+years+ago+when+i+was+pregnant+with+my+first+child
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+i+discovered+that+the+most+commonly+used+preservative+in+baby+care+products
error: request timeout
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+it+gets+into+the+human+body+now+it+s+very+easy+actually+to+get+a+chemical+compound+from+products
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=into+the+human+body+through+the+skin+and+these+preservatives+had+been+found+in+breast+cancer+tumors
found 1 videos: [['/talks/tyrone_hayes_penelope_jagessar_chaffer_the_toxic_baby', '2012']]
selected: /talks/tyrone_hayes_penelope_jagessar_chaffer_the_toxic_baby
sleep 3 seconds to avoid blocking
------<2268>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/UeliGegenschatz_2009.stm
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+paragliding+paragliding+is+taking+off+from+mountains+with+a+paraglider+with+the+possibility+to+fly+cross+country+distance+just+with+the+use+of+thermals
found 1 videos: [['/talks/ueli_gegenschatz_extreme_wingsuit_flying', '2009']]
selected: /talks/ueli_gegenschatz_extreme_wingsuit_flying
sleep 2 seconds to avoid blocking
------<2269>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/UldusBakhtiozina_2014U.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+started+my+way+around+six+years+ago+with+ironic
found 7 videos: [['/talks/marla_spivak_why_bees_are_disappearing', '2013'], ['/talks/dan_reisel_the_neuroscience_of_restorative_justice', '2014'], ['/talks/afra_raymond_three_myths_about_corruption', '2013'], ['/talks/uldus_bakhtiozina_wry_photos_that_turn_stereotypes_upside_down', '2014'], ['/talks/elon_musk_the_mind_behind_tesla_spacex_solarcity', '2013'], ['/talks/adam_garone_healthier_men_one_moustache_at_a_time', '2012'], ['/talks/nick_bostrom_what_happens_when_our_computers_get_smarter_than_we_are', '2015']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=am+still+performing+in+front+of+the+camera+and+trying+to+be+brave+like+wonder+woman+i+focus+on+balancing
found 1 videos: [['/talks/uldus_bakhtiozina_wry_photos_that_turn_stereotypes_upside_down', '2014']]
selected: /talks/uldus_bakhtiozina_wry_photos_that_turn_stereotypes_upside_down
sleep 3 seconds to avoid blocking
------<2270>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/UriAlon_2013G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+hopelessly+stuck+every+research+direction+that+i+tried+led+to+a+dead+end++it+seemed+like+my+basic+assumptions+just+stopped+working
found 1 videos: [['/talks/uri_alon_why_science_demands_a_leap_into_the_unknown', '2014']]
selected: /talks/uri_alon_why_science_demands_a_leap_into_the_unknown
sleep 3 seconds to avoid blocking
------<2271>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/UriHasson_2016.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=imagine+that+you+invented+a+device+that+can+record+my+memories+my+dreams+my+ideas+and+transmit+them+to+your+brain
found 1 videos: [['/talks/uri_hasson_this_is_your_brain_on_communication', '2016']]
selected: /talks/uri_hasson_this_is_your_brain_on_communication
sleep 2 seconds to avoid blocking
------<2272>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/UrsusWehrli_2006.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+name+is+ursus+wehrli+and+i+would+like+to+talk+to+you+this+morning+about+my+project+tidying+up+art++first+of+all+any+questions+so+far
found 1 videos: [['/talks/ursus_wehrli_tidying_up_art', '2008']]
selected: /talks/ursus_wehrli_tidying_up_art
sleep 5 seconds to avoid blocking
------<2273>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/UsmanRiaz_2012G.stm
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+official+story+is+that+you+learned+to+play+the+guitar+by+watching+jimmy+page+on+youtube
found 1 videos: [['/talks/usman_riaz_preston_reed_a_young_guitarist_meets_his_hero', '2012']]
selected: /talks/usman_riaz_preston_reed_a_young_guitarist_meets_his_hero
sleep 5 seconds to avoid blocking
------<2274>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/VanessaRuiz_2015P.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+a+lover+of+human+anatomy+i+m+so+excited+that+we+re+finally+putting+our+bodies+at+the+center+of+focus
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=through+practices+such+as+preventive+medicine++patient+empowerment+and+self+monitoring+down+to+now+obsessing+over+every+single+step+we+take+in+a+day
found 1 videos: [['/talks/vanessa_ruiz_the_spellbinding_art_of_human_anatomy', '2016']]
selected: /talks/vanessa_ruiz_the_spellbinding_art_of_human_anatomy
sleep 1 seconds to avoid blocking
------<2275>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/VanJones_2010X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+am+honored+to+be+here+and+i+m+honored+to+talk+about+this+topic+which+i+think+is+of+grave+importance+we+ve+been+talking+a+lot+about+the
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=horrific+impacts+of+plastic+on+the+planet+and+on+other+species++but+plastic
found 1 videos: [['/talks/van_jones_the_economic_injustice_of_plastic', '2011']]
selected: /talks/van_jones_the_economic_injustice_of_plastic
sleep 4 seconds to avoid blocking
------<2276>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/VeerleProvoost_2016X.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+not+an+easy+question++today+we+have+adoption
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+tough+decisions+shall+we+tell+our+child+about+the+sperm+donation
found 1 videos: [['/talks/veerle_provoost_do_kids_think_of_sperm_donors_as_family', '2016']]
selected: /talks/veerle_provoost_do_kids_think_of_sperm_donors_as_family
sleep 4 seconds to avoid blocking
------<2277>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/VernaMyers_2014X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+on+a+long+road+trip+this+summer
found 2 videos: [['/talks/verna_myers_how_to_overcome_our_biases_walk_boldly_toward_them', '2014'], ['/talks/casey_gerald_the_gospel_of_doubt', '2016']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+was+having+a+wonderful+time+listening+to+the+amazing+isabel+wilkerson+s+the+warmth+of+other+suns
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=six+million+black+folks+fleeing+the+south+from
found 1 videos: [['/talks/verna_myers_how_to_overcome_our_biases_walk_boldly_toward_them', '2014']]
selected: /talks/verna_myers_how_to_overcome_our_biases_walk_boldly_toward_them
sleep 3 seconds to avoid blocking
------<2278>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/VickiArroyo_2012G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+a+great+place+to+grow+up+but+it+s+one+of+the+most+vulnerable
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+world+half+the+city+is+already+below+sea+level
found 2 videos: [['/talks/vicki_arroyo_let_s_prepare_for_our_new_climate', '2012'], ['/talks/benjamin_barber_why_mayors_should_rule_the_world', '2013']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+two+thousand+and+five+the+world+watched+as+new+orleans+and+the+gulf+coast+were+devastated+by+hurricane+katrina
found 1 videos: [['/talks/vicki_arroyo_let_s_prepare_for_our_new_climate', '2012']]
selected: /talks/vicki_arroyo_let_s_prepare_for_our_new_climate
sleep 3 seconds to avoid blocking
------<2279>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/VictorRios_2015P.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+have+studied+young+people+that+have+been+pushed+out+of+school+so+called+dropouts
found 1 videos: [['/talks/victor_rios_help_for_kids_the_education_system_ignores', '2016']]
selected: /talks/victor_rios_help_for_kids_the_education_system_ignores
sleep 1 seconds to avoid blocking
------<2280>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/VijayKumar_2012.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=good+morning+i+m+here+today+to+talk+about+autonomous+flying
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=beach+balls+no+agile+aerial+robots+like+this+one+i+d+like+to+tell+you+a+little+bit+about+the
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=challenges+in+building+these+and+some+of+the+terrific+opportunities+for+applying+this+technology++so+these+robots+are+related+to
found 1 videos: [['/talks/vijay_kumar_robots_that_fly_and_cooperate', '2012']]
selected: /talks/vijay_kumar_robots_that_fly_and_cooperate
sleep 5 seconds to avoid blocking
------<2281>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/VijayKumar_2015X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+build+autonomous+aerial+robots+like+the+one+you+see+flying+here
found 1 videos: [['/talks/vijay_kumar_the_future_of_flying_robots', '2015']]
selected: /talks/vijay_kumar_the_future_of_flying_robots
sleep 3 seconds to avoid blocking
------<2282>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/VikMuniz_2003.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+asked+to+come+here+and+speak+about+creation
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+only+have+fifteen+minutes+and+i+see+they+re+counting+already++and+i+can+in+fifteen+minutes+i+think+i+can+touch+only+a+very+rather+janitorial+branch+of
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+we+cope+with+creation+while+creation+sometimes+seems+a+bit+un+graspable+or+even+pointless+creativity+is+always+meaningful
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=see+for+instance+in+this+picture++you+know+creation+is+what
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=put+that+dog+in+that+picture+and+creativity+is+what+makes+us+see+a+chicken+on
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+think+about+you+know++creativity+has+a+lot+to+do+with+causality+too+you+know++when+i+was+a+teenager+i+was+a+creator
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+just+did+things+then+i+became+an+adult+and+started+knowing+who+i+was+and+tried+to+maintain+that+persona+i+became+creative
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+actually+did+a+book+and+a
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+i+could+track+exactly+looks+like+all+the+craziest+things+that+i+had+done+all+my+drinking+all+my+parties+they+followed+a+straight+line+that+brings+me+to+the+point+that+actually+i+m+talking+to+you+at+this+moment
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=though+it+s+actually+true+you+know++the+reason+i+m+talking+to+you+right+now+is+because+i+was+born+in+brazil
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+i+was+born+in+monterey+probably+would+be+in+brazil+you+know
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=political+distress++and+i+was+forced+to+learn+to+communicate+in+a+very+specific+way+in+a+sort+of+a+semiotic+black+market
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+couldn+t+really+say+what+you+wanted+to+say+you+had+to+invent+ways+of+doing+it++you+didn+t+trust+information+very+much
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+led+me+to+another+step+of+why+i+m+here+today+is+because+i+really+liked+media+of+all+kinds+i+was+a+media+junkie
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+eventually+got+involved+with+advertising+my+first+job+in+brazil+was+actually+to+develop
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+way+to+improve+the+readability+of
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+based+on+speed+angle+of+approach+and+actually+blocks+of+text
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+very+actually+it+was+a+very+good+study++and+got+me+a+job+in+an+ad+agency++and+they+also+decided+that
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+give+me+a+very+ugly+plexiglas+trophy+for+it+and+another+point+why+i+m+here+is+that+the+day+i+went
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+pick+up+the+plexiglas+trophy+i+rented+a+tuxedo+for+the+first+time+in+my+life
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=picked+the+thing+didn+t+have+any+friends++on+my+way+out+i+had+to+break+a+fight+apart+somebody+was+hitting+somebody+else+with+brass+knuckles+they
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=were+in+tuxedos+and+fighting+it+was+very+ugly+and+also
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=advertising+people+do+that+all+the+time+and+i
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+what+happened+is+when+i+went+back
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+my+car+the+guy+who+got+hit
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=decided+to+grab+a+gun+i+don+t+know+why+he+had+a+gun+and+shoot+the+first+person+he+decided+to+be+his+aggressor+the+first+person+was+wearing+a+black+tie+a+tuxedo
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+even+more+luckily++the+guy+said+that+he+was+sorry+and+i+bribed+him+for+compensation+money+otherwise+i+press+charges
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+s+how+with+this+money+i+paid+for+a
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ticket+to+come+to+the+united+states+in+one+thousand+nine+hundred+and+eighty+three+and+that+s
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=very+the+basic+reason+i+m+talking+to+you+here+today++because+i+got+shot+well
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+started+working+with+my+own+work+i+decided+that+i+shouldn+t+do+images+you+know+i+became+i+took+this+very+iconoclastic+approach
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+decided+to+go+into+advertising+i+wanted+to+do++i+wanted+to+airbrush+naked+people+on
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ice+for+whiskey+commercials+that+s+what+i+really+wanted+to+do+but+i+they+didn+t+let+me+do+it+so+i+just+you+know+they+would+only+let+me+do+other+things
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+wasn+t+into+selling+whiskey+i+was+into+selling+ice
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+first+works+were+actually+objects+it+was+kind+of+a+mixture+of+found+object
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=design+and+advertising++and+i+called+them+relics++they+were+displayed+first+at+stux+gallery+in+one+thousand+nine+hundred+and+eighty+three
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+the+clown+skull+is+a+remnant+of+a+race+of+a
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=very+evolved+race+of+entertainers+they+lived+in+brazil+long+time+ago
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+the+ashanti+joystick+unfortunately+it+has+become+obsolete+because+it+was+designed+for+atari+platform
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+works+maybe+for+the+next+ted+i+ll+bring+it++the+rocking+podium
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+the+pre+columbian+coffeemaker
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=actually+the+idea+came+out+of+an+argument+that+i+had+at+starbucks+that+i+insisted+that+i+wasn+t+having+colombian+coffee+the+coffee
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+entire+encyclopedia+britannica+bound+in+a+single+volume+for+travel+purposes
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+half+tombstone+for+people+who+are+not+dead+yet
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+wanted+to+take+that+into
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+realm+of+images++and+i+decided+to+make+things+that+had+the+same+identity+conflicts
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+i+decided+to+do+work+with+clouds+because+clouds+can+mean+anything+you+want
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+now+i+wanted+to+work+in+a+very+low+tech+way+so+something+that+would+mean+at+the+same+time
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+lump+of+cotton+a+cloud+and+durer+s+praying+hands+although+this+looks+a+lot+more+like+mickey+mouse+s+praying+hands
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+i+was+still+you+know+this+is+a+kitty+cloud
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+re+called+equivalents+after+alfred+stieglitz+s+work
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+snail+but+i+was+still+working+with+sculpture+and+i+was+really+trying+to+go+flatter+and+flatter
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+teapot+i+had+a+chance+to+go+to+florence+in+i+think++it+was++ninety+four+and+i+saw
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ghiberti+s+door+of+paradise+and+he+did+something+that+was+very+tricky+he
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=put+together+two+different+media+from+different+periods+of+time
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=an+age+old+way+of+making+it+which+was+relief++and+he+worked+this+with
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=three+point+perspective+which+was+brand+new+technology+at+the+time
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+s+totally+overkill++and+your+eye+doesn+t+know+which+level+to+read+and+you+become+trapped+into+this+kind+of+representation+so+i+decided+to+make+these+very
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=simple+renderings+that+at+first+they+are+taken+as+a+line+drawing+you+know+something+that+s+very+and+then+i+did+it+with
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=wire+the+idea+was+to+because+everybody+overlooks+white
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+pencil+drawings++you+know++and+they+would+look+at+it+ah+it+s+a+pencil+drawing+then+you+have+this
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=double+take+and+see+that+it+s+actually+something+that+existed+in+time+it+had+a+physicality++and+you+start+going+deeper+and+deeper+into
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+same+way+the+history+of+representation+evolved+from+line+drawings+to+shaded+drawings
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+wanted+to+deal+with+other+subjects+i+started+taking+that+into+the+realm+of+landscape++which+is+something+that+s+almost+a+picture+of+nothing
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+made+these+pictures+called+pictures+of+thread+and+i+named+them+after+the+amount+of+yards+that+i+used+to+represent+each+picture+these+always+end+up+being+a+photograph+at+the+end+or+more+like+an+etching+in+this+case
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+don+t+know+how+many+yards+after+john+constable
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=departing+from+the+lines+i+decided+to+tackle+the+idea+of+points+like+which+is+more+similar+to+the+type+of+representation+that+we+find+in+photographs+themselves
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+had+met+a+group+of+children+in+the+caribbean+island+of+saint+kitts++and+i+did
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=work+and+play+with+them+i+got+some+photographs+from+them
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=upon+my+arrival+in+new+york+i+decided+they+were+children+of+sugar+plantation+workers
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+by+manipulating+sugar+over+a+black+paper++i+made+portraits+of+them
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=these+are+thank+you+this+is
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=valentina++the+fastest+it+was+just+the+name+of+the+child+with+the
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=another+layer+of+representation+was+still+introduced++because+i+was+doing+this+while+i+was+making+these+pictures++i+realized+that+i+could+add+still+another+thing+i+was+trying+to+make+a+subject
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+brings+to+mind+ideas+that+go+from
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=scatology+to+romance+and+so+i+decided+to+make+these+pictures+and+they+were+very+large+so+you+had+to+walk+away+from+it+to+be+able+to+see+them+so+they+re+called+pictures+of+chocolate
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=could+explain+chocolate+better+than+i+he+was+the+first+subject+and+jackson+pollock
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=pictures+of+crowds+are+particularly+interesting+because+you+know+you+go+to+that+you+try+to+figure+out+the+threshold+with+something+you+can+define+very+easily
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+a+face+goes+into+becoming
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+used+the+dust+at+the+whitney+museum+to+render+some+pieces+of+their+collection
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+picked+minimalist+pieces+because+they+re+about
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=specificity++and+you+render+this+with+the+most
error: request timeout
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+have+the+skin+particles+of+every+single+museum+visitor++they+do+a+dna+scan+of+this+they+will+come+up+with+a+great+mailing+list+this
error: request timeout
sleep 3 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=told+me+it+had+millions+of+colors+in+it+you+know+an+artist+s+first+response+to+this+is+who+counted+it+you+know+and+i
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=realized+that+i+never+worked+with+color+because+i+had+a+hard+time+controlling+the+idea+of+single+colors
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+once+they+re+applied+to+numeric+structure+then+you+you+can+feel+more+comfortable+so+the+first+time+i+worked+with+colors+was+by+making+these+mosaics+of+pantone+swatches
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+end+up+being+very+large+pictures+and+i+photographed+with+a+very+large+camera
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=camera+so+you+can+see+the+surface+of+every+single+swatch+like+in+this+picture+of+chuck+close++and+you+have+to+walk
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=very+far+to+be+able+to+see+it+also+the+reference+to+gerhard+richter+s+use+of+color
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=charts+and+the+idea+also+also+entering+another+realm+of+representation+that+s+very+common+to+us+today+which+is+the+bit+map+i+ended+up+narrowing+the+subject+to
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=monet+s+haystacks+this+is+something+i+used+to+do+as+a+joke+you+know++make
found 0 videos: []
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=robert+smithson+s+spiral+jetty+and+then+leaving+traces+as+if
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+done+on+a+tabletop+i+tried+to+prove+that+he+didn+t+do+that+thing+in+the+salt+lake
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+then+just+doing+the+models++i+was+trying+to+explore+the+relationship+between+the+model
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=felt+that+i+would+have+to+actually+go+there+and+make+some+earthworks+myself
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+opt+for+very+simple+line+drawings+kind+of+stupid+looking++and+at+the+same+time+i+was+doing+these+very+large+constructions+being+one+hundred+and+fifty+meters
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=away+now+i+would+do+very+small+ones++which+would+be+like+but
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+would+show+them+together+so+the+viewer+would+have+to+really+figure+it+out+what+one+he+was+looking
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+wasn+t+interested+in+the+very+large+things++or+in+the+small+things+i+was+more+interested+in+the+things+in+between+you+know+because+you+can+leave+an+enormous+range+for+ambiguity+there
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+like+you+see+the+size+of+a+person+over+there
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+many+people+have+a+chance+to+watch+somebody+draw+in+in+a+lot+of+people+at+the+same+time+to+evidence+a+single+drawing++and
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+love+this+work++because+i+did+these+cartoonish+clouds+over+manhattan
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+a+period+of+two+months
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+was+quite+wonderful+because+i+had+an+interest+an+early+interest+in+theater+that+s+justified+on+this+thing+in+theater++you+have+the+character+and+the+actor+in+the+same+place+trying+to+negotiate+each+other+in+front+of+an+audience
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+in+this+you+d+have+like+a
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=something+that+looks+like+a+cloud+and+it+is+a+cloud+at+the+same+time+so+they+re+like+perfect+actors
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+once+paid+like+sixty+dollars+to+see+a+very+great+actor+to+do+a+version+of+king+lear
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+felt+really+robbed+because+by+the+time+the+actor+started+being+king+lear++he+stopped+being+the+great+actor+that+i+had+paid+money+to+see
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=on+the+other+hand+you+know+i+paid+like+three
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+and+i+went+to+a+warehouse+in+queens
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+see+a+version+of+othello
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+an+amateur+group+and+it+was+quite+fascinating+because+you+know+the+guy+his+name+was+joey+grimaldi
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=general+and+then+he+went+back+into+plumber+he+worked+as+a+plumber+so+plumber++general+plumber++general
found 0 videos: []
error: no video is found.
sleep 5 seconds to avoid blocking
------<2283>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/VikramPatel_2012G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+want+you+to+imagine+this+for+a+moment
found 5 videos: [['/talks/ariel_garten_know_thyself_with_a_brain_scanner', '2011'], ['/talks/wadah_khanfar_a_historic_moment_in_the_arab_world', '2011'], ['/talks/toni_griffin_a_new_vision_for_rebuilding_detroit', '2013'], ['/talks/massimo_banzi_how_arduino_is_open_sourcing_imagination', '2012'], ['/talks/elyn_saks_a_tale_of_mental_illness_from_the_inside', '2012']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=two+men++rahul+and+rajiv+living+in+the+same+neighborhood
found 1 videos: [['/talks/vikram_patel_mental_health_for_all_by_involving_all', '2012']]
selected: /talks/vikram_patel_mental_health_for_all_by_involving_all
sleep 4 seconds to avoid blocking
------<2284>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/VilayanurRamachandran_2007.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=chris+pointed+out+i+study+the+human+brain+the+functions+and+structure+of+the+human+brain+and+i+just+want+you+to+think+for+a+minute+about+what+this+entails++here+is+this
found 1 videos: [['/talks/vs_ramachandran_3_clues_to_understanding_your_brain', '2007']]
selected: /talks/vs_ramachandran_3_clues_to_understanding_your_brain
sleep 3 seconds to avoid blocking
------<2285>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/VilayanurRamachandran_2009I.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+to+talk+to+you+today+about+the+human+brain++which+is+what+we+do+research+on+at+the+university+of+california
found 1 videos: [['/talks/vilayanur_ramachandran_the_neurons_that_shaped_civilization', '2010']]
selected: /talks/vilayanur_ramachandran_the_neurons_that_shaped_civilization
sleep 1 seconds to avoid blocking
------<2286>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/VinayVenkatraman_2012S.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=frugal+digital+is+essentially+a+small+research+group+at+c+i+d+where+we+are+looking+to+find
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=alternate+visions+of+how+to+create+a+digitally+inclusive+society+that+s+what+we
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+do+this+because+we+actually+believe+that+silicon+technology+today+is+mostly+about+a+culture+of+excess
found 1 videos: [['/talks/vinay_venkatraman_technology_crafts_for_the_digitally_underserved', '2012']]
selected: /talks/vinay_venkatraman_technology_crafts_for_the_digitally_underserved
sleep 4 seconds to avoid blocking
------<2287>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/VincentCochetel_2014X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+cannot+forget+them++their+names+were+aslan
found 2 videos: [['/talks/vincent_cochetel_i_was_held_hostage_for_317_days_here_s_what_i_thought_about', '2015'], ['/talks/kailash_satyarthi_how_to_make_peace_get_angry', '2015']]
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+many+their+existence+their+humanity++has+been+reduced+to
found 2 videos: [['/talks/vincent_cochetel_i_was_held_hostage_for_317_days_here_s_what_i_thought_about', '2015'], ['/talks/chris_anderson_ted_questions_no_one_knows_the_answers_to', '2012']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=statistics++coldly+recorded+as+security+incidents
found 1 videos: [['/talks/vincent_cochetel_i_was_held_hostage_for_317_days_here_s_what_i_thought_about', '2015']]
selected: /talks/vincent_cochetel_i_was_held_hostage_for_317_days_here_s_what_i_thought_about
sleep 2 seconds to avoid blocking
------<2288>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/VincentMoon_2014G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=how+can+we+use+computers++cameras++microphones
found 9 videos: [['/talks/abe_davis_new_video_technology_that_reveals_an_object_s_hidden_properties', '2015'], ['/talks/vincent_moon_and_nana_vasconcelos_hidden_music_rituals_around_the_world', '2014'], ['/talks/ken_goldberg_4_lessons_from_robots_about_being_human', '2012'], ['/talks/michael_rubinstein_see_invisible_motion_hear_silent_sounds', '2014'], ['/talks/christopher_soghoian_government_surveillance_this_is_just_the_beginning', '2014'], ['/talks/lian_pin_koh_a_drone_s_eye_view_of_conservation', '2013'], ['/talks/avi_rubin_all_your_devices_can_be_hacked', '2012'], ['/talks/mitch_resnick_let_s_teach_kids_to_code', '2013'], ['/talks/yuval_noah_harari_what_explains_the_rise_of_humans', '2015']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+represent+the+world+in+an+alternative+way++as+much+as+possible
found 8 videos: [['/talks/vincent_moon_and_nana_vasconcelos_hidden_music_rituals_around_the_world', '2014'], ['/talks/alyssa_monks_how_loss_helped_one_artist_find_beauty_in_imperfection', '2016'], ['/talks/todd_humphreys_how_to_fool_a_gps', '2012'], ['/talks/pia_mancini_how_to_upgrade_democracy_for_the_internet_era', '2014'], ['/talks/jennifer_pahlka_coding_a_better_government', '2012'], ['/talks/stephen_coleman_non_lethal_weapons_a_moral_hazard', '2012'], ['/talks/ethan_nadelmann_why_we_need_to_end_the_war_on_drugs', '2014'], ['/talks/freeman_hrabowski_4_pillars_of_college_success_in_science', '2013']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=possible+to+use+the+internet+to+create+a+new+form+of+cinema+and+actually+why+do+we+record+well
found 1 videos: [['/talks/vincent_moon_and_nana_vasconcelos_hidden_music_rituals_around_the_world', '2014']]
selected: /talks/vincent_moon_and_nana_vasconcelos_hidden_music_rituals_around_the_world
sleep 3 seconds to avoid blocking
------<2289>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/VirginiaPostrel_2004.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+might+be+wondering+why+i+m+wearing+sunglasses
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+one+answer+to+that+is+because+i+m+here+to+talk+about+glamour++so+we+all+think+we+know+what+glamour+is+here+it+is+it+s+glamorous+movie+stars+like+marlene
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+comes+in+a+male+form+too+very+glamorous++not+only+can+he+shoot++drive+drink+you+know+he+drinks+wine+there+actually+is+a+little+wine+in+there
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+of+course+always+wears+a+tuxedo++but+i+think
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+glamour+actually+has+a+much+broader+meaning+one+that+is+true+for+the+movie+stars+and+the+fictional+characters+but+also+comes+in+other+forms+a+magazine
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+it+s+certainly+not+this+one++this+is+the+least+glamorous+magazine+on+the+newsstand+it+s+all+about+sex+tips
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sex+tips+are+not+glamorous+and+drew+barrymore+for+all+her+wonderful+charm+is+not+glamorous+either++but+there+is+a+glamour+of+industry++this+is+margaret++bourke+white
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+one+of+her+pictures+she+did+fantastic+glamorous+pictures+of+steel+mills+and+paper+mills+and+all+kinds+of+glamorous+industrial+places
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+there+s+the+mythic+glamour+of+the+garage+entrepreneur
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+the+hewlett+packard+garage+we+know+everyone+who+starts+a+business+in+a+garage+ends+up+founding++hewlett+packard
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+the+glamour+of+physics+what+could+be+more+glamorous+than+understanding+the+entire+universe++grand+unification+and
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+the+way+it+helps+if+you+re+brian+greene+he+has+other+kinds+of+glamour+and+there+is+of+course++this+glamour++this+is+very+very
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+do+we+mean+by+glamour++well+one+thing+you+can+do+if+you+want+to+know+what+glamour+means+is+you+can+look+in+the+dictionary
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+actually+helps+a+lot+more+if+you+look+in+a+very+old+dictionary+in+this+case+the+one+thousand+nine+hundred+and+thirteen+dictionary++because+for+centuries+glamour+had+a+very+particular+meaning+and+the+word+was+actually+used
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=differently+from+the+way+we+think
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+had+a+glamour++it+wasn+t+glamour+as+a+quality+you+cast+a+glamour+glamour+was+a+literal+magic+spell+not+a+metaphorical+one+the+way+we+use+it+today+but
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+literal+magic+spell+associated+with+witches+and+gypsies+and+to+some+extent++celtic+magic
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=deception+this+definition+for+any+artificial+interest+in+or+association+with+an+object+through+which+it+appears+delusively+magnified+or+glorified
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+still++glamour+is+an+illusion+glamour+is+a+magic+spell
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+the+witches+cast+a+magic+spell+on+you+it+was+not+in+your+self+interest+it+was+to+get+you+to+act+against+your+interest
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=well+of+course+in+the+20th+century+glamour+came+to+have+this+different+meaning+associated+with+hollywood+and+this+is+hedy+lamarr+hedy+lamarr+said+anyone+can+look+glamorous+all+you+have+to+do+is+sit+there+and+look+stupid
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+in+fact+with+all+due+respect+to+hedy+about+whom+we+ll+hear+more+later+there+s+a+lot+more+to+it+there+was+a+tremendous+amount+of+technical
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=achievement+associated+with+creating+this+hollywood+glamour+there+were+scores+of+retouchers+and+lighting+experts+and+make+up+experts+you+can+go+to+the+museum+of+hollywood+history+in+hollywood+and+see
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=max+factor+s+special+rooms+that+he+painted+different+colors+depending+on+the+complexion+of+the+star+he+was+going+to+make+up+so+you+ve+got+this+highly+stylized+portrait+of+something+that
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=not+entirely+of+this+earth+it+was+a+portrait+of+a+star+and+actually+we+see+glamorized+photos+of+stars+all+the+time+they+call+them+false+color++glamour+is+a+form
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+falsification++but+falsification+to+achieve+a+particular+purpose+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=process+of+idealization+glorification+and+dramatization+and+it+s+not+just+the+case+for+people+glamour+doesn+t+have+to+be+people+architectural+photography+julius+schulman+who+has+talked+about+transfiguration+took+this
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fabulous+famous+picture+of+the+kauffman+house+architectural+photography+is+extremely+glamorous++it+puts
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+into+this+special+special+world++this+is+alex+ross+s+comic+book+art+which+appears+to+be+extremely+realistic+as+part+of+his+style+is+he
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=gives+you+a+kind+of+realism+in+his+comic+art++except+that+light+doesn+t+work+this+way+in+the+real+world+when+you+stack+people+in+rows+the+ones+in+the+background+look+smaller+than+the+ones+in+the+foreground+but+not+in+the+world+of+glamour
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+was+telling+us+that+glamour+is+back+glamour+is+all+about+transcending+the+everyday++and+i+think+that+that+s+starting+to+get+at+what+the+core+that+combines+all+sorts+of+glamour+is
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=portrait+of+saint+apollonia++and+i+don+t+know+who+she+is+either+but+this+is+the+[+16th+]+century+equivalent+of+a+supermodel+it+s+a+very+glamorous+portrait+why+is+it+glamorous
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+she+is+beautiful+but+that+does+not+make+you+glamorous+that+only+makes+you+beautiful
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=she+is+graceful+she+is+mysterious+and+she+is+transcendent+and+those+are+the+central+qualities+of+glamour
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+don+t+see+her+eyes+they+re+looking+downward+she+s+not+looking+away+from+you+exactly+but+you+have+to+mentally+imagine+her+world+she+s+encouraging+you+to
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=contemplate+this+higher+world+to+which+she+belongs+where+she+can+be+completely+tranquil+while+holding+the+iron+instruments+of+her+death+by+torture+mel+gibson+s+passion
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+the+christ+not+glamorous+that+s+glamour+that+s+michelangelo+s+pieta+where+mary+is+the+same+age+as+jesus+and+they+re+both+awfully+happy+and+pleasant
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=mysterious+a+little+bit+distant+that+s+why+often+in+these+glamour+shots+the+person+is+not+looking+at+the+audience+it+s+why
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=sunglasses+are+glamorous+but+also+not+so+far+above+us+that+we+can+t+identify+with+the+person+in+some+sense+there+has+to+be+something+like+us++so+as+i+say+in+religious+art+you
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=know+god+is+not+glamorous+god+cannot+be+glamorous+because+god+is+omnipotent+omniscient+too+far+above+us
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+yet+you+will+see+in+religious+art+saints+or+the+virgin+mary+will+often+be+portrayed+not+always+in+glamorous+forms
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+i+said+earlier++glamour+does+not+have+to+be+about+people
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+it+has+to+have+this+transcendent+quality+what+is+it+about+superman+aside+from+alex+ross+s+style+which+is+very+glamorous++one+thing+about+superman+is+he+makes+you+believe+that+a+man+can
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=glamour+is+all+about+transcending+this+world+and+getting+to+an+idealized+perfect+place++and+this+is+one+reason+that
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=modes+of+transportation+tend+to+be+extremely+glamorous++the+less+experience+we+have+with+them+the+more+glamorous+they+are+so+you+can+do+a+glamorized+picture+of+a+car++but+you+can+t+do+a+glamorized+picture+of+traffic+you+can+do+a+glamorized+picture+of+an
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+not+the+inside++the+notion+is+that+it+s+going+to+transport+you+and+the+story+is+not+about+you+know
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+guy+in+front+of+you+in+the+airplane+who+has+this+nasty+little+kid+or+the+big+cough
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+story+is+about+where+you+re+arriving+or+thinking+about+where+you+re+arriving++and+this+sense+of+being+transported+is+one+reason+that+we+have+glamour+styling
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+sort+of+streamlining+styling+is+not+just+glamorous+because+we+associate+it+with+movies+of+that+period++but+because
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=streamlining+it+transports+us+from+the+everyday+the+same+thing+arches+are+very+glamorous
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=arches+with+stained+glass+even+more+glamorous++staircases+that+curve+away+from+you+are+glamorous++i+happen+to+find+that+particular+staircase+picture+very+glamorous+because+to+me+it+captures+the+whole+promise+of+the
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=academic+contemplative+life+but+maybe+that+s+because+i+went+to+princeton+anyway++skylines+are+super+glamorous
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=streets+not+so+glamorous+you+know+when+you+get+actually+to+this+town+it+has+reality++the+horizon+the+open+road
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+very+very+glamorous+there+are+few+things+more+glamorous+than+the+horizon+except+possibly
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=multiple+horizons+of+course+here+you+you+don+t+feel+the+cold
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+just+see+the+possibilities+in+order+to+pull+glamour+off+you+need+this+renaissance+quality+of+sprezzatura+which+is+a+term+coined+by+castiglione+in+his
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=book+the+book+of+the+courtier+there+s+the+not+glamorous+version+of+what+it+looks+like+today+after+a+few+centuries++and+sprezzatura+is+the+art+that+conceals+art++it+makes
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=things+look+effortless+you+don+t+think+about+how+nicole+kidman+is+maneuvering+that+dress+she+just+looks+completely
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=natural++and+i+remember+reading++after+the+lara+croft+movies+how+angelina+jolie+would+go+home+completely+black+and+blue
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+course+they+covered+that+with+make+up+because+lara+croft+did+all+those+same+stunts+but+she+doesn+t+get+black+and+blue+because+she+has+sprezzatura+to+conceal+all+art+and+make+whatever+is+done+or+said+appear+to+be+without
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+this+is+one+of+the+critical+aspects+of+glamour+glamour+is+about+editing+how+do+you+create+the+sense+of+transcendence+the+sense+of+evoking+a+perfect+world+the+sense+of+you+know
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=life+could+be+better+i+could+join+this+i+could+be+a+perfect+person+i+could+join+this+perfect+world++we+don+t+tell+you+all+the+grubby+details
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=now+this+was+kindly+lent+to+me+by+jeff+bezos+from+last+year++this+is+underneath+jeff+s
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+what+the+real+world+of+computers+lamps+electrical+appliances+of+all+kinds+looks+like
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+if+you+look+in+a+catalog+particularly+a+catalog+of+modern+beautiful
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=objects+for+your+home+it+looks+like+this+there+are+no+cords+look+next+time+you+get+these+catalogs+in+your+mail+you+can+usually+figure+out+where+they+hid+the+cord++but+there+s+always+this+illusion+that+if+you
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=buy+this+lamp+you+will+live+in+a+world+without+cords+and+the+same+thing+is+true+of+if+you+buy+this+laptop+or+you+buy+this+computer
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+even+in+these+wireless+eras+you+don+t+get+to+live+in+the+world+without+cords+you+have+to+have+mystery+and+you+have+to+have+grace++and+there+she+is+grace+this+is+the+most
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=glamorous+picture+i+think+ever+part+of+the+thing+is+that+in+rear+window+the+question+is+is+she+too+glamorous+to+live+in+his+world+and+the+answer+is+no+but+of+course+it+s+really+just+a+movie+here+s+hedy+lamarr
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=again++and+you+know+this+kind+of+head+covering+is+extremely+glamorous+because+like+sunglasses+it+conceals+and+reveals+at+the+same+time+translucence+is+glamorous+that+s+why
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=all+these+people+wear+pearls+it+s+why+barware+is+glamorous+glamour+is+translucent+not+transparent+not+opaque+it+invites+us+into+the+world+but+it+doesn+t+give+us+a+completely+clear+picture++and+i+think+if+grace+kelly
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+the+most+glamorous+person+maybe+a+spiral+staircase+with+glass+block+may+be+the+most+glamorous+interior+shot+because+a+spiral+staircase+is+incredibly+glamorous+it+has+that+sense+of+going
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=up+and+away++and+yet+you+never+think+about+how+you+would+really+trip+if+you+were+particularly+going+down+and+of+course+glass+block+has+that+sense+of+translucence+translucence+so+this+session+s
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=supposed+to+be+about+pure+pleasure+but+glamour+s+really+partly+about+meaning+all+individuals+and+all+cultures+have+ideals+that+cannot+possibly+be+realized
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+reality+they+have+contradictions+they+uphold+principles+that+are+incommensurable+with+each+other+whatever+it+is+and+yet+these+ideals+give+meaning+and+purpose+to+our+lives+as+cultures+and+as+individuals+and+the+way+we+deal+with+that+is+we
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+displace+them+we+put+them+into+a+golden+world+an+imagined+world+an+age+of+heroes+the+world+to+come+and+in+the+life+of+an+individual+we+often+associate+that+with+some+object+the+white+picket+fence
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+perfect+house++the+perfect+kitchen+no+bills+on+the+counter+in+the+perfect+kitchen+you+know
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+buy+that+viking+range+this+is+what+your+kitchen+will+look+like+the+perfect+love+life+symbolized+by+the+perfect
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=necklace+the+perfect+diamond+ring++the+perfect+getaway+in+your+perfect+car+this+is+an+interior+design+firm+that+is+literally+called+utopia
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+perfect+office+again+no+cords+as+far+as+i+can+tell
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+certainly+no+it+doesn+t+look+a+thing+like+my+office+i+mean+there+s+no+paper+on+the+desk+we+want+this+golden+world+and+some+people+get+rich+enough+and+if+they+have+their+ideals+in+a+sort+of+domestic+sense
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+acquire+their+perfect+world++dean+koontz+built+this+fabulous+home+theater+which+is+i+don+t+think+accidentally+in+art+deco+style+that+symbolizes+this+sense
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+being+safe+and+at+home+this+is+not+always+good++because+what+is+your+perfect+world+what+is+your+ideal+and+also+what+has+been+edited+out+is+it+something+important
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+a+movie+that+is+all+about+glamour+i+could+do+a+whole+talk+on+the+matrix+and+glamour++it+was+criticized+for+glamorizing+violence+because+look
error: request timeout
sleep 3 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+of+course+they+could+walk+up+walls+and+do+all+these+kinds+of+things+that+are+impossible+in+the+real+world+this+is+another+margaret++bourke+white+photo+this+is+from+soviet+union+attractive+i+mean+look+how+happy+the+people+are+and
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fan+of+peta+but+i+think+this+is+a+great+ad+because+what+they+re+doing+is+they+re+saying+your+coat+s+not+so+glamorous+what+s+been+edited+out+is+something+important
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+actually+what+s+even+more+important+than+remembering+what+s+been+edited+out+is+thinking+are+the+ideals+good++because
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=glamour+can+be+very+totalitarian+and+deceptive+and+it+s+not+just+a+matter+of+glamorizing+cleaning+your+floor++this+is+from+triumph+of+the+will+brilliant+editing+to+cut+together+things
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+a+glamour+shot++national+socialism+is+all+about+glamour++it+was+a+very+aesthetic+ideology+it+was+all+about+cleaning+up+germany++and+the+west+and+the+world+and+ridding+it+of+anything
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=unglamorous+so+glamour+can+be+dangerous+i+think+glamour+has+a+genuine+appeal+has+a+genuine+value+i+m+not+against+glamour+but+there+s+a+kind+of+wonder+in+the+stuff+that+gets+edited+away+in+the+cords+of+life++and+there+is+both+a+way
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+avoid+the+dangers+of+glamour+and+a+way+to+broaden+your+appreciation+of+it+and+that+s+to+take+isaac+mizrahi+s+advice+and+confront+the+manipulation+of+it+all+and+sort+of+admit+that+that+manipulation+is+something+that+we+enjoy+but+also
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=enjoy+how+it+happens+and+here+s+hedy+lamarr+she+s+very+glamorous+but+you+know+she+invented
error: request timeout
error: no video is found.
sleep 2 seconds to avoid blocking
------<2290>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/VusiMahlaselaSONGOFMAMA_2007G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=like+to+dedicate+this+one+to+all+the+women+in+south+africa
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=those+women+who+refused+to+dwindle+in+the+midst+of+apartheid+and+of+course+i
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+dedicating+it+also+to+my+grandmother+whom+i+think+that+she+really+played+quite+a+lot+of+important+role+especially+for+me+when+i+was+an+activist
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+being+harassed+by+the+police+you+will+recall+that+in+one+thousand+nine+hundred+and+seventy+six+june+sixteen+the+students+of+south+africa+boycotted
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+language+of+afrikaans+as+the+medium+of+the+oppressor+as+you+know
found 1 videos: [['/talks/vusi_mahlasela_thula_mama', '2007']]
selected: /talks/vusi_mahlasela_thula_mama
sleep 3 seconds to avoid blocking
------<2291>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/VusiMahlasela_SongofMama_2007G.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=id+like+to+dedicate+this+one+to+all+the+women+in+south+africa
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=those+women+who+refused+to+dwindle+in+the+midst+of+apartheid+and+of+course
found 1 videos: [['/talks/vusi_mahlasela_thula_mama', '2007']]
selected: /talks/vusi_mahlasela_thula_mama
sleep 3 seconds to avoid blocking
------<2292>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/WadahKhanfar_2011.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ten+years+ago+exactly++i+was+in+afghanistan
found 11 videos: [['/talks/wadah_khanfar_a_historic_moment_in_the_arab_world', '2011'], ['/talks/stanley_mcchrystal_listen_learn_then_lead', '2011'], ['/talks/jeremy_gilley_one_day_of_peace', '2011'], ['/talks/bruce_aylward_how_we_ll_stop_polio_for_good', '2011'], ['/talks/rajesh_rao_a_rosetta_stone_for_a_lost_language', '2011'], ['/talks/parag_khanna_mapping_the_future_of_countries', '2009'], ['/talks/giles_duley_when_a_reporter_becomes_the_story', '2012'], ['/talks/ken_jennings_watson_jeopardy_and_me_the_obsolete_know_it_all', '2013'], ['/talks/jr_my_wish_use_art_to_turn_the_world_inside_out', '2011'], ['/talks/geoffrey_canada_our_failing_schools_enough_is_enough', '2013'], ['/talks/rory_bremner_a_one_man_world_summit', '2009']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+was+covering+the+war+in+afghanistan++and+i+witnessed+as+a+reporter+for+al+jazeera
found 1 videos: [['/talks/wadah_khanfar_a_historic_moment_in_the_arab_world', '2011']]
selected: /talks/wadah_khanfar_a_historic_moment_in_the_arab_world
sleep 4 seconds to avoid blocking
------<2293>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/WadeDavis_2008.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+imagination+as+we+know+it+came+into+being+when+our+species+descended+from+our+progenitor+homo+erectus
found 1 videos: [['/talks/wade_davis_the_worldwide_web_of_belief_and_ritual', '2008']]
selected: /talks/wade_davis_the_worldwide_web_of_belief_and_ritual
sleep 2 seconds to avoid blocking
------<2294>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/WadeDavis_2012.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+not+a+story+of+tibet+and+it+s+not+a+story+of+the+amazon
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+won+t+be+taking+you+to+the+high+arctic+the+life+of+the+inuit+or+to+the+searing+sands+of+the+sahara
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+actually+a+story+of+my+own+backyard
found 12 videos: [['/talks/roger_doiron_my_subversive_garden_plot', '2011'], ['/talks/neil_pasricha_the_3_a_s_of_awesome', '2011'], ['/talks/david_mackay_a_reality_check_on_renewables', '2012'], ['/talks/mike_degruy_hooked_by_an_octopus', '2012'], ['/talks/emily_pilloton_teaching_design_for_change', '2010'], ['/talks/noah_wilson_rich_every_city_needs_healthy_honey_bees', '2012'], ['/talks/sheryl_wudunn_our_century_s_greatest_injustice', '2010'], ['/talks/jon_nguyen_tour_the_solar_system_from_home', '2012'], ['/talks/auret_van_heerden_making_global_labor_fair', '2010'], ['/talks/raghava_kk_what_s_your_200_year_plan', '2012'], ['/talks/john_kasaona_how_poachers_became_caretakers', '2010'], ['/talks/jamie_heywood_the_big_idea_my_brother_inspired', '2010']]
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+a+land+known+to+the+tahltan+people+and+all+the+first+nations+of+british+columbia+as+the+sacred+headwaters
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+source+of+the+three+great+salmon+rivers+of+home+the+skeena+the+stikine
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+a+valley+where+in+a+long+day+perhaps+too+you+can+follow+the+tracks+of+grizzly+and+wolf+and+drink
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=from+the+very+sources+of+water+that+gave+rise+and+cradled+the+great+civilizations+of+the+northwest+coast
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+such+a+beautiful+place+it+s+the+most+stunningly+wild+place+i+ve+ever+been+it+s+the+sort+of+place+that+we+as+canadians+could+throw+england+and+they+d+never+find+it
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=john+muir+in+one+thousand+eight+hundred+and+seventy+nine+went+up+just+the+lower+third+of+the+stikine+and+he+was+so+enraptured+he+called+it+a+yosemite+one+hundred+and+fifty+miles+long+he+came+back+to+california
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+named+his+dog+after+that+river+of+enchantment
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+lower+forty+eight+the+farthest+you+can+get+away+from+a+maintained+road+is+twenty+miles+in+the+northwest+quadrant+of+british+columbia+an+area+of+land+the+size+of+oregon+there+s+one+road
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+narrow+ribbon+of+asphalt+that+slips+up+the+side+of+the+coast+mountains+to+the+yukon
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+followed+that+road+in+the+early+one+thousand+nine+hundred+and+seventy+s+soon+after+it+was+built+to+take+a+job+as+the
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=first+park+ranger+in+spatsizi+wilderness+my+job+description+was+deliciously+vague+wilderness+assessment+and+public+relations
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+two+four+month+seasons+i+saw+not+a+dozen+people+there+was+no+one+to+relate+publicly+to
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+in+the+course+of+these+wanderings+i+came+upon+an+old+shaman+s+grave+that+led+to+an+encounter+with+a+remarkable+man+alex+jack
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=an+gitxsan+elder+and+chief+who+had+lived+as+a+trapper+and+a+hunter+in+that+country+for+all+of+his+life
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+over+the+course+of+thirty+years+i+recorded+traditional+tales+from+alex
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=mostly+mythological+accounts+of+wy+ghet+the+trickster+transformer+of+gitxsan+lore+who+in+his+folly+taught+the+people+how+to+live+on+the+land
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+just+before+alex+died+at+the+age+of+ninety+six+he
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=gave+me+a+gift+it+was+a+tool+carved+from
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=caribou+bone+by+his+grandfather+in+one+thousand+nine+hundred+and+ten+and+it+turned+out+to+be+a+specialized+implement+used+by+a+trapper+to+skin+out+the+eyelids+of+wolves
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+only+when+alex+passed+away+that+i+realized+that+the+eyelids+in+some+sense+were+my+own+and+having+done+so+much+to+allow+me+to+learn
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+see+alex+in+his+own+way+was+saying+goodbye
found 1 videos: [['/talks/lemn_sissay_a_child_of_the_state', '2012']]
selected: /talks/lemn_sissay_a_child_of_the_state
sleep 2 seconds to avoid blocking
------<2295>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/WaelGhonim_2011X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+revolution+two+point+zero+no+one+was+a+hero++no+one+was+a+hero+because+everyone+was+a+hero
found 4 videos: [['/talks/joseph_nye_global_power_shifts', '2010'], ['/talks/bill_gates_innovating_to_zero', '2010'], ['/talks/colin_camerer_when_you_re_making_a_deal_what_s_going_on_in_your_brain', '2013'], ['/talks/read_montague_what_we_re_learning_from_5_000_brains', '2012']]
sleep 4 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+all+use+wikipedia+if+you+think+of+the+concept+of+wikipedia+where+everyone+is+collaborating+on+content+and+at+the+end+of+the+day+you+ve+built
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+largest+encyclopedia+in+the+world+from+just+an+idea+that+sounded+crazy+you+have+the+largest+encyclopedia+in+the+world
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+in+the+egyptian+revolution+the+revolution+two+point+zero++everyone+has+contributed+something++small+or+big++they+contributed+something
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+bring+us+one+of+the+most
found 6 videos: [['/talks/janine_di_giovanni_what_i_saw_in_the_war', '2013'], ['/talks/romulus_whitaker_the_real_danger_lurking_in_the_water', '2010'], ['/talks/rose_george_inside_the_secret_shipping_industry', '2013'], ['/talks/anil_ananthaswamy_what_it_takes_to_do_extreme_astrophysics', '2011'], ['/talks/hendrik_poinar_bring_back_the_woolly_mammoth', '2013'], ['/talks/dean_kamen_the_emotion_behind_invention', '2010']]
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=stories+in+the+history+of+mankind
found 5 videos: [['/talks/yann_arthus_bertrand_a_wide_angle_view_of_fragile_earth', '2009'], ['/talks/wael_ghonim_inside_the_egyptian_revolution', '2011'], ['/talks/shashi_tharoor_why_nations_should_pursue_soft_power', '2009'], ['/talks/didier_sornette_how_we_can_predict_the_next_financial_crisis', '2013'], ['/talks/michael_specter_the_danger_of_science_denial', '2010']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+it+comes+to+revolutions+it
found 16 videos: [['/talks/andrew_blum_discover_the_physical_side_of_the_internet', '2012'], ['/talks/wael_ghonim_inside_the_egyptian_revolution', '2011'], ['/talks/gregory_stock_to_upgrade_is_human', '2009'], ['/talks/amory_lovins_a_40_year_plan_for_energy', '2012'], ['/talks/jill_tarter_join_the_seti_search', '2009'], ['/talks/p_w_singer_military_robots_and_the_future_of_war', '2009'], ['/talks/juliana_rotich_meet_brck_internet_access_built_for_africa', '2013'], ['/talks/don_tapscott_four_principles_for_the_open_world', '2012'], ['/talks/srdja_popovic_how_to_topple_a_dictator', '2011'], ['/talks/jane_fonda_life_s_third_act', '2012'], ['/talks/beth_noveck_demand_a_more_open_source_government', '2012'], ['/talks/bahia_shehab_a_thousand_times_no', '2012'], ['/talks/shekhar_kapur_we_are_the_stories_we_tell_ourselves', '2010'], ['/talks/wadah_khanfar_a_historic_moment_in_the_arab_world', '2011'], ['/talks/catherine_mohr_surgery_s_past_present_and_robotic_future', '2009'], ['/talks/natasha_tsakos_a_multimedia_theatrical_adventure', '2009']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+actually+really+inspiring+to+see+all+these+egyptians+completely+changing
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+look+at+the+scene+egypt+for+thirty+years+had+been+in+a+downhill
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=going+into+a+downhill+everything+was+going
found 5 videos: [['/talks/shimon_schocken_what_a_bike_ride_can_teach_you', '2010'], ['/talks/andrew_solomon_depression_the_secret_we_share', '2013'], ['/talks/wael_ghonim_inside_the_egyptian_revolution', '2011'], ['/talks/jamie_heywood_the_big_idea_my_brother_inspired', '2010'], ['/talks/barry_schwartz_our_loss_of_wisdom', '2009']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=everything+was+going+wrong++we+only+ranked+high+when+it+comes+to+poverty
found 1 videos: [['/talks/wael_ghonim_inside_the_egyptian_revolution', '2011']]
selected: /talks/wael_ghonim_inside_the_egyptian_revolution
sleep 1 seconds to avoid blocking
------<2296>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/WaelGhonim_2015G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+you+want+to+liberate+a+society++all+you+need+is+the+internet+i+was+wrong
found 1 videos: [['/talks/wael_ghonim_let_s_design_social_media_that_drives_real_change', '2016']]
selected: /talks/wael_ghonim_let_s_design_social_media_that_drives_real_change
sleep 5 seconds to avoid blocking
------<2297>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/WandaDiazMerced_2016.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+was+a+star+like+everything+else++she+was+born++grew+to+be+around+thirty+times+the+mass+of+our+sun
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+lived+for+a+very+long+time
found 19 videos: [['/talks/manwar_ali_inside_the_mind_of_a_former_radical_jihadist', '2016'], ['/talks/alice_goffman_how_we_re_priming_some_kids_for_college_and_others_for_prison', '2015'], ['/talks/esther_sullivan_america_s_most_invisible_communities_mobile_home_parks', '2018'], ['/talks/latif_nasser_you_have_no_idea_where_camels_really_come_from', '2016'], ['/talks/martin_pistorius_how_my_mind_came_back_to_life_and_no_one_knew', '2015'], ['/talks/juan_enriquez_we_can_reprogram_life_how_to_do_it_wisely', '2016'], ['/talks/nizar_ibrahim_how_we_unearthed_the_spinosaurus', '2015'], ['/talks/kenneth_lacovara_hunting_for_dinosaurs_showed_me_our_place_in_the_universe', '2016'], ['/talks/jon_mooallem_how_the_teddy_bear_taught_us_compassion', '2014'], ['/talks/will_macaskill_what_are_the_most_important_moral_problems_of_our_time', '2018'], ['/talks/stella_young_i_m_not_your_inspiration_thank_you_very_much', '2014'], ['/talks/bj_miller_what_really_matters_at_the_end_of_life', '2015'], ['/talks/wanis_kabbaj_how_nationalism_and_globalism_can_coexist', '2018'], ['/talks/john_cary_how_architecture_can_create_dignity_for_all', '2018'], ['/talks/neha_narula_the_future_of_money', '2016'], ['/talks/mariano_sigman_your_words_may_predict_your_future_mental_health', '2016'], ['/talks/courtney_e_martin_the_new_american_dream', '2016'], ['/talks/theaster_gates_how_to_revive_a_neighborhood_with_imagination_beauty_and_art', '2015'], ['/talks/dambisa_moyo_economic_growth_has_stalled_let_s_fix_it', '2016']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=exactly+how+long+people+cannot+really+tell++just+like+everything+in+life++she+reached+the+end+of+her+regular+star+days
found 1 videos: [['/talks/wanda_diaz_merced_how_a_blind_astronomer_found_a_way_to_hear_the_stars', '2016']]
selected: /talks/wanda_diaz_merced_how_a_blind_astronomer_found_a_way_to_hear_the_stars
sleep 3 seconds to avoid blocking
------<2298>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/WanisKabbaj_2016S.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+people+are+obsessed+by+french+wines++others+love+playing+golf+or+devouring+literature
found 1 videos: [['/talks/wanis_kabbaj_what_a_driverless_world_could_look_like', '2016']]
selected: /talks/wanis_kabbaj_what_a_driverless_world_could_look_like
sleep 4 seconds to avoid blocking
------<2299>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/WayneMcGregor_2012G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=as+you+might+imagine+i+m+absolutely+passionate+about+dance++i+m+passionate+about+making+it+about+watching+it+about+encouraging+others+to+participate+in+it+and+i+m+also+really+passionate+about+creativity
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=something+that+s+absolutely+critical+and+i+think+it+s+something+that+you+can+teach+i+think+the+technicities+of+creativity+can+be+taught+and+shared++and+i+think+you+can+find+out+things+about+your+own+personal+physical
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=signature+your+own+cognitive+habits+and+use+that+as+a+point+of+departure+to+misbehave+beautifully
found 1 videos: [['/talks/wayne_mcgregor_a_choreographer_s_creative_process_in_real_time', '2012']]
selected: /talks/wayne_mcgregor_a_choreographer_s_creative_process_in_real_time
sleep 4 seconds to avoid blocking
------<2300>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/WendyChung_2014.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+a+question+that+parents+ask+me+all+the+time
found 16 videos: [['/talks/courtney_e_martin_the_new_american_dream', '2016'], ['/talks/dan_gilbert_the_psychology_of_your_future_self', '2014'], ['/talks/j_d_vance_america_s_forgotten_working_class', '2016'], ['/talks/jessica_shortall_the_us_needs_paid_family_leave_for_the_sake_of_its_future', '2015'], ['/talks/dambisa_moyo_economic_growth_has_stalled_let_s_fix_it', '2016'], ['/talks/heather_brooke_my_battle_to_expose_government_corruption', '2012'], ['/talks/mac_barnett_why_a_good_book_is_a_secret_door', '2014'], ['/talks/ricardo_semler_how_to_run_a_company_with_almost_no_rules', '2015'], ['/talks/taiye_selasi_don_t_ask_where_i_m_from_ask_where_i_m_a_local', '2015'], ['/talks/ash_beckham_we_re_all_hiding_something_let_s_find_the_courage_to_open_up', '2014'], ['/talks/andrew_solomon_love_no_matter_what', '2013'], ['/talks/anders_fjellberg_two_nameless_bodies_washed_up_on_the_beach_here_are_their_stories', '2015'], ['/talks/linda_cliatt_wayman_how_to_fix_a_broken_school_lead_fearlessly_love_hard', '2015'], ['/talks/juan_enriquez_will_our_kids_be_a_different_species', '2012'], ['/talks/laura_vanderkam_how_to_gain_control_of_your_free_time', '2016'], ['/talks/andrew_solomon_depression_the_secret_we_share', '2013']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=why+did+my+child+develop+autism+as+a+pediatrician+as+a+geneticist+as+a+researcher
found 1 videos: [['/talks/wendy_chung_autism_what_we_know_and_what_we_don_t_know_yet', '2014']]
selected: /talks/wendy_chung_autism_what_we_know_and_what_we_don_t_know_yet
sleep 3 seconds to avoid blocking
------<2301>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/WendyFreedman_2014G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+i+was+fourteen+years+old+i+was+interested+in+science+fascinated+by+it+excited+to+learn+about+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+had+a+high+school+science+teacher+who+would+say+to+the+class+the
found 12 videos: [['/talks/tyler_dewitt_hey_science_teachers_make_it_fun', '2013'], ['/talks/freeman_hrabowski_4_pillars_of_college_success_in_science', '2013'], ['/talks/wendy_freedman_this_telescope_might_show_us_the_beginning_of_the_universe', '2015'], ['/talks/andrew_solomon_how_the_worst_moments_in_our_lives_make_us_who_we_are', '2014'], ['/talks/sajay_samuel_how_college_loans_exploit_students_for_profit', '2016'], ['/talks/daphne_koller_what_we_re_learning_from_online_education', '2012'], ['/talks/bill_gates_teachers_need_real_feedback', '2013'], ['/talks/michael_bodekaer_this_virtual_lab_will_revolutionize_science_class', '2016'], ['/talks/sir_ken_robinson_how_to_escape_education_s_death_valley', '2013'], ['/talks/alice_goffman_how_we_re_priming_some_kids_for_college_and_others_for_prison', '2015'], ['/talks/keith_nolan_deaf_in_the_military', '2012'], ['/talks/shawn_achor_the_happy_secret_to_better_work', '2012']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+chose+not+to+listen+but+to+that+statement+alone
found 3 videos: [['/talks/wendy_freedman_this_telescope_might_show_us_the_beginning_of_the_universe', '2015'], ['/talks/kelly_mcgonigal_how_to_make_stress_your_friend', '2013'], ['/talks/kevin_rudd_are_china_and_the_us_doomed_to_conflict', '2015']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+let+me+take+you+to+the+andes+mountains+in+chile++five+hundred+kilometers+three+hundred+miles+northeast+of+santiago
found 1 videos: [['/talks/wendy_freedman_this_telescope_might_show_us_the_beginning_of_the_universe', '2015']]
selected: /talks/wendy_freedman_this_telescope_might_show_us_the_beginning_of_the_universe
sleep 2 seconds to avoid blocking
------<2302>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/WendyTroxel_2016X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+s+six+o+clock+in+the+morning++pitch+black+outside
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+14+year+old+son+is+fast+asleep+in+his+bed++sleeping+the+reckless++deep+sleep+of+a+teenager
found 1 videos: [['/talks/wendy_troxel_why_school_should_start_later_for_teens', '2017']]
selected: /talks/wendy_troxel_why_school_should_start_later_for_teens
sleep 5 seconds to avoid blocking
------<2303>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/WesMoore_2014S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+m+excited+to+be+here+to+speak+about+vets+because+i+didn+t+join+the+army+because+i+wanted+to+go+to+war+i+didn+t+join+the+army+because+i+had+a+lust
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+a+need+to+go+overseas+and+fight
error: request timeout
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=college+is+really+damn+expensive+and+they+were+going+to+help+with+that++and+i+joined+the+army
found 1 videos: [['/talks/wes_moore_how_to_talk_to_veterans_about_war', '2014']]
selected: /talks/wes_moore_how_to_talk_to_veterans_about_war
sleep 5 seconds to avoid blocking
------<2304>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/WillardWigan_2009G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+i+wanted+to+do+is+to
found 4 videos: [['/talks/clifford_stoll_the_call_to_learn', '2008'], ['/talks/matt_cutts_try_something_new_for_30_days', '2011'], ['/talks/david_blaine_how_i_held_my_breath_for_17_minutes', '2010'], ['/talks/ory_okolloh_how_i_became_an_activist', '2008']]
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+the+little+things+can+be
found 7 videos: [['/talks/charles_fleischer_all_things_are_moleeds', '2010'], ['/talks/george_whitesides_a_lab_the_size_of_a_postage_stamp', '2010'], ['/talks/willard_wigan_hold_your_breath_for_micro_sculpture', '2009'], ['/talks/alex_steffen_the_shareable_future_of_cities', '2011'], ['/talks/jill_sobule_julia_sweeney_the_jill_and_julia_show', '2008'], ['/talks/jean_baptiste_michel_erez_lieberman_aiden_what_we_learned_from_5_million_books', '2011'], ['/talks/joshua_prince_ramus_building_a_theater_that_remakes_itself', '2010']]
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+all+seem+to+think+that
found 4 videos: [['/talks/steven_pinker_the_surprising_decline_in_violence', '2007'], ['/talks/alison_jackson_an_unusual_glimpse_at_celebrity', '2008'], ['/talks/temple_grandin_the_world_needs_all_kinds_of_minds', '2010'], ['/talks/thulasiraj_ravilla_how_low_cost_eye_care_can_be_world_class', '2009']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+know+if+we+look+down+on+the+ground+there+s+nothing+there++and+we+use+the+word+nothing
found 3 videos: [['/talks/eames_demetrios_the_design_genius_of_charles_ray_eames', '2009'], ['/talks/simon_lewis_don_t_take_consciousness_for_granted', '2011'], ['/talks/bill_strickland_rebuilding_a_neighborhood_with_beauty_dignity_hope', '2008']]
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+there+is+always+something+my+mother+told+me+that++when+i+was+a+child+that+i+should+always+respect+the+little+things
found 4 videos: [['/talks/willard_wigan_hold_your_breath_for_micro_sculpture', '2009'], ['/talks/jane_goodall_what_separates_us_from_chimpanzees', '2007'], ['/talks/anna_deavere_smith_four_american_characters', '2007'], ['/talks/sam_harris_science_can_answer_moral_questions', '2010']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+made+me+do+this+work+i+shall+go+into+my+my+story+this+all+started+when+i+was+age+five
found 10 videos: [['/talks/willard_wigan_hold_your_breath_for_micro_sculpture', '2009'], ['/talks/moshe_safdie_building_uniqueness', '2008'], ['/talks/doris_kearns_goodwin_lessons_from_past_presidents', '2008'], ['/talks/john_bohannon_dance_vs_powerpoint_a_modest_proposal', '2011'], ['/talks/marc_pachter_the_art_of_the_interview', '2009'], ['/talks/elif_shafak_the_politics_of_fiction', '2010'], ['/talks/jane_goodall_what_separates_us_from_chimpanzees', '2007'], ['/talks/louise_fresco_we_need_to_feed_the_whole_world', '2009'], ['/talks/james_nachtwey_my_wish_let_my_photographs_bear_witness', '2007'], ['/talks/carl_safina_the_oil_spill_s_unseen_villains_and_victims', '2010']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+made+me+do+it++at+school++i+will+admit+this+academically+i+couldn+t+express+myself+so
found 0 videos: []
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+world+was+seen+as+less++so
found 9 videos: [['/talks/willard_wigan_hold_your_breath_for_micro_sculpture', '2009'], ['/talks/roger_doiron_my_subversive_garden_plot', '2011'], ['/talks/hans_rosling_let_my_dataset_change_your_mindset', '2009'], ['/talks/pete_alcorn_the_world_in_2200', '2009'], ['/talks/john_lloyd_an_inventory_of_the_invisible', '2009'], ['/talks/geoff_mulgan_post_crash_investing_in_a_better_world', '2009'], ['/talks/philip_rosedale_life_in_second_life', '2008'], ['/talks/josette_sheeran_ending_hunger_now', '2011'], ['/talks/deborah_rhodes_a_test_that_finds_3x_more_breast_tumors_and_why_it_s_not_available_to_you', '2011']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+decided+i+didn+t+really+want+to+be+a+part+of+that+world++i+thought+i+need+to+retreat
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=into+something+else++so+when+my+mother+used+to+take+me+to+school+she+thought+i+was+at+school+and+i+used+to
found 8 videos: [['/talks/john_maeda_my_journey_in_design', '2009'], ['/talks/willard_wigan_hold_your_breath_for_micro_sculpture', '2009'], ['/talks/raghava_kk_my_5_lives_as_an_artist', '2010'], ['/talks/richard_branson_life_at_30_000_feet', '2007'], ['/talks/paul_zak_trust_morality_and_oxytocin', '2011'], ['/talks/temple_grandin_the_world_needs_all_kinds_of_minds', '2010'], ['/talks/maira_kalman_the_illustrated_woman', '2007'], ['/talks/dan_gilbert_why_we_make_bad_decisions', '2008']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=do+a+u+turn+when+her+back+was+turned+and+run+off+and+hide+in+the+shed+at+the+back+of+the+garden
found 1 videos: [['/talks/willard_wigan_hold_your_breath_for_micro_sculpture', '2009']]
selected: /talks/willard_wigan_hold_your_breath_for_micro_sculpture
sleep 3 seconds to avoid blocking
------<2305>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/WilliamBlack_2013X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=today+s+top+chef+class+is+in+how+to+rob+a+bank+and+it+s+clear+that+the+general+public+needs+guidance
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+the+average+bank+robbery+nets+only+seven+thousand+five+hundred+dollars+rank+amateurs+who+know+nothing+about+how+to+cook+the+books
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+folks+who+know+of+course+run+our+largest+banks+and+in+the+last+go+around+they+cost+us+over+eleven+trillion
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=dollars+that+s+what+eleven+trillion+looks+like+that+s+how+many+zeros+and+cost+us+over+ten+million+jobs+as+well
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=intensifying+financial+crises+and+how+we+can+prevent+them+in+the+future
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+answer+to+that+is+that+we+have+to+stop+epidemics+of+control+fraud
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=control+fraud+is+what+happens+when+the+people+who+control+typically+a+ceo+a+seemingly+legitimate+entity+use+it+as+a+weapon+to+defraud+and+these+are+the+weapons+of+mass
error: request timeout
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+also+follow+in+finance+a+particular+strategy++because+the+weapon+of+choice+in+finance+is+accounting
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+there+is+a+recipe+for+accounting
found 1 videos: [['/talks/william_black_how_to_rob_a_bank_from_the_inside_that_is', '2014']]
selected: /talks/william_black_how_to_rob_a_bank_from_the_inside_that_is
sleep 3 seconds to avoid blocking
------<2306>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/WilliamKamkwamba_2007G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ve+got+a+picture+i+think+where+is+this+wk+this+is+my+home
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+what+did+you+do+how+did+you+realize+that
found 1 videos: [['/talks/tim_berners_lee_the_next_web', '2009']]
selected: /talks/tim_berners_lee_the_next_web
sleep 2 seconds to avoid blocking
------<2307>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/WilliamKamkwamba_2009G.stm
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=two+years+ago++i+stood+on+the+ted+stage+in+arusha+tanzania
found 1 videos: [['/talks/william_kamkwamba_how_i_harnessed_the_wind', '2009']]
selected: /talks/william_kamkwamba_how_i_harnessed_the_wind
sleep 3 seconds to avoid blocking
------<2308>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/WilliamLi_2010.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=there+s+a+medical+revolution+happening+all+around+us+and+it+s+one+that+s+going+to+help+us+conquer+some+of+society+s+most+dreaded+conditions++including+cancer
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+revolution+is+called+angiogenesis+and+it+s+based+on+the
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=process+that+our+bodies+use+to+grow+blood+vessels++so+why+should+we+care+about+blood+vessels++well+the+human+body+is+literally+packed+with+them
found 1 videos: [['/talks/william_li_can_we_eat_to_starve_cancer', '2010']]
selected: /talks/william_li_can_we_eat_to_starve_cancer
sleep 2 seconds to avoid blocking
------<2309>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/WilliamMcDonough_2005.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+think+for+for+people+like+me+in+the+world+of+the+making+of+things++the+canary+in+the+mine+wasn+t
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+so+the+question+that+we+might+not+have+birds
found 1 videos: [['/talks/e_o_wilson_my_wish_build_the_encyclopedia_of_life', '2007']]
selected: /talks/e_o_wilson_my_wish_build_the_encyclopedia_of_life
sleep 1 seconds to avoid blocking
------<2310>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/WilliamNoel_2012S.stm
sleep 2 seconds to avoid blocking
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=don+t+survive+to+us+in+their+original+form++they+survive+because+medieval+scribes+copied+them+and+copied+them+and+copied+them+and+so+it+is
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+great+greek+mathematician+everything+we+know+about+archimedes+as+a+mathematician+we+know+about+because+of+just+three+books++and+they+re+called+a+b+and+c
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+a+was+lost+by+an+italian+humanist+in
found 1 videos: [['/talks/william_noel_revealing_the_lost_codex_of_archimedes', '2012']]
selected: /talks/william_noel_revealing_the_lost_codex_of_archimedes
sleep 4 seconds to avoid blocking
------<2311>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/WilliamUry_2010X.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+subject+of+difficult+negotiation+reminds+me+of+one+of+my+favorite+stories+from+the+middle+east+of
found 1 videos: [['/talks/william_ury_the_walk_from_no_to_yes', '2010']]
selected: /talks/william_ury_the_walk_from_no_to_yes
sleep 5 seconds to avoid blocking
------<2312>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/WillieSmits_2009.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+walking+in+the+market+one+day+with+my+wife++and+somebody+stuck+a+cage+in+my+face+and+in+between+those+slits
found 1 videos: [['/talks/willie_smits_how_to_restore_a_rainforest', '2009']]
selected: /talks/willie_smits_how_to_restore_a_rainforest
sleep 4 seconds to avoid blocking
------<2313>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/WillMarshall_2014.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=needs+no+introduction+it+needs+no+introduction+in+part+because+the+apollo+seventeen+astronauts+when+they+were+hurtling+around+the+moon
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=beings+to+realize+that+we+re+on+spaceship+earth
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fragile+and+finite+as+it+is+and+that+we+need+to+take+care+of+it++but+while+this+picture+is+beautiful++it+s+static++and+the+earth+is+constantly+changing+it
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=s+changing+on+days++time+scales+with+human+activity
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+the+satellite+imagery+we+have+of+it+today+is+old
found 5 videos: [['/talks/dan_berkenstock_the_world_is_one_big_dataset_now_how_to_photograph_it', '2014'], ['/talks/will_marshall_tiny_satellites_show_us_the_earth_as_it_changes_in_near_real_time', '2014'], ['/talks/sarah_parcak_hunting_for_peru_s_lost_civilizations_with_satellites', '2016'], ['/talks/david_rothkopf_how_fear_drives_american_politics', '2015'], ['/talks/marc_goodman_a_vision_of_crimes_in_the_future', '2012']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+that+s+important+because+you+can+t+fix+what+you+can+t+see+what+we+d+ideally+want+is+images+of+the+whole+planet+every+day
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+what+s+standing+in+our+way+what+s+the+problem
found 5 videos: [['/talks/neha_narula_the_future_of_money', '2016'], ['/talks/karima_bennoune_when_people_of_muslim_heritage_challenge_fundamentalism', '2014'], ['/talks/alex_wissner_gross_a_new_equation_for_intelligence', '2014'], ['/talks/harry_baker_a_love_poem_for_lonely_prime_numbers', '2015'], ['/talks/adam_driver_my_journey_from_marine_to_actor', '2016']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+the+problem+satellites+are+big+expensive+and+they+re+slow++this+one+weighs+three+tons++it+s+six
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=four+meters+wide++it+took+up+the+entire+fairing+of+a+rocket+just+to+launch+it+one+satellite+one+rocket++it+cost+eight+hundred+and+fifty+five+million+dollars
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=satellites+like+these+have+done+an+amazing+job+at+helping+us+to+understand+our+planet
found 1 videos: [['/talks/will_marshall_tiny_satellites_show_us_the_earth_as_it_changes_in_near_real_time', '2014']]
selected: /talks/will_marshall_tiny_satellites_show_us_the_earth_as_it_changes_in_near_real_time
sleep 5 seconds to avoid blocking
------<2314>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/WillPotter_2014U.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=less+than+a+year+after+september+eleven+and+i+was+at+the+chicago+tribune+writing+about+shootings+and+murders+and+it+was+leaving+me+feeling+pretty+dark+and+depressed
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+had+done+some+activism+in+college+so+i+decided+to+help+a+local+group+hang+door+knockers+against+animal+testing
found 1 videos: [['/talks/will_potter_the_shocking_move_to_criminalize_nonviolent_protest', '2014']]
selected: /talks/will_potter_the_shocking_move_to_criminalize_nonviolent_protest
sleep 1 seconds to avoid blocking
------<2315>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/WillPotter_2015F.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=father+daniel+berrigan+once+said+that+writing+about+prisoners+is+a+little+like+writing+about+the+dead
found 1 videos: [['/talks/will_potter_the_secret_us_prisons_you_ve_never_heard_of_before', '2015']]
selected: /talks/will_potter_the_secret_us_prisons_you_ve_never_heard_of_before
sleep 4 seconds to avoid blocking
------<2316>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/WillWright_2007.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+be+a+cyborg+one+of+my+favorite+shows+as+a+kid+was+the+six+million+dollar+man
found 1 videos: [['/talks/will_wright_spore_birth_of_a_game', '2007']]
selected: /talks/will_wright_spore_birth_of_a_game
sleep 1 seconds to avoid blocking
------<2317>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/WinghamRowan_2012S.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+about+a+hidden+corner+of+the+labor+market++it+s+the+world+of+people+who+need+to+work+ultra+flexibly+if+they+re+to+work+at+all
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+think+for+instance+of+someone+who+has+a+recurring+but+unpredictable+medical
found 1 videos: [['/talks/wingham_rowan_a_new_kind_of_job_market', '2013']]
selected: /talks/wingham_rowan_a_new_kind_of_job_market
sleep 1 seconds to avoid blocking
------<2318>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/WolfgangKessling_2012S.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+we+are+enjoying+ourselves+in+that+mild+evening+temperature+tonight++but
found 1 videos: [['/talks/wolfgang_kessling_how_to_air_condition_outdoor_spaces', '2012']]
selected: /talks/wolfgang_kessling_how_to_air_condition_outdoor_spaces
sleep 5 seconds to avoid blocking
------<2319>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/WoodyNorris_2004.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+working+at+the+university+of+washington+and+i+came+up+with+an+idea
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=from+reading+a+magazine+article+for+a+new+kind+of+a+phonograph+tone+arm+now+that+was+before+cassette+tapes+c+d+s+dvds+any+of+the+cool+stuff+we+ve+got+now
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+was+an+arm+that+instead+of+hinging
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+pivoting+as+it+went+across+the+record+went+straight+a+radial+linear+tracking+tone+arm
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+it+was+the+hardest+invention+i+ever+made++but+it+got+me+started++and
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+got+really+lucky+after+that+and+without+giving+you+too+much+of+a+tirade+i+want+to+talk+to+you+about+an+invention+i+brought+with+me+today
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+44th+invention+no+that+s+not+true+either++golly+i+m+just+totally+losing+it+my+44th+patent+about+the+15th+invention+i+call+this
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=hypersonic+sound+i+m+going+to+play+it+for+you+in+a+couple+minutes+but+i+want+to+make+an+analogy+before+i+do+to
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this++i+usually+show+this+hypersonic+sound+and+people+will+say+that+s+really+cool+but+what+s+it+good+for
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+say++what+is+the+light+bulb+good+for+sound+light+i+m+going+to+draw+the+analogy
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+edison+invented+the+light+bulb+pretty+much+looked+like+this+hasn+t+changed+that+much
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=light+came+out+of+it+in+every+direction
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=before+the+light+bulb+was+invented+people+had+figured+out+how+to+put+a+reflector+behind+it
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=focus+it+a+little+bit+put+lenses+in+front+of+it++focus+it+a+little+bit+better
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ultimately+we+figured+out+how+to+make+things+like+lasers+that+were+totally+focused++now+think+about+where+the+world+would+be+today
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=if+we+had+the+light+bulb
found 1 videos: [['/talks/nicholas_negroponte_one_laptop_per_child', '2006']]
selected: /talks/nicholas_negroponte_one_laptop_per_child
sleep 4 seconds to avoid blocking
------<2320>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/XavierVilalta_2013G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+work+focuses+on+the+connection+of+both+thinking+about+our+community+life+being+part+of+the+environment
found 1 videos: [['/talks/xavier_vilalta_architecture_at_home_in_its_community', '2013']]
selected: /talks/xavier_vilalta_architecture_at_home_in_its_community
sleep 5 seconds to avoid blocking
------<2321>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/XDRTB_2008.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=a+time+of+social+upheaval+and+questioning+and+on+a+personal+level+an+awakening+sense+of+idealism
found 2 videos: [['/talks/james_nachtwey_moving_photos_of_extreme_drug_resistant_tb', '2008'], ['/talks/james_nachtwey_my_wish_let_my_photographs_bear_witness', '2007']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+war+in+vietnam+was+raging+the+civil+rights+movement
found 2 videos: [['/talks/james_nachtwey_my_wish_let_my_photographs_bear_witness', '2007'], ['/talks/james_nachtwey_moving_photos_of_extreme_drug_resistant_tb', '2008']]
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+pictures+had+a+powerful+influence+on+me
found 10 videos: [['/talks/james_nachtwey_moving_photos_of_extreme_drug_resistant_tb', '2008'], ['/talks/christopher_moot_poole_the_case_for_anonymity_online', '2010'], ['/talks/james_cameron_before_avatar_a_curious_boy', '2010'], ['/talks/james_nachtwey_my_wish_let_my_photographs_bear_witness', '2007'], ['/talks/naif_al_mutawa_superheroes_inspired_by_islam', '2010'], ['/talks/mena_trott_meet_the_founder_of_the_blog_revolution', '2006'], ['/talks/mae_jemison_teach_arts_and_sciences_together', '2009'], ['/talks/lawrence_lessig_re_examining_the_remix', '2010'], ['/talks/norman_foster_my_green_agenda_for_architecture', '2008'], ['/talks/michael_shermer_the_pattern_behind_self_deception', '2010']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=our+political+and+military+leaders+were+telling+us+one+thing+and+photographers+were+telling+us+another
found 2 videos: [['/talks/james_nachtwey_my_wish_let_my_photographs_bear_witness', '2007'], ['/talks/james_nachtwey_moving_photos_of_extreme_drug_resistant_tb', '2008']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+believed+the+photographers+and+so+did+millions+of+other+americans
found 5 videos: [['/talks/james_nachtwey_my_wish_let_my_photographs_bear_witness', '2007'], ['/talks/james_nachtwey_moving_photos_of_extreme_drug_resistant_tb', '2008'], ['/talks/jonathan_klein_photos_that_changed_the_world', '2010'], ['/talks/rick_smolan_the_story_of_a_girl', '2008'], ['/talks/james_balog_time_lapse_proof_of_extreme_ice_loss', '2009']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=their+images+fuelled+resistance+to+the+war+and+to+racism+they+not+only+recorded+history+they+helped+change+the+course+of+history
found 2 videos: [['/talks/james_nachtwey_moving_photos_of_extreme_drug_resistant_tb', '2008'], ['/talks/james_nachtwey_my_wish_let_my_photographs_bear_witness', '2007']]
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=became+part+of+our+collective+consciousness+and+as+consciousness+evolved+into+a+shared+sense+of+conscience+change+became+not+only+possible+but+inevitable
found 2 videos: [['/talks/james_nachtwey_moving_photos_of_extreme_drug_resistant_tb', '2008'], ['/talks/james_nachtwey_my_wish_let_my_photographs_bear_witness', '2007']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+puts+a+human+face+on+issues+which+from+afar+can+appear+abstract+or+ideological+or+monumental+in+their+global+impact
found 2 videos: [['/talks/james_nachtwey_moving_photos_of_extreme_drug_resistant_tb', '2008'], ['/talks/james_nachtwey_my_wish_let_my_photographs_bear_witness', '2007']]
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=far+from+the+halls+of+power+happens+to+ordinary
found 3 videos: [['/talks/james_nachtwey_my_wish_let_my_photographs_bear_witness', '2007'], ['/talks/james_nachtwey_moving_photos_of_extreme_drug_resistant_tb', '2008'], ['/talks/barry_schwartz_our_loss_of_wisdom', '2009']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=citizens+one+by+one+and+i+understood+that+documentary+photography+has+the+ability+to+interpret+events+from+their+point+of+view
found 2 videos: [['/talks/james_nachtwey_moving_photos_of_extreme_drug_resistant_tb', '2008'], ['/talks/james_nachtwey_my_wish_let_my_photographs_bear_witness', '2007']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+gives+a+voice+to+those+who+otherwise+would+not+have+a+voice+my+ted+wish
found 9 videos: [['/talks/james_nachtwey_my_wish_let_my_photographs_bear_witness', '2007'], ['/talks/james_nachtwey_moving_photos_of_extreme_drug_resistant_tb', '2008'], ['/talks/steven_johnson_the_web_as_a_city', '2008'], ['/talks/jehane_noujaim_my_wish_a_global_day_of_film', '2006'], ['/talks/aimee_mullins_the_opportunity_of_adversity', '2010'], ['/talks/jamais_cascio_tools_for_a_better_world', '2009'], ['/talks/evgeny_morozov_how_the_net_aids_dictatorships', '2009'], ['/talks/sarah_jones_a_one_woman_global_village', '2009'], ['/talks/elif_shafak_the_politics_of_fiction', '2010']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=theres+a+vital+story+that+needs+to+be+told
found 8 videos: [['/talks/james_nachtwey_moving_photos_of_extreme_drug_resistant_tb', '2008'], ['/talks/gordon_brown_global_ethic_vs_national_interest', '2009'], ['/talks/james_nachtwey_my_wish_let_my_photographs_bear_witness', '2007'], ['/talks/sir_ken_robinson_bring_on_the_learning_revolution', '2010'], ['/talks/george_dyson_the_birth_of_the_computer', '2008'], ['/talks/jonathan_zittrain_the_web_as_random_acts_of_kindness', '2009'], ['/talks/shashi_tharoor_why_nations_should_pursue_soft_power', '2009'], ['/talks/sarah_jones_a_one_woman_global_village', '2009']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+wish+for+ted+to+help+me+gain+access+to+it
found 5 videos: [['/talks/james_nachtwey_my_wish_let_my_photographs_bear_witness', '2007'], ['/talks/james_nachtwey_moving_photos_of_extreme_drug_resistant_tb', '2008'], ['/talks/eric_dishman_take_health_care_off_the_mainframe', '2010'], ['/talks/aaron_huey_america_s_native_prisoners_of_war', '2010'], ['/talks/greg_stone_saving_the_ocean_one_island_at_a_time', '2010']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+then+to+help+me+come+up+with+innovative+and+exciting
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=ways+to+use+news+photography+in+the+digital+era++thank+you+very+much
error: request timeout
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
selected: /talks/james_nachtwey_my_wish_let_my_photographs_bear_witness
sleep 1 seconds to avoid blocking
------<2322>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/YangLan_2011G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+night+before+i+was+heading+for+scotland+i+was+invited+to+host+the+final+of+china+s+got+talent+show+in+shanghai
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+the+eighty+thousand+live+audience+in+the+stadium+guess+who+was+the+performing+guest++susan+boyle
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+i+told+her+i+m+going+to+scotland+the+next+day
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=she+sang+beautifully++and+she+even+managed+to+say+a+few+words+in+chinese
found 1 videos: [['/talks/yang_lan_the_generation_that_s_remaking_china', '2011']]
selected: /talks/yang_lan_the_generation_that_s_remaking_china
sleep 4 seconds to avoid blocking
------<2323>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/YanisVaroufakis_2015G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+west+we+make+a+colossal+mistake
error: request timeout
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+see+democracy+not+as+the+most+fragile+of+flowers+that+it+really+is+but+we+see+it+as+part+of+our+society+s+furniture
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+tend+to+think+of+it+as+an+intransigent+given
found 1 videos: [['/talks/yanis_varoufakis_capitalism_will_eat_democracy_unless_we_speak_up', '2016']]
selected: /talks/yanis_varoufakis_capitalism_will_eat_democracy_unless_we_speak_up
sleep 3 seconds to avoid blocking
------<2324>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/YannArthusBertrand_2009.stm
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+travel+here+by+plane++i+emitted+in+the+atmosphere++nine+tons+of+co2
found 1 videos: [['/talks/yann_arthus_bertrand_a_wide_angle_view_of_fragile_earth', '2009']]
selected: /talks/yann_arthus_bertrand_a_wide_angle_view_of_fragile_earth
sleep 2 seconds to avoid blocking
------<2325>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/YashengHuang_2011G.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+topic+is+economic+growth+in+china+and+india+and+the+question+i+want+to+explore+with+you
found 1 videos: [['/talks/yasheng_huang_does_democracy_stifle_economic_growth', '2011']]
selected: /talks/yasheng_huang_does_democracy_stifle_economic_growth
sleep 5 seconds to avoid blocking
------<2326>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/YassminAbdelMagied_2014X.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=someone+who+looks+like+me+walks+past+you+in+the+street+do+you+think+they+re+a+mother+a+refugee
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=or+a+victim+of+oppression+or+do+you+think+they+re+a+cardiologist+a+barrister+or+maybe+your+local+politician
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=do+you+look+me+up+and+down+wondering+how+hot+i+must+get+or+if+my+husband+has+forced+me+to+wear+this+outfit
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=what+if+i+wore+my+scarf+like+this
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+can+walk+down+the+street+in+the+exact+same+outfit+and+what+the+world+expects+of+me+and+the+way+i+m+treated+depends+on+the+arrangement+of+this+piece+of+cloth
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+this+isn+t+going+to+be+another+monologue
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+the+hijab+because+lord+knows+muslim+women+are+so+much+more+than+the+piece+of+cloth+they+choose+or+not+to+wrap+their+head+in
found 1 videos: [['/talks/yassmin_abdel_magied_what_does_my_headscarf_mean_to_you', '2015']]
selected: /talks/yassmin_abdel_magied_what_does_my_headscarf_mean_to_you
sleep 4 seconds to avoid blocking
------<2327>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/YoavMedan_2011P.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=thirteen+years+one+three+thirteen+years+i+ve+been+part+of+an+exceptional+team+at+insightec+in+israel
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+partners+around+the+world+for+taking+this+idea+this+concept+noninvasive+surgery+from+the+research+lab
found 1 videos: [['/talks/yoav_medan_ultrasound_surgery_healing_without_cuts', '2011']]
selected: /talks/yoav_medan_ultrasound_surgery_healing_without_cuts
sleep 3 seconds to avoid blocking
------<2328>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/YochaiBenkler_2005G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+of+the+problems+of+writing++and+working+and+looking+at+the+internet+is+that+it+s+very+hard+to+separate+fashion+from
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=deep+change+and+so+to+start+helping+that+i+want+to+take+us+back+to
found 3 videos: [['/talks/jane_goodall_what_separates_us_from_chimpanzees', '2007'], ['/talks/ze_frank_nerdcore_comedy', '2006'], ['/talks/jacqueline_novogratz_patient_capitalism', '2007']]
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=newspaper+in+new+york+city++and+it+cost+about+five+hundred+dollars
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=to+start+it+which+was+about+about+the+equivalent+of+ten+thousand+dollars+of+today++by+fifteen+years+later+by
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=fifteen+years+that+s+the+critical+change+that+is+being+inverted
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=by+the+net++and+that+s+what+i+want+to+talk+about+today++and+how+that+relates+to+the+emergence+of+social+production
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=starting+with+newspapers++what+we+saw+was
found 3 videos: [['/talks/peter_gabriel_fight_injustice_with_raw_video', '2006'], ['/talks/jimmy_wales_the_birth_of_wikipedia', '2006'], ['/talks/carl_honore_in_praise_of_slowness', '2007']]
sleep 2 seconds to avoid blocking
sleep 2 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=initial+requirement+for+making+information+knowledge+and
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=culture++which+led+to+a+stark+bifurcation+between+producers+who+had+to+be+able+to+raise+financial+capital+just+like+any+other+industrial
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=organization+and+passive+consumers+that+could+choose+from+a+certain+set+of+things+that+this+industrial+model+could
found 0 videos: []
sleep 4 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=for+a+very+long+time+has+been+used+as+the+thing+that+comes+after+the+industrial
found 4 videos: [['/talks/barry_schwartz_the_paradox_of_choice', '2006'], ['/talks/robert_fischell_my_wish_three_unusual_medical_inventions', '2006'], ['/talks/edward_burtynsky_my_wish_manufactured_landscapes_and_green_education', '2006'], ['/talks/amory_lovins_winning_the_oil_endgame', '2007']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=revolution++but+in+fact+for+purposes+of+understanding+what+s+happening+today+that+s+wrong
found 0 videos: []
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=because+for+one+hundred+and+fifty+years+we+ve+had+an+information+economy++it+s+just+been+industrial
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=which+means+those+who+were+producing+had+to+have+a+way+of+raising+money+to
found 1 videos: [['/talks/iqbal_quadir_how_mobile_phones_can_fight_poverty', '2006']]
selected: /talks/iqbal_quadir_how_mobile_phones_can_fight_poverty
sleep 4 seconds to avoid blocking
------<2329>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/YorubaRichen_2014.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=election+night+two+thousand+and+eight
found 2 videos: [['/talks/boniface_mwangi_the_day_i_stood_up_alone', '2015'], ['/talks/thomas_hellum_the_world_s_most_boring_television_and_why_it_s_hilariously_addictive', '2014']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=was+a+night+that+tore+me+in+half++it+was+the+night+that+barack+obama+was+elected+[+one+hundred+and+forty+three+]
found 1 videos: [['/talks/yoruba_richen_what_the_gay_rights_movement_learned_from_the_civil_rights_movement', '2014']]
selected: /talks/yoruba_richen_what_the_gay_rights_movement_learned_from_the_civil_rights_movement
sleep 1 seconds to avoid blocking
------<2330>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/YossiVardi_2007.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+are+going+to+talk+today+about+the+sequel+of+inconvenient+truth+it+s+time+again+to+talk+about+inconvenient
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=truth+a+truth+that+everyone+is+concerned
found 1 videos: [['/talks/yossi_vardi_we_re_worried_about_local_warming_in_your_lap', '2008']]
selected: /talks/yossi_vardi_we_re_worried_about_local_warming_in_your_lap
sleep 1 seconds to avoid blocking
------<2331>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/YuvalNoahHarari_2015G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=years+ago+our+ancestors+were+insignificant+animals
found 1 videos: [['/talks/yuval_noah_harari_what_explains_the_rise_of_humans', '2015']]
selected: /talks/yuval_noah_harari_what_explains_the_rise_of_humans
sleep 3 seconds to avoid blocking
------<2332>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/YuvalNoahHarari_2017S.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+first+of+a+series+that+s+going+to+be+done+in+response+to+the+current+political+upheaval+i+don+t+know
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=about+you+i+ve+become+quite+concerned+about+the+growing+divisiveness+in+this+country+and+in+the+world
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=no+one+s+listening+to+each+other+right
found 6 videos: [['/talks/gretchen_carlson_david_brooks_political_common_ground_in_a_polarized_united_states', '2017'], ['/talks/rob_reid_how_synthetic_biology_could_wipe_out_humanity_and_how_we_can_stop_it', '2019'], ['/talks/jon_m_chu_the_pride_and_power_of_representation_in_film', '2019'], ['/talks/tasos_frantzolas_everything_you_hear_on_film_is_a_lie', '2016'], ['/talks/harry_baker_a_love_poem_for_lonely_prime_numbers', '2015'], ['/talks/valarie_kaur_3_lessons_of_revolutionary_love_in_a_time_of_rage', '2018']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+aren+t+i+mean+it+feels+like+we+need+a+different+kind+of+conversation
found 3 videos: [['/talks/christopher_bell_bring_on_the_female_superheroes', '2016'], ['/talks/ash_beckham_when_to_take_a_stand_and_when_to_let_it_go', '2015'], ['/talks/kelli_jean_drinkwater_enough_with_the_fear_of_fat', '2016']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=one+that+s+based+on+i+don+t+know+on+reason+listening+on+understanding
found 0 videos: []
sleep 3 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=that+s+at+least+what+we+re+going+to+try+in+these+ted+dialogues+starting
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+couldn+t+have+anyone+with+us+who+i+d+be+more+excited+to+kick+this+off+this+is+a+mind+right+here+that+thinks+pretty+much+like+no+one+else+on+the+planet
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+could+not+put+it+down++the+way+that+he+tells+the+story+of+mankind+through+big+ideas+that+really+make+you+think+differently
found 1 videos: [['/talks/yuval_noah_harari_nationalism_vs_globalism_the_new_political_divide', '2017']]
selected: /talks/yuval_noah_harari_nationalism_vs_globalism_the_new_political_divide
sleep 3 seconds to avoid blocking
------<2333>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/YvesBehar_2008.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=being+a+child+and+sort+of+crawling+around+the+house+i+remember+these+turkish+carpets
found 1 videos: [['/talks/yves_behar_designing_objects_that_tell_stories', '2008']]
selected: /talks/yves_behar_designing_objects_that_tell_stories
sleep 2 seconds to avoid blocking
------<2334>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/YvesBehar_2009.stm
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=starts+with+a+conversation+and+i+would+like+to+to+share+with+you
found 2 videos: [['/talks/brene_brown_the_power_of_vulnerability', '2010'], ['/talks/yves_behar_a_supercharged_motorcycle_design', '2009']]
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=some+of+the+bits+of+the+conversation+that+we+started+with+i+grew+up+in+a+log+cabin+in+washington+state+with+too+much+time+on+my+hands+yves+behar+and+in+scenic+switzerland+for+me
found 1 videos: [['/talks/yves_behar_a_supercharged_motorcycle_design', '2009']]
selected: /talks/yves_behar_a_supercharged_motorcycle_design
sleep 4 seconds to avoid blocking
------<2335>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/YvesMorieux_2013S.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+spent+the+last+years+trying+to+resolve+two+enigmas+why+is+productivity+so+disappointing
found 1 videos: [['/talks/yves_morieux_as_work_gets_more_complex_6_rules_to_simplify', '2014']]
selected: /talks/yves_morieux_as_work_gets_more_complex_6_rules_to_simplify
sleep 5 seconds to avoid blocking
------<2336>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/YvesMorieux_2015S.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=is+not+everything++but+in+the+long+run++it+is
found 9 videos: [['/talks/andrew_solomon_depression_the_secret_we_share', '2013'], ['/talks/noy_thrupkaew_human_trafficking_is_all_around_you_this_is_how_it_works', '2015'], ['/talks/tony_fadell_the_first_secret_of_design_is_noticing', '2015'], ['/talks/roger_stein_a_bold_new_way_to_fund_drug_research', '2014'], ['/talks/helen_m_farrell_what_is_bipolar_disorder', '2017'], ['/talks/lucy_kalanithi_what_makes_life_worth_living_in_the_face_of_death', '2017'], ['/talks/dame_ellen_macarthur_the_surprising_thing_i_learned_sailing_solo_around_the_world', '2015'], ['/talks/paul_piff_does_money_make_you_mean', '2013'], ['/talks/ellen_jorgensen_what_you_need_to_know_about_crispr', '2016']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=are+not+that+many+things+on+earth+that+are+almost+everything+productivity+is+the+principal+driver
found 1 videos: [['/talks/yves_morieux_how_too_many_rules_at_work_keep_you_from_getting_things_done', '2015']]
selected: /talks/yves_morieux_how_too_many_rules_at_work_keep_you_from_getting_things_done
sleep 2 seconds to avoid blocking
------<2337>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/YvesRossy_2011G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=many+of+the+tests+are+conducted+while+yves+is+strapped+onto+the+wing++because+yves++body+is+an+integral+part+of+the+aircraft+[+wind+tunnel+tests+]+narrator
found 1 videos: [['/talks/yves_rossy_fly_with_the_jetman', '2011']]
selected: /talks/yves_rossy_fly_with_the_jetman
sleep 1 seconds to avoid blocking
------<2338>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ZachKaplan_2005.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=keith+and+i+lead+a+research+team+we+investigate+materials+and+technologies+that+have+unexpected+properties
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=over+the+last+three+years++we+found+over+two+hundred+of+these+things+and+so+we+looked+back+into+our+library
found 1 videos: [['/talks/juan_enriquez_the_life_code_that_will_reshape_the_future', '2007']]
selected: /talks/juan_enriquez_the_life_code_that_will_reshape_the_future
sleep 4 seconds to avoid blocking
------<2339>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ZahraLanghi_2012X.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+words+of+my+grandmother+who+died+in+her+exile+son+resist+gaddafi+fight+him
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+don+t+you+ever+turn+into+a+gaddafi+like+revolutionary
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=almost+two+years+have+passed+since+the+libyan+revolution+broke+out
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=inspired+by+the+waves+of+mass+mobilization+in+both
error: request timeout
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=the+tunisian+and+the+egyptian+revolutions
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+joined+forces+with+many+other+libyans+inside+and+outside+libya+to+call+for+a+day+of+rage
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+to+initiate+a+revolution+against+the+tyrannical+regime+of+gaddafi
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+there+it+was+a+great+revolution
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=young+libyan+women+and+men+were+at+the+forefront+calling+for+the+fall+of+the+regime+raising+slogans+of
error: request timeout
sleep 1 seconds to avoid blocking
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+have+shown+an+exemplary+bravery+in+confronting+the+brutal+dictatorship+of+gaddafi
found 1 videos: [['/talks/zahra_langhi_why_libya_s_revolution_didn_t_work_and_what_might', '2013']]
selected: /talks/zahra_langhi_why_libya_s_revolution_didn_t_work_and_what_might
sleep 3 seconds to avoid blocking
------<2340>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ZainabSalbi_2010G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+woke+up+in+the+middle+of+the+night
found 10 videos: [['/talks/zainab_salbi_women_wartime_and_the_dream_of_peace', '2010'], ['/talks/ronny_edry_israel_and_iran_a_love_story', '2012'], ['/talks/amy_cuddy_your_body_language_may_shape_who_you_are', '2012'], ['/talks/chip_kidd_designing_books_is_no_laughing_matter_ok_it_is', '2012'], ['/talks/ed_gavagan_a_story_about_knots_and_surgeons', '2012'], ['/talks/john_hodgman_aliens_love_where_are_they', '2008'], ['/talks/eve_ensler_what_security_means_to_me', '2008'], ['/talks/misha_glenny_hire_the_hackers', '2011'], ['/talks/jennifer_8_lee_the_hunt_for_general_tso', '2008'], ['/talks/kavita_ramdas_radical_women_embracing_tradition', '2010']]
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=with+the+sound+of+heavy+explosion
found 2 videos: [['/talks/zainab_salbi_women_wartime_and_the_dream_of_peace', '2010'], ['/talks/garik_israelian_how_spectroscopy_could_reveal_alien_life', '2009']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=it+was+deep+at+night++i+do+not+remember+what+time+it+was+i+just+remember+the+sound+was+so
found 6 videos: [['/talks/regina_dugan_from_mach_20_glider_to_hummingbird_drone', '2012'], ['/talks/zainab_salbi_women_wartime_and_the_dream_of_peace', '2010'], ['/talks/steven_strogatz_the_science_of_sync', '2008'], ['/talks/brian_goldman_doctors_make_mistakes_can_we_talk_about_that', '2012'], ['/talks/daniel_goldstein_the_battle_between_your_present_and_future_self', '2011'], ['/talks/rodney_mullen_pop_an_ollie_and_innovate', '2012']]
sleep 1 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=everything+in+my+room+was+shaking
error: request timeout
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=my+heart+my+windows+my+bed++everything+i+looked+out+the+windows
error: request timeout
sleep 3 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=of+explosion++i+thought+it+was+just+like+the+movies+but+the+movies+had+not+conveyed+them+in+the+powerful+image+that+i+was+seeing
found 1 videos: [['/talks/zainab_salbi_women_wartime_and_the_dream_of_peace', '2010']]
selected: /talks/zainab_salbi_women_wartime_and_the_dream_of_peace
sleep 4 seconds to avoid blocking
------<2341>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ZakEbrahim_2014.stm
sleep 4 seconds to avoid blocking
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+assassinated+rabbi+meir+kahane+the+leader+of+the+jewish+defense+league+nosair+was+initially+found+not+guilty
found 1 videos: [['/talks/zak_ebrahim_i_am_the_son_of_a_terrorist_here_s_how_i_chose_peace', '2014']]
selected: /talks/zak_ebrahim_i_am_the_son_of_a_terrorist_here_s_how_i_chose_peace
sleep 3 seconds to avoid blocking
------<2342>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ZariaForman_2015P.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+consider+it+my+life+s+mission+to+convey+the+urgency+of+climate+change+through+my+work
error: request timeout
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+ve+traveled+north+to+the+arctic+to+the+capture+the+unfolding+story+of+polar+melt+and+south+to+the+equator+to+document+the+subsequent+rising+seas
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=most+recently+i+visited+the+icy+coast+of+greenland+and+the++low+lying+islands+of+the+maldives++connecting+two+seemingly+disparate
error: request timeout
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+equally+endangered+parts+of+our+planet+my+drawings
error: request timeout
sleep 4 seconds to avoid blocking
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+tranquility+in+the+landscape+allowing+viewers+to+emotionally
found 1 videos: [['/talks/zaria_forman_drawings_that_show_the_beauty_and_fragility_of_earth', '2016']]
selected: /talks/zaria_forman_drawings_that_show_the_beauty_and_fragility_of_earth
sleep 5 seconds to avoid blocking
------<2343>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ZeFrank_2004.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=when+chris+first+approached+me+to+speak+at+ted+i+said+no+because+i+felt+like+i+wasn+t+going+to+be+able+to+make+that+personal+connection+you+know+that+i+wanted+to+it+s+such+a+large+conference
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+he+explained+to+me+that+he+was+in+a+bind++and+that+he+was+having+trouble+finding+the+kind+of+sex+appeal+and+star+power+that+the+conference+was+known+for
found 1 videos: [['/talks/ze_frank_nerdcore_comedy', '2006']]
selected: /talks/ze_frank_nerdcore_comedy
sleep 1 seconds to avoid blocking
------<2344>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ZeFrank_2010G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=you+see+all+the+points+all+the+lines+it+s+incredible+it
found 6 videos: [['/talks/nathan_myhrvold_archeology_animal_photography_bbq', '2008'], ['/talks/roger_ebert_remaking_my_voice', '2011'], ['/talks/bruce_feiler_the_council_of_dads', '2011'], ['/talks/charles_hazlewood_trusting_the_ensemble', '2011'], ['/talks/eames_demetrios_the_design_genius_of_charles_ray_eames', '2009'], ['/talks/dan_gilbert_why_we_make_bad_decisions', '2008']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=and+in+my+case+the+network+has+been+important+in+media+because+i+get+to+connect+to+people+isn+t+it+amazing+through+that
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+connect+to+people+and+the+way+that+i+ve+been+doing+it
found 0 videos: []
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=has+been+multifaceted+for+example+i+get+people+to+dress+up+their+vacuum+cleaners
found 1 videos: [['/talks/ze_frank_my_web_playroom', '2010']]
selected: /talks/ze_frank_my_web_playroom
sleep 3 seconds to avoid blocking
------<2345>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ZeFrank_2014.stm
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=this+is+the+human+test+a+test+to+see+if+you+are+a+human
found 19 videos: [['/talks/ze_frank_are_you_human', '2014'], ['/talks/sangeeta_bhatia_this_tiny_particle_could_roam_your_body_to_find_tumors', '2016'], ['/talks/max_little_a_test_for_parkinson_s_with_a_phone_call', '2012'], ['/talks/john_wilbanks_let_s_pool_our_medical_data', '2012'], ['/talks/oscar_schwartz_can_a_computer_write_poetry', '2016'], ['/talks/andrew_bastawrous_get_your_next_eye_exam_on_a_smartphone', '2014'], ['/talks/denise_herzing_could_we_speak_the_language_of_dolphins', '2013'], ['/talks/nina_tandon_could_tissue_engineering_mean_personalized_medicine', '2012'], ['/talks/sal_khan_let_s_teach_for_mastery_not_test_scores', '2016'], ['/talks/tania_simoncelli_should_you_be_able_to_patent_a_human_gene', '2016'], ['/talks/nancy_kanwisher_a_neural_portrait_of_the_human_mind', '2014'], ['/talks/martin_pistorius_how_my_mind_came_back_to_life_and_no_one_knew', '2015'], ['/talks/andrew_pelling_this_scientist_makes_ears_out_of_apples', '2016'], ['/talks/tristram_wyatt_the_smelly_mystery_of_the_human_pheromone', '2014'], ['/talks/tony_fadell_the_first_secret_of_design_is_noticing', '2015'], ['/talks/carol_dweck_the_power_of_believing_that_you_can_improve', '2014'], ['/talks/julia_galef_why_you_think_you_re_right_even_if_you_re_wrong', '2016'], ['/talks/rob_knight_how_our_microbes_make_us_who_we_are', '2015'], ['/talks/tony_wyss_coray_how_young_blood_might_help_reverse_aging_yes_really', '2015']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=please+raise+your+hand+if+something+applies+to+you+are+we+agreed
found 2 videos: [['/talks/ze_frank_are_you_human', '2014'], ['/talks/esther_perel_rethinking_infidelity_a_talk_for_anyone_who_has_ever_loved', '2015']]
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=then+let+s+begin++have+you+ever+eaten+a+booger+long+past+your+childhood
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=laughter+it+s+okay+it+s+safe+here
found 10 videos: [['/talks/noel_bairey_merz_the_single_biggest_health_threat_women_face', '2012'], ['/talks/david_kwong_two_nerdy_obsessions_meet_and_it_s_magic', '2014'], ['/talks/larry_smith_why_you_will_fail_to_have_a_great_career', '2012'], ['/talks/elon_musk_the_mind_behind_tesla_spacex_solarcity', '2013'], ['/talks/mark_applebaum_the_mad_scientist_of_music', '2012'], ['/talks/robert_neuwirth_the_power_of_the_informal_economy', '2012'], ['/talks/harry_baker_a_love_poem_for_lonely_prime_numbers', '2015'], ['/talks/stephen_burt_why_people_need_poetry', '2014'], ['/talks/nancy_frates_meet_the_mom_who_started_the_ice_bucket_challenge', '2014'], ['/talks/seth_shostak_et_is_probably_out_there_get_ready', '2012']]
sleep 3 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=have+you+ever+made+a+small+weird+sound+when+you+remembered+something+embarrassing
found 1 videos: [['/talks/ze_frank_are_you_human', '2014']]
selected: /talks/ze_frank_are_you_human
sleep 1 seconds to avoid blocking
------<2346>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ZeresenayAlemseged_2007G.stm
sleep 4 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+have+eighteen+minutes+to+tell+you+what+happened+over+the+past+six+million+years+all+right
found 0 videos: []
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=we+all+have+come+from+a+long+way+here+in+africa++and+converged+in+this+region+of+africa
found 1 videos: [['/talks/zeresenay_alemseged_the_search_for_humanity_s_roots', '2007']]
selected: /talks/zeresenay_alemseged_the_search_for_humanity_s_roots
sleep 5 seconds to avoid blocking
------<2347>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ZeynepTufekci_2014G.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=so+recently+we+heard+a+lot+about+how+social+media+helps+empower+protest++and+that+s+true
found 0 videos: []
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=but+after+more+than+a+decade+of+studying+and+participating+in+multiple+social+movements
found 1 videos: [['/talks/zeynep_tufekci_online_social_change_easy_to_organize_hard_to_win', '2015']]
selected: /talks/zeynep_tufekci_online_social_change_easy_to_organize_hard_to_win
sleep 4 seconds to avoid blocking
------<2348>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ZeynepTufekci_2016T.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=i+started+my+first+job+as+a+computer+programmer+in+my+very+first+year+of+college+basically+as+a+teenager
found 1 videos: [['/talks/zeynep_tufekci_machine_intelligence_makes_human_morals_more_important', '2016']]
selected: /talks/zeynep_tufekci_machine_intelligence_makes_human_morals_more_important
sleep 1 seconds to avoid blocking
------<2349>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ZiauddinYousafzai_2014.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+many+patriarchal+societies+and+tribal+societies++fathers+are
found 1 videos: [['/talks/ziauddin_yousafzai_my_daughter_malala', '2014']]
selected: /talks/ziauddin_yousafzai_my_daughter_malala
sleep 1 seconds to avoid blocking
------<2350>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ZiyahGafic_2014U.stm
sleep 2 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=they+are+the+things+the+victims+of+genocide+in+bosnia+carried+with+them+on+their+final+journey+we+are+all+familiar
found 1 videos: [['/talks/ziyah_gafic_everyday_objects_tragic_histories', '2014']]
selected: /talks/ziyah_gafic_everyday_objects_tragic_histories
sleep 5 seconds to avoid blocking
------<2351>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/ZubaidaBai_2016S.stm
sleep 1 seconds to avoid blocking
http://www.ted.com/talks?sort=relevance&q=in+the+next+six+minutes+that+you+will+listen+to+me+the+world+will+have+lost+three+mothers+while+delivering+their+babies
found 1 videos: [['/talks/zubaida_bai_a_simple_birth_kit_for_mothers_in_the_developing_world', '2017']]
selected: /talks/zubaida_bai_a_simple_birth_kit_for_mothers_in_the_developing_world
sleep 2 seconds to avoid blocking
------<2352>----->filepath:/Volumes/SanDisk512/TEDLIUM_release-3/data/stm/._911Mothers_2010W.stm
---------------------------------------------------------------------------
UnicodeDecodeError                        Traceback (most recent call last)
<ipython-input-2-4189766ff4e1> in <module>
    103     fname = p.name
    104     print(f"------<{count}>----->filepath:{root_path}{fname}")
--> 105     videos = query_video_info(fname)
    106     if videos == 0:
    107         print("error: no video is found.")

<ipython-input-2-4189766ff4e1> in query_video_info(file_name)
     17     with open(root_path+file_name) as file:
     18         videos = []
---> 19         for line in file:
     20             sleep_time = random.randint(1,4)
     21             print(f"sleep {sleep_time} seconds to avoid blocking")

~/opt/anaconda3/lib/python3.8/codecs.py in decode(self, input, final)
    320         # decode input (taking the buffer into account)
    321         data = self.buffer + input
--> 322         (result, consumed) = self._buffer_decode(data, self.errors, final)
    323         # keep undecoded input until the next call
    324         self.buffer = data[consumed:]

UnicodeDecodeError: 'utf-8' codec can't decode byte 0xb0 in position 37: invalid start byte
In [3]:
print(f"len of video uris is {len(video_uris)}")
#print(video_uris)

def saveListToFile(list_name, path_to_save):
    fp = open(path_to_save,"w") 
    num = 0
    for line in list_name:
        num = num + 1
        fp.writelines(f"{num}, {line[0]}, {line[1]}\n")    
    fp.close() 

saveListToFile(video_uris, "video_uris.txt")

# remark:
# the above script runs for about 36 hours and outputs file  video_uris.txt
# it contains some missing values (78 out of 2351 videos can not be matched with the videos from ted.com
# using transcript and year when I run it), 
# these videos have to be searched and labelled manually.
# I fixed the missing values manually, added column names, created a new file video_uris_repaired.csv
len of video uris is 2351
In [16]:
import pandas as pd

url_list_file = "video_uris_repaired.csv"

# send page request, get the response page
def extract_video_properties(video_url):
    request_url = ted_web_root + video_url
    print(request_url)

    # send page request, get the response page
    res2 = ""
    try:
        res2 = requests.get(request_url, timeout=5)
        #print(res2.status_code)
    except:
        print("error: request timeout")
        return None
    
    res_2_text = ""
    res_2_text = res2.text
    #with open(rootpath + "res2.txt") as file:
    #    res_2_text = file.readlines()

    soup = BeautifulSoup(str(res_2_text))
    #print(soup.prettify())
    
    #get video intro
    metas = soup.find_all('meta',{"property":"og:video:tag"})
    #choose the first three tags as topics
    topics = ["","",""]
    if len(metas)>0:
        topics[0] = metas[0]["content"].strip()        
    if len(metas)>1:
        topics[1] = metas[1]["content"].strip()
    if len(metas)>2:
        topics[2] = metas[2]["content"].strip()
    #print(topics)
    
    authors = soup.find_all('meta',{"name":"author"})
    author=""
    if len(authors)>0:
        author = authors[0]["content"].strip()
    #print(author)
    
    titles = soup.find_all('meta',{"property":"og:title"})
    title=""
    if len(titles)>0:
        title = titles[0]["content"].strip()
    #print(title)
    
    descs = soup.find_all('meta',{"property":"og:description"})
    desc=""
    if len(descs)>0:
        desc = descs[0]["content"].strip()
    #print(desc)
    
    uploaddates = soup.find_all('meta',{"itemprop":"uploadDate"})
    uploaddate=""
    if len(uploaddates)>0:
        uploaddate = uploaddates[0]["content"].strip()[0:10]
    #print(uploaddate)
    
    durations = soup.find_all('meta',{"itemprop":"duration"})
    duration=""
    if len(durations)>0:
        duration = durations[0]["content"].strip()[2:]
    #print(duration)
    return [title,author,uploaddate, request_url, duration, topics[0],topics[1],topics[2]]

# read all urls from file
v_data = pd.read_csv(url_list_file)
v_data.head()
Out[16]:
ID FILENAME URI
0 1 911Mothers_2010W.stm /talks/aicha_el_wafi_phyllis_rodriguez_the_mo...
1 2 AalaElKhani_2016X.stm /talks/aala_el_khani_what_it_s_like_to_be_a_p...
2 3 AaronHuey_2010X.stm /talks/aaron_huey_america_s_native_prisoners_...
3 4 AaronKoblin_2011.stm /talks/aaron_koblin_visualizing_ourselves_wit...
4 5 AaronOConnell_2011.stm /talks/aaron_o_connell_making_sense_of_a_visi...
In [30]:
df = pd.DataFrame(v_data)
# add new columns to the dataframe
df = df.assign(TITLE="")
df = df.assign(AUTHOR="")
df = df.assign(UPLOAD_DATE="")
df = df.assign(DURATION="")
df = df.assign(TOPIC1="")
df = df.assign(TOPIC2="")
df = df.assign(TOPIC3="")

df_len = len(df)
print(df_len)

df.head()
2351
Out[30]:
ID FILENAME URI TITLE AUTHOR UPLOAD_DATE DURATION TOPIC1 TOPIC2 TOPIC3
0 1 911Mothers_2010W.stm /talks/aicha_el_wafi_phyllis_rodriguez_the_mo...
1 2 AalaElKhani_2016X.stm /talks/aala_el_khani_what_it_s_like_to_be_a_p...
2 3 AaronHuey_2010X.stm /talks/aaron_huey_america_s_native_prisoners_...
3 4 AaronKoblin_2011.stm /talks/aaron_koblin_visualizing_ourselves_wit...
4 5 AaronOConnell_2011.stm /talks/aaron_o_connell_making_sense_of_a_visi...
In [55]:
# run this part of code repeatedly until all videos are extracted correctly.
for i in range(df_len):
    if df.iloc[i,3] == "": #title is empty
        video_props = extract_video_properties(df.iloc[i,2].strip())
        print(f"video {i+1} properties: {video_props}")
        if video_props:
            df.iloc[i,3] = video_props[0] #title
            df.iloc[i,4] = video_props[1] #author
            df.iloc[i,5] = video_props[2] #upload_date
            df.iloc[i,6] = video_props[4] #duration
            df.iloc[i,7] = video_props[5] #topic1
            df.iloc[i,8] = video_props[6] #topic2
            df.iloc[i,9] = video_props[7] #topic3
        else:
            print("sleep 3 seconds to avoid blocking")
            time.sleep(3)
            continue
        
filtered_df = df[df['TITLE'] == ""]
if len(filtered_df)==0:
    print("successful")
else:
    print(f"{len(filtered_df)} videos failed, please run this part of code again.")

df.head()

#print(df.iloc[1272,2])
successful
Out[55]:
ID FILENAME URI TITLE AUTHOR UPLOAD_DATE DURATION TOPIC1 TOPIC2 TOPIC3
0 1 911Mothers_2010W.stm /talks/aicha_el_wafi_phyllis_rodriguez_the_mo... The mothers who found forgiveness, friendship Aicha el-Wafi + Phyllis Rodriguez 2011-05-02 9M54S culture global issues parenting
1 2 AalaElKhani_2016X.stm /talks/aala_el_khani_what_it_s_like_to_be_a_p... What it's like to be a parent in a war zone Aala El-Khani 2017-02-10 14M16S communication community family
2 3 AaronHuey_2010X.stm /talks/aaron_huey_america_s_native_prisoners_... America's native prisoners of war Aaron Huey 2010-11-10 15M27S TEDx culture history
3 4 AaronKoblin_2011.stm /talks/aaron_koblin_visualizing_ourselves_wit... Visualizing ourselves ... with crowd-sourced data Aaron Koblin 2011-05-23 18M18S collaboration data design
4 5 AaronOConnell_2011.stm /talks/aaron_o_connell_making_sense_of_a_visi... Making sense of a visible quantum object Aaron O'Connell 2011-06-02 7M51S philosophy physics science
In [57]:
# if video 1272 can not be retrieved, fix it manually using the following code
df.iloc[1272,3] = "The unstoppable walk to political reform" #title
df.iloc[1272,4] = "Lawrence Lessig" #author
df.iloc[1272,5] = "2014-04-04" #upload_date
df.iloc[1272,6] = "13M44S" #duration
df.iloc[1272,7] = "corruption" #topic1
df.iloc[1272,8] = "democracy" #topic2
df.iloc[1272,9] = "government" #topic3

df.head()
Out[57]:
ID FILENAME URI TITLE AUTHOR UPLOAD_DATE DURATION TOPIC1 TOPIC2 TOPIC3
0 1 911Mothers_2010W.stm /talks/aicha_el_wafi_phyllis_rodriguez_the_mot... The mothers who found forgiveness, friendship Aicha el-Wafi + Phyllis Rodriguez 2011-05-02 9M54S culture global issues parenting
1 2 AalaElKhani_2016X.stm /talks/aala_el_khani_what_it_s_like_to_be_a_pa... What it's like to be a parent in a war zone Aala El-Khani 2017-02-10 14M16S communication community family
2 3 AaronHuey_2010X.stm /talks/aaron_huey_america_s_native_prisoners_o... America's native prisoners of war Aaron Huey 2010-11-10 15M27S TEDx culture history
3 4 AaronKoblin_2011.stm /talks/aaron_koblin_visualizing_ourselves_with... Visualizing ourselves ... with crowd-sourced data Aaron Koblin 2011-05-23 18M18S collaboration data design
4 5 AaronOConnell_2011.stm /talks/aaron_o_connell_making_sense_of_a_visib... Making sense of a visible quantum object Aaron O'Connell 2011-06-02 7M51S philosophy physics science
In [62]:
# save the pd to csv
for i in range(df_len):
    df.iloc[i,1] = df.iloc[i,1].strip() #remove spaces
    df.iloc[i,2] = df.iloc[i,2].strip() #remove spaces
    
df.to_csv('tedlium3_topic_labels.csv',index=False)
In [ ]: